Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Moving on up

Status
Not open for further replies.

innmedia

Programmer
Mar 24, 2000
108
US
Hi all,

On the way from VB6 to VB.net, what happened to...

-- The About form, Splash form, and Tip of the day?

-- right click (or before right click??) event

Thanks!
 
-- The About form, Splash form, and Tip of the day?

they are to easy to make yourself so they didnt include them

and the right click i shidden in the mouse down or up event

Code:
Private Sub Button1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Button1.MouseDown
        If e.Button = MouseButtons.Right Then
        MessageBox.Show("ikk")
        End If

    End Sub

Christiaan Baes
Belgium

What a wonderfull world - Louis armstrong
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top