kermit01de
Technical User
Unfortunately I do not find any hint for what I am trying to do:
Having two tables FE_Version and Config.
Both have field Version - if they match everything is fine.
I would like to have a button "Check Version" that checks the fields and pops up a message saying "Please update your frontend" if they do not match.
What I tried:
Private Sub Bezeichnungsfeld59_Click()
If FE_Version!Version <> Config!Version Then
MsgBox "Ungleich" & FE_Version!Version & "-" & Config!Version
Else
MsgBox "Gleich" & FE_Version!Version
End If
End Sub
That does not work. Any hint for me?
--------------------------------------
>>>>>> Bugs will appear in one part of a working program when another 'unrelated' part is modified <<<<<
Having two tables FE_Version and Config.
Both have field Version - if they match everything is fine.
I would like to have a button "Check Version" that checks the fields and pops up a message saying "Please update your frontend" if they do not match.
What I tried:
Private Sub Bezeichnungsfeld59_Click()
If FE_Version!Version <> Config!Version Then
MsgBox "Ungleich" & FE_Version!Version & "-" & Config!Version
Else
MsgBox "Gleich" & FE_Version!Version
End If
End Sub
That does not work. Any hint for me?
--------------------------------------
>>>>>> Bugs will appear in one part of a working program when another 'unrelated' part is modified <<<<<