Posted: Tue Nov 20, 2007 10:14 am Post subject: vb6 tools question!
so um i was wondering how to make a list with cheats like in this picture instead of doing butons... and i know the code for the cheat i only need to know how to do in in the option like in the picture
That looks like a menu. So, add a menu with what you want. Then add a click event for each option. In that event, check if it is checked. If it is, then do your code. Say that you have something that will show a msgbox. In the click it event it would look something like
Code:
Private Sub Something_Click()
Something.Checked = Not Something.Checked 'This will check and un-check'
If Something.Checked Then
MsgBox "Something"
End If
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum