Recent content by brianrr23

  1. B

    DoCmd.Close Not Working

    I am unable to get a form to close with the following code. "DoCmd.Close acForm, "frmStudentLookup", acSaveNo" works by itself, but not following the DoCmd.Open. However, If frmStudentInfo is already open it works just fine. If rcCount = 0 Then MsgBox "No Record found", vbInformation...
  2. B

    Access running very slow in form and query design view

    It's a networked printer.
  3. B

    Access running very slow in form and query design view

    I was running Access 2010 on Windows XP and everything worked fine. My PC was replaced with a Windows 7 64 bit OS and Office 2013. After the change the same database in Access that was working fine previously comes to a crawl at times. This seems to occur mostly when in design view for forms...
  4. B

    DoCmd.RunSQL using data from InputBox

    Ahhh. That worked perfectly. Thanks for your help!
  5. B

    DoCmd.RunSQL using data from InputBox

    I am having an issue with running DoCmd.RunSQL using the data entered in an InputBox. Here is my code. Dim strSqlPrevWeek As String strSqlPrevWeek = "DELETE FROM PrevWeek " _ & "WHERE [PrevWeek].[Admit Term] = '" & strInputTerm & "' ;" strInputTerm = InputBox("Enter the Term:")...
Back
Top Bottom