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!!!
Printable View
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!!!
does anyone know at all? please help i really need this...
2) In a timer, add something likeVB Code:
Label1.Left = Label1.Left + 10
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ÂȘ
ok that works...does anyone have a picture that goes well with a Internet Browser? possibly animated too? :D Thanks.
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.
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...
http://time112852.freeyellow.com/splash.jpg
any ideas? :confused:
for that label i just did this
VB Code:
Do Until label1.left = 4850 Label1.Left = Label1.Left + 10 Loop
and it worked perfectly.