Page 1 of 1

Little wizard for create controls

Posted: Tue May 23, 2017 12:54 pm
by dragancesu
IDE is a useful program but I do not like the result (prg + FMG) it rarely use

I see that many people use when they need to create a control and then to infiltrate program

I did something similar to create several controls so look

Program create test.prg , then copy-paste code into your program

Re: Little wizard for create controls

Posted: Tue May 23, 2017 2:18 pm
by serge_girard
Thx Dragan !

Serge

Re: Little wizard for create controls

Posted: Tue May 23, 2017 2:31 pm
by serge_girard
Dragan,

In radio_wiz.prg LABEL lab_5 interferes with Radio_1. This makes it impossible to change from horizontal to vertical.
All labels are too long which makes mouse-pointing useless. Only TAB can change focus now.

Serge

Re: Little wizard for create controls

Posted: Tue May 23, 2017 3:19 pm
by dragancesu
Thank you, I see problem but don't see solution

Re: Little wizard for create controls

Posted: Tue May 23, 2017 3:35 pm
by serge_girard
This how I do it:

Make labels temporary:

Code: Select all

 @ 50,50 LABEL lab_1 VALUE "START AT                    , " BACKCOLOR GREEN
Then you will see where overlapses, then use correct WIDTH .. in order to avoid overlapse!

Serge

Re: Little wizard for create controls

Posted: Tue May 23, 2017 3:37 pm
by serge_girard
When a label is too long (with same backcolor as form) it will overlapse edit/radio/etc. causing the above problems...

Serge

Re: Little wizard for create controls

Posted: Fri May 26, 2017 4:12 am
by bpd2000
serge_girard wrote: Tue May 23, 2017 2:18 pm Thx Dragan !

Serge
+1

Re: Little wizard for create controls

Posted: Sat May 27, 2017 12:10 am
by Steed
Thanks

Re: Little wizard for create controls

Posted: Sun May 28, 2017 8:34 pm
by quartz565
Thank you Dragan