School Assignment? Project Due Tomorrow? Chat LIVE With A Programming Expert!
Welcome to Dream.In.Code
Become an Expert!

Join 306,924 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,748 people online right now. Registration is fast and FREE... Join Now!



's Contributions
Below are the tutorials, code snippets, and resources has submitted to dream.in.code. For more information on Kudos and contributing to dream.in.code visit: http://home.dreamincode.net/?p=about#kudos.
Tutorials
Error handling - Part three. in VB.NET Tutorials (Last Comment: jens, Views: 1,135)
Code Snippets
Bottom-up listbox in Visual Basic by jens
Submitted: October 15, 2008        Views: 513
You do need a listbox that is filled from the bottom up instead of top down and you want to make sure there are no more rows than what fits in the listbox. Here it is. :)
Submitted: December 11, 2008        Views: 1636
This function returns several non repeating random numbers even if you get them very close in time. This is useful since even if you initialize the random number generator with a time based seed you will get repetition if you call Random.Next twice in a row within the same millisecond.
RotateKoordinates in Visual Basic by jens
Submitted: May 12, 2008        Views: 338
Rotate a vector around one axis in a 3-axis (XYZ) coordinate system and this function returns the new coordinates for the vector.
Submitted: August 8, 2008        Views: 301
How to convert a UDT (user defined type) to a string. This is used to show how you can compare two variables of one UDT to see if they contain the same data without having to traverse through all fields of the UDTs.
Submitted: October 9, 2008        Views: 2270
Make a sticky button, i.e. a button that toggles.
Submitted: October 9, 2008        Views: 915
A simpler way of making a toggle (or sticky) button than my previous example...
Submitted: November 12, 2008        Views: 1751
A function that writes several strings to records in a SQL server, one string = one record. Uses transaction handling and some error handling.