Questions tagged [read-unread]
29 questions
1
vote
1 answer
mark read unread messages (jsp pages)
i have a system (developed in java) who generates messages to the user. I want to display theses messages to the user. Their initial state will be "unread" and then when the user read them, the messages become "read". Also the user will be able to…

yaylitzis
- 5,354
- 17
- 62
- 107
1
vote
1 answer
What happens when disabling maintenance of unread marks?
We have several Lotus Notes databases that are by default has their unread marks maintained. We disabled this maintenance to speed up the application. When we disable the unread marks, is it deleted in the database? I learned that the unread marks…

John Bautista
- 1,480
- 3
- 29
- 60
1
vote
1 answer
How to hide unread SMS notification?
I'm writing application which handles SMS's and as I plan it should replace stock/default application.
I'm intercepting android.provider.Telephony.SMS_RECEIVED broadcast fired by incoming SMS and publishing my own notification and then calling…

Barmaley
- 16,638
- 18
- 73
- 146
0
votes
2 answers
Objective C: How to check for unread messages (number to be displayed as badge)
I have a tableView storing a list of notifications (retrieved from server). How can I check if the particular notification has been viewed by the user?
I was thinking of
1) storing the notification ids in NSUserdefaults and
2) check the retrieved…

Zhen
- 12,361
- 38
- 122
- 199
0
votes
1 answer
Xamarin forms: How can I show the unread message count in chat?
I am developing a chat application like Facebook. In home page I am listing all the chats, When opening a chat I am calling a REST API for getting new messages. Only after opening a chat I am calling the rest API for listing new messages. From the…

Sreejith Sree
- 3,055
- 4
- 36
- 105
0
votes
1 answer
Send emails using VBScript, but leave the Sent Item as Unread?
I created an Excel document years ago which runs through a list of vendors we have in our system to send email messages. At the time, we were using Lotus Notes & have recently transitioned to Outlook. I had to rewrite the script, using Outlook…

DJTheri
- 13
- 2
0
votes
0 answers
Office 365 UnRead Email PowerShell admin report
I develop a Powershell script to generate a report UnRead Email per user for Office 365.
1.- this only work with Admin User Account
2.- The Admin User need the following role in Exchange Server (Applicationimpersonate)
# work with Office 365…

Humberto
- 1
- 1
- 2
0
votes
1 answer
Displaying iOS badge number / Handling unread messages (xCode - OBJECTIVE-C)
I would like to update the inbox badge to display the number of unread messages (my messages don't self destruct, app is similar to iOS messages).
When the user clicks on a messages and goes back to the inbox tab the badge should be updated. Also,…

Dee Greene
- 41
- 1
- 10
0
votes
2 answers
How to make status "read" to "unread" by using unread gem?
I can mark a post by using unread gem.
post = Post.first
post.mark_as_read! for: current_user
But I couldn't find how to "unread" the post that is marked as "read".
How can I make it?

ironsand
- 14,329
- 17
- 83
- 176
0
votes
2 answers
Returning unread records using Linq To SQL
I'm not sure how to ask this question, so I'll start with an example of what I'm doing.
Here is my table structure...
Documents (Primary key = ID)
ID, Title, LatestApprovedRevID
Revisions (Primary key = ID)
ID, DocumentID, RevisionNum,…

Dragn1821
- 807
- 2
- 8
- 19
0
votes
1 answer
Google Reader Unread Count
I wrote this function to get the unread count of google reader items.
function GetUnread($sid)
{
$url = "http://www.google.com/reader/api/0/unread-count?all=true&output=xml";
$msg = urldecode($msg);
$msg = stripslashes($msg);
$msg =…

woody993
- 639
- 1
- 11
- 25
0
votes
2 answers
iOS unread cell icon
I am trying to figure out the best way to implement the blue dot like the Mail app for unread cells. I have the blue dot but I am just trying to figure out the logic behind it. The table is populated by an xml file. Right now I have it set as so,…

Jon Erickson
- 1,876
- 4
- 30
- 73
-2
votes
1 answer
read unread mail and mark it as unseen using java
Please help me out with this task. The task is reading the body of the unread emails and mark it as unseen or unread using java. I tried to some extent but whenever I use getContect() method for the reading body it is automatically set to READ.…

Aamir Khan
- 101
- 1
- 7
-3
votes
2 answers
Laravel count, groupBy and orderBy not working properly
This is the structure of my table
[1]: https://i.stack.imgur.com/lmgtJ.png
Users Table
id
name
1
abid
Messages Table
id
user_id
to_user
content
read
1
2
1
message
0
I want to show notifications for users like User1 send you…

ch_abid
- 36
- 3