I am trying to use Messagebox in a view action and had trouble adding %Include “lsconst.lss” to either Views Options or Delcaration or in the Globals.
any ideas or suggestions ?? kind of lost here…
Thanks,
Durga
I am trying to use Messagebox in a view action and had trouble adding %Include “lsconst.lss” to either Views Options or Delcaration or in the Globals.
any ideas or suggestions ?? kind of lost here…
Thanks,
Durga
Subject: lsconst.lss in View action
You dont have to add “lsconst.lss” use the values
eg
Messagebox “You must enter a numeric value for the number”,0+ 48, “Non-numeric Number”
is equivalent MB_OK + MB_ICONEXCLAMATION
Constant name Value Buttons displayed
MB_OK 0 OK
MB_OKCANCEL 1 OK and Cancel
MB_ABORTRETRYIGNORE 2 Abort, Retry, and Ignore
MB_YESNOCANCEL 3 Yes, No, and Cancel
MB_YESNO 4 Yes and No
MB_RETRYCANCEL 5 Retry and Cancel
icon
Defines the icons to be displayed in the message box:
Constant name Value Icon displayed
MB_ICONSTOP 16 Stop sign
MB_ICONQUESTION 32 Question mark
MB_ICONEXCLAMATION 48 Exclamation point
MB_ICONINFORMATION 64 Information
Subject: RE: lsconst.lss in View action
Ciby, Thanks a lot for your response, i went through the help thoroughly but somehow missed it.
Regards,
DUrga