Results 1 to 8 of 8

Thread: Very Urgent!! Please help!

  1. #1

    Thread Starter
    Frenzied Member SomethinCool's Avatar
    Join Date
    Jan 2001
    Location
    Malvern, PA
    Posts
    1,407

    Talking 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!!!

  2. #2

    Thread Starter
    Frenzied Member SomethinCool's Avatar
    Join Date
    Jan 2001
    Location
    Malvern, PA
    Posts
    1,407
    does anyone know at all? please help i really need this...

  3. #3
    Frenzied Member nishantp's Avatar
    Join Date
    Jan 2001
    Location
    Where you least expect me to be
    Posts
    1,375
    2) In a timer, add something like
    VB Code:
    1. Label1.Left = Label1.Left + 10
    You just proved that sig advertisements work.

  4. #4
    Hyperactive Member
    Join Date
    Nov 2001
    Location
    Catalonia
    Posts
    397
    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ª

  5. #5

    Thread Starter
    Frenzied Member SomethinCool's Avatar
    Join Date
    Jan 2001
    Location
    Malvern, PA
    Posts
    1,407
    ok that works...does anyone have a picture that goes well with a Internet Browser? possibly animated too? Thanks.

  6. #6
    Junior Member Jaded's Avatar
    Join Date
    May 2001
    Posts
    17
    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

  7. #7

    Thread Starter
    Frenzied Member SomethinCool's Avatar
    Join Date
    Jan 2001
    Location
    Malvern, PA
    Posts
    1,407
    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?

  8. #8

    Thread Starter
    Frenzied Member SomethinCool's Avatar
    Join Date
    Jan 2001
    Location
    Malvern, PA
    Posts
    1,407
    for that label i just did this

    VB Code:
    1. Do Until label1.left = 4850
    2.     Label1.Left = Label1.Left + 10
    3. 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
  •  



Click Here to Expand Forum to Full Width