|
-
Jul 6th, 2000, 01:19 AM
#1
Thread Starter
Member
Hi, I have a very simple problem here that i just can't solve.
I need to edit a picture and save it to a bitmap file. I'm using a picture box and i already able to draw by using the line, bitblt and circle. The problem is that when i save the picture, my drawings are gone. Even if i just use picture1.picture = picture2.picture, the drawings i made is not copied from picture1 to picture2.
Well, i must admit it. I'm dumb in grapics development. I'm a database application developer and not a graphics guru. I know what i have done is wrong and I'm asking you guys to please help me on this.
Thank you very much!
Mikey
A/P
Using VB6 SP4 Enterprise Ed.
-
Jul 6th, 2000, 01:29 AM
#2
transcendental analytic
By drawing on your picture, youre actually drawing to the image, it will erase as soon as you cls it.
Put
Code:
picture1.picture=picture1.image
Between your drawing methods and saving method
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Jul 6th, 2000, 09:03 PM
#3
Thread Starter
Member
i see. Well, thank you very much!
Mikey
A/P
Using VB6 SP4 Enterprise Ed.
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
|