|
-
Nov 11th, 2000, 09:12 AM
#1
Thread Starter
Hyperactive Member
please follow this to the original post
Sorry for the inconvience ,
[]P
Visual Basic 6 SP4 on win98se
QUIT THE RAT RACE BECAUSE YOUR MESSING THE WORLD UP !!!!!
-
Nov 11th, 2000, 09:22 AM
#2
Member
image - strach = true
i dont know for sure ..but maybe you can simply load a picture into
image1
setting the strech property to true
than simply minimizing the image..
i know this sounds just too easy ...but maybe it will work..
although , i'm sure there are several API functions which does the job perfectly..(i dont know what are they..)
-
Nov 11th, 2000, 09:25 AM
#3
Thread Starter
Hyperactive Member
I Need to shrink it .
Visual Basic 6 SP4 on win98se
QUIT THE RAT RACE BECAUSE YOUR MESSING THE WORLD UP !!!!!
-
Nov 11th, 2000, 10:29 AM
#4
transcendental analytic
Code:
Picture1.PaintPicture Picture2.Image, 0, 0, 16, 16, 0, 0, 32, 32, vbSrcCopy
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.
-
Nov 11th, 2000, 10:39 AM
#5
Thread Starter
Hyperactive Member
Thanks kedaman !
maybe I'm asking wrong I used the API's to get the icon into the first box Then I tried your code here
Code:
retval = DrawIcon(pixDummy.hDC, 0, 0, hIcon)
' Although the icon's image is still visible, the icon itself is not in use.
' Therefore we destroy it to free up resources.
retval = DestroyIcon(hIcon)
pixDummy.PaintPicture pic_Little.Image, 0, 0, 16, 16, 0, 0, 32, 32, vbSrcCopy
pic_Little.Refresh
pic_little has autoredraw set to true but still fails to display the icon . What did I do wrong ?
[]P
[Edited by PRIVATE1 on 11-11-2000 at 10:45 AM]
Visual Basic 6 SP4 on win98se
QUIT THE RAT RACE BECAUSE YOUR MESSING THE WORLD UP !!!!!
-
Nov 11th, 2000, 10:56 AM
#6
Thread Starter
Hyperactive Member
I Got it I confused the source and destination .
thanks again
Visual Basic 6 SP4 on win98se
QUIT THE RAT RACE BECAUSE YOUR MESSING THE WORLD UP !!!!!
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
|