I need a code that when the user click on th ebutton the program draws 2 lines one form (0,0) to (1000,250) in red and second line form (500,0) to (750,750) the colors are set using RGB functions
Printable View
I need a code that when the user click on th ebutton the program draws 2 lines one form (0,0) to (1000,250) in red and second line form (500,0) to (750,750) the colors are set using RGB functions
Where should the lines be drawn? If you want to have them on a picture just write
-
Picture1.Line (0, 0)-(1000, 250), RGB(255, 0, 0)
Picture1.Line (500, 0)-(750, 750), RGB(0,0,255) 'Well, I took blue ;)
-
Ask me if that's not what you want
------------------
[email protected]
...
Every program can be reduced to one instruction which doesn't work.