Good day!
I've been getting more involved with the mjtnet products and I've been trying to learn more about using the Dialog Designer. In particular, is there any way to modify the text labels to display the text in a different size or color to differientiate from other stuff.
Also, some dialog designer (and beyond) tutorials in general?
Thanks very much,
Frank
Dialog Designer Info
Moderators: Dorian (MJT support), JRL
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
To modify the size/color etc of text labels, click on the label in question and then in the properties editor (shown to the left of the main dialog) alter the font and color settings (etc).
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
- Marcus Tettmar
- Site Admin
- Posts: 7395
- Joined: Thu Sep 19, 2002 3:00 pm
- Location: Dorset, UK
- Contact:
Yes, sorry.
V11 dialogs were very basic and you could not change the font size/style etc of an object at design time but you can use SetDialogObjectFont and SetDialogObjectColor.
V11 dialogs were very basic and you could not change the font size/style etc of an object at design time but you can use SetDialogObjectFont and SetDialogObjectColor.
Marcus Tettmar
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
http://mjtnet.com/blog/ | http://twitter.com/marcustettmar
Did you know we are now offering affordable monthly subscriptions for Macro Scheduler Standard?
Hey Fthomas,
Do you just want a dialog to appear and then in the background your script runs? If so if your dialog name was dialog1 you would use this command.
If you want your dialog to appear and halt the script until you put some sort of input into your dialog or press buttons etc. You'll want to use this.
With that second method, the script will not continue until the dialog is either closed or a modalresult is returned via button. In MS12 dialogs you'll notice a property for buttons called modalresult. If you a put a value in there (anything above 0) then anytime that button is clicked it returns that modalresult value to the dialog and then it will close and the script will continue.
That's kind of a generalization but hopefully you get the idea, if you any other questions let me know.
-Josh
Do you just want a dialog to appear and then in the background your script runs? If so if your dialog name was dialog1 you would use this command.
Code: Select all
show>dialog1
Code: Select all
show>dialog1,r
That's kind of a generalization but hopefully you get the idea, if you any other questions let me know.
-Josh