Search results

  1. H

    Always on Top problems

    No matter what code examples I use from this forum, I cannot get a form to stay on top within the Access .MDB (I am not running it from an .MDE). Here is the code that I am using. Does anyone see anything wrong? In a module: Private Declare Function SetWindowPos Lib "user32" (ByVal hWnd As...
  2. H

    Catastrophic Error -2147418113

    I have this code below that I am running in a form's code page: Private Sub UpdateConcept() On Error GoTo ErrorTrap Dim SQL As String SQL = "UPDATE ConceptMaster SET " SQL = SQL & "ConceptName = '" & Trim(Me.txtName) & "', " SQL = SQL & "ConceptDesc = '" &...
  3. H

    Deploment: .MDE works with Office Pro not Standard

    Deployment: .MDE works with Office Pro not Standard Here at work, we have upgraded from Office 2000 to Office XP (2002). We use Office XP Developer to develop our Access application. Our client PCs use Office XP Standard on WinXP SP2. Certain parts of the code work fine in the development...
Back
Top Bottom