When you replied I remembered going over that in the tutorial so I found it, but thanks so much!
What solved my issue (based on Dino's response):
Screenshot 2023-09-18 135522.png
Found in Tutorial 4 AutoGUI+ (this is based on Gender but the same applies):
Screenshot 2023-09-18 135620.png ...
Search found 11 matches
- 18 Sep 2023, 22:01
- Forum: "How do I do this"
- Topic: Change an input field adjacent to specified label
- Replies: 2
- Views: 18022
- 18 Sep 2023, 21:18
- Forum: "How do I do this"
- Topic: Change an input field adjacent to specified label
- Replies: 2
- Views: 18022
Change an input field adjacent to specified label
If a label indicates the type of field next to it, is there a means of setting up an AUTOGUI rule to change it?
E.g, if the label says Date......: [inputfield] , how would one go about changing the input field to a date picker even though there is no data within the input field?
I know how to ...
E.g, if the label says Date......: [inputfield] , how would one go about changing the input field to a date picker even though there is no data within the input field?
I know how to ...
- 18 Sep 2023, 17:10
- Forum: "How do I do this"
- Topic: Axes commands
- Replies: 3
- Views: 17599
Re: Axes commands
Hi
Where can I locate this file?
Where can I locate this file?
- 13 Sep 2023, 22:57
- Forum: "How do I do this"
- Topic: Button or Image carries over to another menu
- Replies: 2
- Views: 16338
Re: Button or Image carries over to another menu
Awesome, I played around with screen identification and managed to separate the screens successfully. much appreciated.
- 12 Sep 2023, 19:50
- Forum: "How do I do this"
- Topic: Button or Image carries over to another menu
- Replies: 2
- Views: 16338
Button or Image carries over to another menu
Currently changed a caption option into a button/image and created an on click event:
var F = FIELDS("OptionCL");
F.setValue("3");
SENDKEY("Enter");
visible = false;
var F = FIELDS("opt3");
F.setProperty("visible", false);
F.refresh();
Reason I am trying to hide it, is because the image remains on ...
var F = FIELDS("OptionCL");
F.setValue("3");
SENDKEY("Enter");
visible = false;
var F = FIELDS("opt3");
F.setProperty("visible", false);
F.refresh();
Reason I am trying to hide it, is because the image remains on ...
- 11 Sep 2023, 23:18
- Forum: "How do I do this"
- Topic: Directly calling another screen/5250 menu via onClick button
- Replies: 2
- Views: 17263
Re: Directly calling another screen/5250 menu via onClick button
Tested the CHoreographer option and it works like a charm, thank you very much!
I don't suppose there is a way to call a page directly using 5250 commands. like CALL DEVMENUCL but on a push button, instead of referencing the CommandLine, etc., just a straight call function or must this be done ...
I don't suppose there is a way to call a page directly using 5250 commands. like CALL DEVMENUCL but on a push button, instead of referencing the CommandLine, etc., just a straight call function or must this be done ...
- 11 Sep 2023, 17:05
- Forum: "How do I do this"
- Topic: Directly calling another screen/5250 menu via onClick button
- Replies: 2
- Views: 17263
Directly calling another screen/5250 menu via onClick button
Subject explains it, I can't seem to get a button onClick event whereby I can directly call another screen or 5250 menu without referencing the commandline. Is this possible?
- 08 Sep 2023, 23:57
- Forum: "How do I do this"
- Topic: Image onClick focuses to a specific input field.
- Replies: 2
- Views: 20263
Re: Image onClick focuses to a specific input field.
Got it right, thanks a million!!
- 08 Sep 2023, 19:50
- Forum: "How do I do this"
- Topic: Image onClick focuses to a specific input field.
- Replies: 2
- Views: 20263
Image onClick focuses to a specific input field.
Hi
How do I set an onClick event for an image to focus a specific input field, or even to use the F4 function key on a specific input field?
How do I set an onClick event for an image to focus a specific input field, or even to use the F4 function key on a specific input field?
- 07 Sep 2023, 16:41
- Forum: "How do I do this"
- Topic: How to add placeholders inside an input field
- Replies: 2
- Views: 20120
Re: How to add placeholders inside an input field
Perfect!!! Thank you so much!