Search results

  1. B

    Set datefield back to empty

    Hello everybody, So I want on opening a form to set some datefields back to null or empty by some criteria : Private Sub Form_Load() Dim db As DAO.Database Dim rs As DAO.Recordset Set db = CurrentDb Set rs = CurrentDb.OpenRecordset("validity") If Not (rs.EOF And rs.BOF) Then...
  2. B

    Datetype stLinkCriteria problem

    Hello, I want to open a subform with this code: Dim stDocName As String Dim stLinkCriteria As String stDocName = "validalas" If IsNull([Nyilvantartasi szam]) And Not IsNull([Cim]) Then stLinkCriteria = "[Cim]=" & "'" & Me![Cim] & "'" End If If...
  3. B

    How to hide checkbox and label on a form

    Hello all! I have inherited an incomplete project, with a limited knowledge to Access and VBA, please help. I have a form, called "validalist". There is a checkbox named "Arch" in the header. I want to hide or reappear another checkbox named "Arch2" and a label "label1" with checking or...
  4. B

    Hello from Hungary

    hi everybody, I'm just trying to continue the work of my previous coworker, with minimal knowledge to Access and VBA. I'll appreciate every help:)
Back
Top Bottom