24-12-2007, 08:15 PM
1). You can keep it completely client side, so long as all the /editor commands you want in your admin panel are already client side.
2).3). You could use either frmForm.Show or frmForm.Visible = True
2).
Code:
Private Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyF1 Then
..........
End If
End Sub