Recent content by smubbel

  1. smubbel

    how to check form open

    Try this: Public Function ISOPENFORM(cFrmName As String) As Boolean Dim ObjDb As Object, ObjFrms As Object Set ObjDb = Application.CurrentProject Set ObjFrms = ObjDb.AllForms ISOPENFORM = ObjFrms(cFrmName).IsLoaded End Function
  2. smubbel

    Importing Forms with VBA password

    If the destination database is not password protected you can export selected items (forms,reprots,modules) directly from the source database. However if both databases are password protected you will find yourself in a Catch-22 situation. You will need an intermediary scratch database (I call...
  3. smubbel

    Error code 3000

    Bug? Had the same problem yesterday. In my case a dormant bug was the culprit. Try compiling yr application in VBmode (Debug->compile): it will show you where they are, if any. Good luck.
  4. smubbel

    Toolbox

    Had the same problem yesterday: it's quite maddening. Still don't know what caused it, but here is how I got it bacK: 1. From the main menu go to: Views>Toolbars>Edit; 2. Locate the Toolbox and activate it 3. Select Properties and press [Restore Defaults]. Access will ask you to confirm and...
Back
Top Bottom