• WSJerryC

    WSJerryC

    @wsjerryc

    Viewing 15 replies - 136 through 150 (of 185 total)
    Author
    Replies
    • in reply to: record locks #526401

      in the forms properties set the cycle property to current record instead of all records

    • in reply to: goto slide #526358

      thanks your suggestion worked like a charm
      thanks so much for your help

    • in reply to: Access 97 calculated field #526045

      if you are storing the calculated value in a table
      set the field properties to no duplicates
      KTK

    • in reply to: Password Protection #525623

      set your hard drives as not shared

    • in reply to: USB #525599

      it may be looking at the usb adapter as a com port. when you installed the adapter it should have given you the com port number (com1, com2)
      so if you already have one serial port filled more than likely the new adapter serial port would be listed as com 2 but this is all quessing
      but maybe worth a try
      HTH

    • in reply to: Spider Solitaire #525327

      i have ME on my computer a p62 300 with 80 meg memory and 98 on my other computer a pentium 133 with 32 meg memory they are networked so i can run spider on the 98 machine
      It runs twice as fast on the 98 as it does on the Me machine

    • in reply to: frustrated #525154

      try column 0 and column 1
      instead of 1 and 2
      HTH

    • in reply to: Excel Automation question #525071

      you might could try this i’m using access 2000
      but it might work in 97 i don’t really know but i thought it might help
      Set objXLBook = objXLApp.Workbooks.Open(“k:crewharareoffice.xls”, vbMaximizedFocus)
      HTH

    • in reply to: Text box won’t word wrap #525069

      have you tried setting the enter key behavior to new line in field instead of default
      HTH

    • in reply to: Dates are driving me nuts, prunes aren’t anybetter #1782377

      have you tried doing the calculation in the report instead of the query
      hth

    • in reply to: How to display new records? #523308

      when you close the maintenance form you should know which form the database is going back to
      i do in my databases also they had several comboboxes to refresh requering the entire form will refresh all at once not just one
      please excuse the “whateverform” but i didn’t know the name of the form and simply used this as a filler for the code
      sorry

    • in reply to: Dialog Box #523104

      try placing in the on open of the “fLaborCost” form
      not the hello form
      HTH

    • in reply to: Dialog Box #523001

      in one of my databases i have a separate form to key in the numbers then a second form shows the data i use this code to stop the blank screen you talked about

      Private Sub Form_Open(Cancel As Integer)
      Dim rst As DAO.Recordset
      On Error GoTo err
      Set rst = Me.RecordsetClone
      With rst
      rst.FindFirst “FORMS![OPENING FORM]![TEXTbox]'” = Me![data form textbox] & “‘”

      If .NoMatch Then

      DoCmd.Close acForm, “OPENING FORM”
      GoTo something
      Else

      End If
      End With
      Set rst = Nothing
      DoCmd.Close acForm, “OPENING FORM”

      err:
      DoCmd.Close acForm, “data form”
      MsgBox “There is no such record”
      something:
      DoCmd.Close acForm, “OPENING FORM”
      End Sub
      HTH

    • in reply to: Unable to Import #522894

      Have you tried the sr1 patch for access 2000
      it cured the same problem for me
      HTH
      JerryC

    • in reply to: How to display new records? #522893

      you could try putting this on the on close event of the “Applications Maintenance” form
      forms![whatever form your going to].requery
      that should do it for you
      HTH
      JerryC

    Viewing 15 replies - 136 through 150 (of 185 total)