I have already installed 3 buttons which run three different private functions successfully, if I dblclick them one by one (thus I guess I don't hand over arguments form one to another..)
1) Private Sub WEGSUinFlundZILIeintragen_DblClick(Cancel As Integer)
2) Private Sub WEGZuordnen_DblClick(Cancel As Integer)
3) Private Sub WEGinFJeintragen_DblClick(Cancel As Integer)
but now - as they seem to work ok - I would like to run these three procedures with just one dblclick
so I installed butto nr. 4 and tried to find the right syntax to tell access what I want to be done, one after the other....
4) Private Sub WEGkomplett_DblClick()
WEGSUinFlundZILIeintragen
WEGZuordnen
WEGinFJeintragen
End Sub
but it doesn't work that way... and I haven't found any other syntax to do it .. ?!?!?!?!