|
-
Nov 25th, 2001, 12:18 PM
#1
Thread Starter
Frenzied Member
Very Urgent!! Please help!
ok two things..
1) Does anyone have a good picture of a spinning globe?
2) and how would you make a Label slide across the form?
Please help!!!
-
Nov 25th, 2001, 12:53 PM
#2
Thread Starter
Frenzied Member
does anyone know at all? please help i really need this...
-
Nov 25th, 2001, 01:06 PM
#3
Frenzied Member
2) In a timer, add something like
VB Code:
Label1.Left = Label1.Left + 10
You just proved that sig advertisements work.
-
Nov 25th, 2001, 01:21 PM
#4
Hyperactive Member
Look if that code is useful for you
Dim sense As Boolean
Private Sub Form_Load()
Timer1.Interval = 10
sense = True
End Sub
Private Sub Timer1_Timer()
If Label1.Left = 0 Then sense = True
If Label1.Left + Label1.Width >= Me.Width Then sense = False
If sense = True Then
If Label1.Left + 100 > Me.Width Then
Label1.Left = Me.Width
Else
Label1.Left = Label1.Left + 100
End If
Else
If Label1.Left < 100 Then
Label1.Left = 0
Else
Label1.Left = Label1.Left - 100
End If
End If
End Sub
Josep Mª
-
Nov 25th, 2001, 01:26 PM
#5
Thread Starter
Frenzied Member
ok that works...does anyone have a picture that goes well with a Internet Browser? possibly animated too? Thanks.
-
Nov 25th, 2001, 01:34 PM
#6
Junior Member
What does the browser look like? Let me know of color scheme, what the graphics look like, etc. and I'll see if I can help you.
"One day the world will be ready for you and wonder how they didn't see."
~ Mark Oliver Everett
-
Nov 25th, 2001, 01:57 PM
#7
Thread Starter
Frenzied Member
ok..um...well..do you want colors for the splash screen or the actual program?
the actual program is just windows colors and the icons in it are basically the winxp icons kinda...
um, the splash screen..well here i'll send you a screen shot..lol thing is..my browser has a cheesy name..it's not the name yet i dont think....i might change it..it's Internet Navigator so..here is a screen shot of my splash screen...
any ideas?
-
Nov 25th, 2001, 01:59 PM
#8
Thread Starter
Frenzied Member
for that label i just did this
VB Code:
Do Until label1.left = 4850
Label1.Left = Label1.Left + 10
Loop
and it worked perfectly.
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
|