B bhelmy Registered User. Local time Today, 08:18 Joined Dec 6, 2015 Messages 62 Jan 14, 2016 #1 hi please i need when i click on command 0 make Command 1 and command 2 Unhide and when click agaen make them hide thx Attachments test.mdb test.mdb 296 KB · Views: 81
hi please i need when i click on command 0 make Command 1 and command 2 Unhide and when click agaen make them hide thx
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 14:18 Joined May 7, 2009 Messages 20,740 Jan 14, 2016 #2 private sub Command0_Click() With Me .Command1.Visible = Not (.Command1.Visible) .Command2.Visible = Not (.Command2.Visible) End With End Sub
private sub Command0_Click() With Me .Command1.Visible = Not (.Command1.Visible) .Command2.Visible = Not (.Command2.Visible) End With End Sub