|
Post by barryr on May 7, 2018 12:50:09 GMT
This does not show string 5
nomainwin STATICTEXT #cfg, "string01", 10, 10, 200, 100 STATICTEXT #cfg, "string02", 10, 40, 200, 100 STATICTEXT #cfg, "string03", 10, 70, 200, 100 STATICTEXT #cfg, "string04", 10, 100, 200, 100 STATICTEXT #cfg, "string05", 10, 130, 200, 100 open "dialog window" for dialog as #cfg wait close #cfg
If I comment off any statictext statement it shows the other four strings, e.g. nomainwin STATICTEXT #cfg, "string01", 10, 10, 200, 100 STATICTEXT #cfg, "string02", 10, 40, 200, 100 ' STATICTEXT #cfg, "string03", 10, 70, 200, 100 STATICTEXT #cfg, "string04", 10, 100, 200, 100 STATICTEXT #cfg, "string05", 10, 130, 200, 100 open "dialog window" for dialog as #cfg wait close #cfg
What am I doing wrong? Is there a maximum number of statictext statements per window?
|
|
|
Post by tenochtitlanuk on May 7, 2018 13:19:39 GMT
Try making the height of each statictext smaller!
nomainwin STATICTEXT #cfg, "string01", 10, 10, 200, 20 STATICTEXT #cfg, "string02", 10, 40, 200, 20 STATICTEXT #cfg, "string03", 10, 70, 200, 20 STATICTEXT #cfg, "string04", 10, 100, 200, 20 STATICTEXT #cfg, "string05", 10, 130, 200, 20 open "dialog window" for dialog as #cfg wait close #cfg
|
|