What's Here?
- Members: 306,924
- Replies: 841,382
- Topics: 140,587
- Snippets: 4,465
- Tutorials: 1,166
- Total Online: 1,748
- Members: 81
- Guests: 1,667
|
'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
in (Last Comment: , Views: 2,113)
in (Last Comment: , Views: 1,368)
in (Last Comment: , Views: 2,634)
in (Last Comment: , Views: 2,179)
in (Last Comment: , Views: 1,135)
in (Last Comment: , Views: 2,760)
|
|
Code Snippets
|
 |
|
|
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.
|
|
|
 |
|
|
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.
|
|
|
| |