|
-
Sep 7th, 2000, 06:42 PM
#1
Thread Starter
PowerPoster
I've asked this before, but
is there a way to take one picture box and ceate the illuison of it spinning? Any ideas?
Also, anybody have any suggestions on creating a cool spash screen for an app? I've created plain stuff before, but would really like to spice up the latest project. Thanks.
Remaining quiet down here !!!
BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....
-
Sep 7th, 2000, 06:48 PM
#2
Hyperactive Member
1. Get the image you want in the picture box.
2. Make a copy of that picture backwards
3. Write a subroutine that :
- Reduces the width in exponential increments
- Changes the left position so the middle doesn't move
- Automatically Resizes the picture in it naturally
- When it reaches Width = 0 changes to the backwards picture
- Increases the width by the same exponential increments
- Automatically Resizes the picture in it naturally
- Repeat to change back to the original picture
-
Sep 7th, 2000, 06:53 PM
#3
Thread Starter
PowerPoster
Thanks Gen-X. Stupid question, how to make a copy of my picture backwards? I can use either a standard ICO file or BMP but don't know how to makeit backwards...
Remaining quiet down here !!!
BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....
-
Sep 7th, 2000, 06:56 PM
#4
Use MSPaint to flip/rotate it.
Image > Flip/Rotate
-
Sep 7th, 2000, 06:59 PM
#5
Or use PaintPicture.
Code:
Me.PaintPicture Picture1.Picture, Picture1.Width, Picture1.Height, -1 * Picture1.ScaleWidth, -1 * Picture1.ScaleHeight
-
Sep 7th, 2000, 08:53 PM
#6
Frenzied Member
or if you're still stuck, send me the image and I'll flip it for you in a professional program becuase paint isn't the greatest quilty
NXSupport - Your one-stop source for computer help
-
Sep 8th, 2000, 08:00 AM
#7
Thread Starter
PowerPoster
Thanks guys on the spinning picture answers. Any thought on a splash screen?
Remaining quiet down here !!!
BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....
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
|