Search results

  1. M

    Key Down Problem

    Hi, I have forms that disable the Page Up and Page Down keys utilizing the following coding for Key Down in the Form properties. Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) Select Case KeyCode Case 33, 34 KeyCode = 0 End Select End Sub However, I have Memo...
  2. M

    On Open Event Procedure Problem

    Hi, I am having a problem with an On Open Event Procedure. I have a main form - fMainForm1 that loads on Startup with a subform - frmHelpAbout, which is designed to display certain information and check to see if certain Tables are present. If the Tables are present, after a short time delay...
  3. M

    Format Date/Time Probem

    Hi, hope someone can help me. I have a table where a Field Name has Data Type of Date/Time with Format "mm"/"dd" and Input Mask of Short Date 99/99/0000;0;_ In the form the Text Field with source from that Field Name has Input Mask as 99/99;_ The text field in the form shows __/__ in the...
  4. M

    Forms and Subforms Loading and Unloading

    I am learning Access, using Access 2000. I created a database to have a Main Menu form (which has a picture for the background showing command button background pictures for places where I have command buttons) with command buttons (transparent) on the form that open other forms and closes the...
Back
Top Bottom