Hi! How can i show on the form my drawings?

wise

New member
Joined
Mar 12, 2007
Messages
1
Location
Turkey
Programming Experience
Beginner
I want to make circuit design.I think,when i click on the button, must appear my drawing that get in the bitmap.What are the codes?what can i do?(very sorry,my english is not good, but I can do translation the my language:) )
 
You can place a Picture Box on your form.
Then, when the Button is clicked, load the circuit design in to the Picture Box with the code.
Picture Box.Image=Image.FromFile("c:\pics\Circuit Design.jpg")
 
Back
Top