JBASE MESSAGE DIALOG FOR WINDOWS APPLICATION

  • cemtezer
  • cemtezer's Avatar Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
13 years 9 months ago - 13 years 9 months ago #8960 by cemtezer
Hi,

I want to learn how can I use message dialog in JBase routine for desktop application, I tried to find something about it but I could not find anything, please someone help me about it. I tried to make Yes/No message dialog and the result should be return as you know. and also how can I make input message dialog. Thank you for attention.
Last edit: 13 years 9 months ago by cemtezer.

Please Log in or Create an account to join the conversation.

  • jpb
  • jpb's Avatar
  • Offline
  • Moderator
  • Moderator
  • retired . . . ¯\_(ツ)_/¯
More
13 years 9 months ago #8966 by jpb
*YES/NO DIALOG
TEXT = "Try this box      Press Yes or No"
CALL OVE
BEGIN CASE
    CASE  TEXT = "Y"
        CRT "You pressed Yes"
    CASE TEXT = "N"
        CRT "You pressed No"
END CASE

*INPUT DIALOG
DISP = "THIS IS THE HEADER      please enter the date, yyyymmdd:  "
Col  = 3
Row  = 23
Npar = "8.8"
Tpar = "D"
CALL TXTINP(DISP,Col,Row,Npar,Tpar)
MY.DATE = COMI
The following user(s) said Thank You: armin

Please Log in or Create an account to join the conversation.

  • cemtezer
  • cemtezer's Avatar Topic Author
  • Offline
  • Senior Member
  • Senior Member
More
13 years 9 months ago #8972 by cemtezer
thank you so much, nice work

Please Log in or Create an account to join the conversation.

Time to create page: 0.042 seconds