I have this condition in my Load event.. the message show, but when I press OK never happen.
….
If MessageBox.Show(“Session without permiss”, “MyApp”, MessageBoxButtons.OK) = DialogResult.OK Then
closeSession()
End If
Some idea?
Hi Michael,
the problem is fixed in our latest build (1.3.6).
Best regards
Frank
Hi Michael,
Modal workflow works fine, the code is suspended and when you click OK it resumes. It’s the return code that doesn’t work because of a bug that tries to parse “ok” to “Ok” and then DialogResult.OK (all uppercase). If you change the button to Yes you can see that it’s parsed. This is fixed in the current (pending) update.
Best,
Luca