Search results

  1. V

    On form change record function? Problem hiding/showing boxes on record change

    Thanks Doco! Now i have this function, and it works perfect! Private Sub Form_Current() Call Check_Checkbox End Sub Private Sub KZ_onjuist_geg_AfterUpdate() Call Check_Checkbox End Sub Private Sub KZ_onvol_geg_AfterUpdate() Call Check_Checkbox End Sub Private Sub Check_Checkbox() If...
  2. V

    On form change record function? Problem hiding/showing boxes on record change

    Hi, I'm searching a VB function where i can do the following in my form: I have a form with 3 checkboxes. Each checkbox has a memofield hidden underneath it if the checkbox(KZ_onvol_geg) = true then the memofield (example: Onvoldoende_gegevens) must be visible. When the checkbox is false it...
  3. V

    Alternative for Access to word with bookmarks?

    nvm, found everything i wanted :P Thanks for the contribuition everyone! this topic is solved
  4. V

    Alternative for Access to word with bookmarks?

    the save function works perfect. but now i see another thing that doesn't work i have an pull down box on my head form that gets his info from a table. the pull down got these settings (i have a dutch version, could be an other name in English: Type source: Table/query source: test (this...
  5. V

    Alternative for Access to word with bookmarks?

    Thanks alot chergh! i will try the code when i have the time :P
  6. V

    Alternative for Access to word with bookmarks?

    yes, that is what i'm looking for. I already made a script with this function Option Compare Database Public Sub Knop5_Click() Screen.MousePointer = 11 pdot = "c:\test2.dot" If IsNull(pdot) Then MsgBox "dot not found." Screen.MousePointer = 0 Exit Sub End If On Error Resume Next...
  7. V

    Alternative for Access to word with bookmarks?

    Hello, Is it possible to not use the intern mailmerge function. What i try to get is the following: When i press a button on a form it has to export the data from access (only that form) to word (with an *.dot file) But i don't want to use the bookmark function in word. what i try to do is...
Back
Top Bottom