Search results

  1. S

    Lock a perant form

    Something like this? DoCmd.OpenForm "frm_log", acNormal, "", "log_id=" & List0.Column(0), acFormEdit, Modal
  2. S

    Problem with Apostrophe in a string

    never mind thins topic. I already have this problem solved!
  3. S

    Lock a perant form

    Tnx but that is not really a great option for my form.
  4. S

    Lock a perant form

    underneath what property is that possible?
  5. S

    Lock a perant form

    I have a form that opens another form... When that other form is open the perant form must be disabled. How do I do that?! And when the form closes the perant form must be enabled again! Can anybody tell me?
  6. S

    Clear Form

    I have a button that clears come fields. and me.field = "" is the only thing that works!
  7. S

    Clear Form

    How about replacing NULL with ""?
  8. S

    Problem with Apostrophe in a string

    Private Sub kn_search_Click() Dim str_search As String If (Me.vld_search = "") Or (IsNull(Me.vld_search)) Then Exit Sub str_search = Me.vld_search List0.RowSource = "SELECT tbl_log.log_id AS ID, tbl_log.log_datum AS [Date], tbl_log.log_titel AS Title, tbl_log.log_tekst...
Back
Top Bottom