Hi Mr. Excel,
This is my first post here.
Using excel 2003 on windows XP pro, I am emulating an old Prodigy database. The database doesn't print from the network and the end users want to work from their work area instead of going to another area on an old computer to complete data entry.
The users want F2 to save the spreadsheet and open the switchboard form. The following code does not run when I press F2 with the userform, frmEntry, active. Are there any suggestions?
Thanks,
Dan
This is my first post here.
Using excel 2003 on windows XP pro, I am emulating an old Prodigy database. The database doesn't print from the network and the end users want to work from their work area instead of going to another area on an old computer to complete data entry.
The users want F2 to save the spreadsheet and open the switchboard form. The following code does not run when I press F2 with the userform, frmEntry, active. Are there any suggestions?
Thanks,
Dan
Code:
Private Sub UserForm_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
'Press [F2] to save
If KeyAscii = 113 Then
ThisWorkbook.Save
Me.txtEntryMonth.SetFocus
frmSwitchboard.Show
Unload frmEntry
End If
End Sub