Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi..

I really need help... How can I send a listbox value to another page. I would like to display it still in listbox in another page. Is it possible to make animation http://www.yeejie.com/silverlight_magazine/[^] such as this in a Windows application..

Please, I really need your help. ASAP...
Posted
Updated 6-Dec-09 10:01am
v2

There are a lot of ways by which you can do this. Here[^] is an article that shows a few.

As far as that animation is concerned, all I can think of is Picture boxes with those images. And then, moving them around in Paint event.

Maybe this[^] would help.
 
Share this answer
 
this for web based application rite?
 
Share this answer
 
Don't get your second post. Sharing values was for web application only. While animation was for windows form.
 
Share this answer
 
both for windows application... bdw thnx it might help me in my other project.... thnx very much...:)
 
Share this answer
 
If you need to share values in a Windows forms application, make use of properties. But always make sure to not to expose your controls through a property. It won't harm but is not a good design either.

If you want to share something on occurrence of an event, use delegate. For example, if you want to send a value to Form 2 on a button click of Form 1, use a delegate and handle that event in Form 2. This will make your code look cleaner.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900