|
-
Jan 22nd, 2000, 05:13 AM
#1
Thread Starter
New Member
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
-
Jan 22nd, 2000, 07:31 AM
#2
PowerPoster
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|