I have been hunting for hours for a Message Box which performs like a VB6 Message Box - ie, Has Options Cancel, Yes, No etc
My last discovery is this
Dim res As Int = fx.Msgbox2(MainForm, "Do you want to save changes?", "Save", _
"Yes", "Cancel", "No", fx.MSGBOX_WARNING)
If res = fx.DialogResponse.POSITIVE Then
Log("Saving changes...")
End If
What is fx please ? (How is it defined)
Is this the best one to use or is there something as simple as the VB6 Message Box ?
My last discovery is this
Dim res As Int = fx.Msgbox2(MainForm, "Do you want to save changes?", "Save", _
"Yes", "Cancel", "No", fx.MSGBOX_WARNING)
If res = fx.DialogResponse.POSITIVE Then
Log("Saving changes...")
End If
What is fx please ? (How is it defined)
Is this the best one to use or is there something as simple as the VB6 Message Box ?