*bump* ;)
Printable View
*bump* ;)
I still need tons more code, anything, please send it in, you could be saving someone from hours of frustration.
:)
dood!
I mean dood!
What a nice piece of work ...
This should be a sticky thread
There is now a Poll at the VBCodeBook.Net Website on what you want so see more of, please give a vote so I know what you want.
Cheers!
For me , I wish to see more internet and networking stuff plz but I can't see that on your site.:(
id like to see how to work registering login stuff (like it saves it and when you log off it stays so that in a day or two you can go back on the same name w. same stats/lvls)
that would be cool (kewl kool)
I must stress that I don't write the code, I only collect the code, without peoples interaction, VBCodeBook.NET will become old hat and will eventually cease to be.
I try to collect as much code as I can from other sites and I try to input my own (the little that it is) but if there is something you wish to see particularly, it's up to the other VB.NET users to come to the rescue. :)
Nicky , It would be nicer if you assigned different icons for different items . thanx .
yeah, it would wouldn't it, this is on my list of to do... :D
Just thought I'd bump this for those who don't know :D
PS that method of exiting an application is not recommended as this does not properly ensure disposal of garbage.Quote:
Originally posted by RealNickyDude
VB Code:
Dim Result As DialogResult Result = MessageBox.Show("Do you really wish to exit?", "Exit_ Program", MessageBoxButtons.YesNo, MessageBoxIcon.Question) If Result = DialogResult.Yes Then Application.Exit() End If
Take a look on msdn or even just look in .net help and you will see an article which addresses this issue.
Exactly , So better you loop through all instances to dispose them rather than closing your application with some instances left out there , Or in the main form of the app , dispose your objes in "Dispose" method (I've not tried it though).Quote:
Originally posted by rudvs2
PS that method of exiting an application is not recommended as this does not properly ensure disposal of garbage.
Take a look on msdn or even just look in .net help and you will see an article which addresses this issue.
The only thing I hate in GC is , it fires in random times . So you can never fire it yourself .:rolleyes: