JBASE MESSAGE DIALOG FOR WINDOWS APPLICATION
- cemtezer
-
Topic Author
- Offline
- Senior Member
-
Less
More
- Posts: 52
- Thank you received: 1
13 years 9 months ago - 13 years 9 months ago #8960
by cemtezer
JBASE MESSAGE DIALOG FOR WINDOWS APPLICATION was created 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.
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
-
- Offline
- Moderator
-
- retired . . . ¯\_(ツ)_/¯
Less
More
- Posts: 2859
- Thank you received: 650
13 years 9 months ago #8966
by jpb
Replied by jpb on topic Re: JBASE MESSAGE DIALOG FOR WINDOWS APPLICATION
*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
-
Topic Author
- Offline
- Senior Member
-
Less
More
- Posts: 52
- Thank you received: 1
13 years 9 months ago #8972
by cemtezer
Replied by cemtezer on topic Re: JBASE MESSAGE DIALOG FOR WINDOWS APPLICATION
thank you so much, nice work
Please Log in or Create an account to join the conversation.
Time to create page: 0.042 seconds