Results 1 to 4 of 4

Thread: Win98 Start Button??

  1. #1

    Thread Starter
    Junior Member
    Join Date
    May 2000
    Posts
    29

    Talking

    Hey!

    I would like to know how I can make a prog similar to the Win98 Start button??
    So that it easily pops up when I press a button and goes down again, when I press the button a second time!

    Thanx

  2. #2
    Guest
    Try this. Make a Form with a CheckBox and set it's Style to Graphical. Add a PictureBox and insert the following code into the Form.
    Code:
    Private Sub Check1_Click()
    
        If Check1 = Checked Then
            Picture1.Visible = True
        Else
            Picture1.Visible = False
        End If
        
    End Sub
    
    Private Sub Form_Load()
        Picture1.Visible = False
    End Sub

  3. #3
    Guest
    I made a little sample project,
    you can download it here

    http://64.82.89.57/


    (note: that is running off of My PC so it may not be working when you go, also my IP is dynamic so it will not work if I disconnect and reconect to the internet)

  4. #4

    Thread Starter
    Junior Member
    Join Date
    May 2000
    Posts
    29
    Thanx for the fast replies!!!

    The two things helped me a lot, now it shouldn't take long for my project!

    Neon

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