Click here to Skip to main content
15,887,464 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have created a DataGridView based Reminders App, how can I do it so the dates entered into the Grid, are then converted into reminders, with the pop-up showing the Reminders Information (Reminder Name).

Alternatively, how can I code it, so that the dateTimePicker (dateDue in below code), prints in the DataGridView, but also sets a reminder, with the Task Name being shown with the reminder.

What I have tried:

Dim dgvGeneralRow As Object() = New Object() {Nothing, txtTaskName.Text, txtTaskTag1.Text, cmbPriority.SelectedItem.ToString(), dateDUE.Value.ToString(), txtLink.Text, txtNoteEntry.Text}
Posted
Updated 8-Jul-20 19:47pm
v2

1 solution

You could use Notifyicon that will show "Balloons" on the Windows taskbar, see: Visual Basic NotifyIcon for Taskbar Notification[^]

Also you could use the Windows Task Scheduler, see: Schedule tasks from command line[^]
 
Share this answer
 
Comments
Shaheer Rizwan 9-Jul-20 3:36am    
@RickZeeland - Im looking to have a msgBox pop up with the Task Name value pop-up
RickZeeland 9-Jul-20 6:23am    
Take a look at: https://stackoverflow.com/questions/6509844/msgbox-that-disappears-automatically-after-certain-time

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900