0
favorites
favorites
1
comment
comment
Rotating Image for gaming (VB.Net)
You can direction apply angle to variable Theta!
This rotating image is an extended version from the net that i have improve to rotate image following mouse location.
Enjoy
For more information of how it work
http://www.vb-helper.com/howto_net_image_rotate.html ...
0
favorites
favorites
2
comments
comments
Newtons law of universal gravitation (VB.Net)
This is a basic method to code two object acting upon each others by gravity. Use timer to run the code and use picture box or something to go with planetLOC. ...
0
favorites
favorites
1
comment
comment
VB.NET Execute Public Sub on parent page from User Control
sometimes you need to execute a function on sub on the parent page from the user control on that parent page... tricky but this works...
on the parent page, there is a Public Function getSearchResults() that takes 3 string parameters... the function returns the search results sent from the User Control...
Create the arguments as a string array String() and add the paramter values {"0", "0", searchID}
Then use Page.GetType().InvokeMember to execute the function ...