|
-
Jan 29th, 2000, 04:00 AM
#1
Thread Starter
New Member
How do I make a color fading background like you see on the setup wizards? I am trying to make one that completly covers the screen where you can then have a form inside to do stuff with.
-
Jan 29th, 2000, 04:10 AM
#2
New Member
You know who rules and gives you all the tips!
-
Jan 29th, 2000, 04:12 AM
#3
Thread Starter
New Member
AT least I don't listen to country music!!!
-
Jan 29th, 2000, 04:31 AM
#4
PowerPoster
-
Jan 29th, 2000, 04:35 AM
#5
Hyperactive Member
Hi Intel,
If you want information on fading backgrounds then goto the graphics section of this site: http://www.vbcode.com
-
Jan 29th, 2000, 04:42 AM
#6
Thread Starter
New Member
acornranch is a friend of mine chris. Anyway, thank you rino.
-
Jan 29th, 2000, 05:25 AM
#7
So Unbanned
try this code:
Code:
For x = 1 To Screen.Height
colorint = 255 / Screen.Height
Form1.ForeColor = RGB(0, 0, 255 - colorint * x)
Form1.Line (0, x)-(Screen.Width, x)
Next x
This works if the window is maximized and creates a blue-black window just like setup just make sure to set form1.autoredraw to true.
------------------
DiGiTaIErRoR
VB, QBasic, Iptscrae, HTML
Quote: There are no stupid questions, just stupid people.
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
|