A remembering list

Do you need something made? then ask in here.
Forum rules
Please LOCK your topics once you have found the solution to your question so we know you no longer require help with your query.
7 posts Page 1 of 1
Contributors
User avatar
Robby
VIP - Donator
VIP - Donator
Posts: 417
Joined: Mon Aug 03, 2009 4:01 am

A remembering list
Robby
Hi there,

I m kinda busy these days so i cannot come to Code N Stuff everyday :(

but i will check out some stuff each day once or twice as now i have homework from high school :

So now to the topic

I want to make a remembering list or something like that
Like so u add on what to do on someday or something and it notes the time and also u put it on what time..
So when u choose it it will ring or show pop ups on that time and also on a date.

I know the code could be smoething like this for the time:
Code: Select all
timer1_tick event
label1.text=timeofday

form_load event
if textbox1.text= label1.text then
'do something here'
End If 
I bet i got a mistake there or something but i also want it to remember the thing like which one to do it on

So and also when the day comes you can see a small pop up on the side of ur screen and it says the event and the time or what ever

Is there a way to make this ??

I m trying to make one right now before i started i wanted to post this up so i can actually get help if i cant figure it out on my own

Thanks,

Robby1998
My current Projects Listed Below:
Toixt++ Text Editor Just 10 or less more features to go!
Image
Image
User avatar
Robby
VIP - Donator
VIP - Donator
Posts: 417
Joined: Mon Aug 03, 2009 4:01 am

Re: A remembering list
Robby
come on guys please got rany idea?
My current Projects Listed Below:
Toixt++ Text Editor Just 10 or less more features to go!
Image
Image
User avatar
CodenStuff
Site Admin
Site Admin
Posts: 4392
Joined: Tue Aug 04, 2009 1:47 am

Re: A remembering list
CodenStuff
Hello robby1998,

I will try put something together for you and get back to you soon cooll;
Welcome to CodenStuff.com Learn Code, Love Code. Thank you for being a member of the community.
User avatar
CodenStuff
Site Admin
Site Admin
Posts: 4392
Joined: Tue Aug 04, 2009 1:47 am

Re: A remembering list
CodenStuff
Hello,

OK this a quick creation for you to give you some idea of how it could be done and get you started. This one lets you pick a date and time and enter text for the reminder then it stores it to a *.txt file and when that date/time is reached it will show a messagebox containing your reminder.

In order to select a date you need to add 2 "DateTimePicker" controls to your form. The first one will contain the date so just leave that one how it is.

The second one you need to change its "Format" propertie to 'Time' and set its "ShowUpDown" propertie to 'True'.

I then used this code to grab the date and time from those controls:
Code: Select all
DateTimePicker1.Value.ToShortDateString + " " + DateTimePicker2.Value.ToLongTimeString
To get the current date and time you can use "Now" for example:
Code: Select all
Me.Text = Now
Ive attached the source below so you can have a look and get an idea of how you could create this type application. There are loads of ways to make a reminder application and this is just one. Hope you find it useful and if I can help you further please let me know.

Download:
WindowsApplication1.zip
Happy coding! cooll;
You do not have the required permissions to view the files attached to this post.
Welcome to CodenStuff.com Learn Code, Love Code. Thank you for being a member of the community.
User avatar
Robby
VIP - Donator
VIP - Donator
Posts: 417
Joined: Mon Aug 03, 2009 4:01 am

Re: A remembering list
Robby
Thank You Very much i like this.

But is there a way to make it so it makes a window pop up at the bottom screen at the place above the time on ur computer?


Ty and i like the porgram it is really great


And also instead of messagebox can it be like another form added and a label on that or something

Ty again,


Robby1998


P.S look at my signature i can help make code n stuff a picture like that as i have for 20tuthelp20 so yea and 20tuthelp20 is me lol but yea i can help to make a picutre like that!

I got other type gradient images too so i will give a list if u want ty :)


Robby1998
My current Projects Listed Below:
Toixt++ Text Editor Just 10 or less more features to go!
Image
Image
User avatar
CodenStuff
Site Admin
Site Admin
Posts: 4392
Joined: Tue Aug 04, 2009 1:47 am

Re: A remembering list
CodenStuff
Hello robby1998,

Yes I have changed the code so it uses a second form to display the reminders and make that form appear in the bottom-right corner of the screen like MSN alerts.

Download:
WindowsApplication1.zip
If you want to design some graphics for codenstuff.com then please do so and lets us have a look ;)

Happy coding! cooll;
You do not have the required permissions to view the files attached to this post.
Welcome to CodenStuff.com Learn Code, Love Code. Thank you for being a member of the community.
User avatar
Robby
VIP - Donator
VIP - Donator
Posts: 417
Joined: Mon Aug 03, 2009 4:01 am

Re: A remembering list
Robby
ok thanks for the response i m trying it right now!

ok ihave tried it it works pretty good thanks again :D
My current Projects Listed Below:
Toixt++ Text Editor Just 10 or less more features to go!
Image
Image
7 posts Page 1 of 1
Return to “Tutorial Requests”