until I was done writing my posts there are a few more already- I have to study at least half of them
Edit: Thanx for the videos- but your designer is that easy- no video needed. Designer is well documented - and I found everything but the button to create app without help. The problem is on the other side (while runtime) - i have not found any explanation how to change caption or size of something...I just wanted to see if my button-click gets recognized- but it does not even END if I write END into the Button-Click-Event. And END is valid pb-method to end program as in the good old times
Originally Posted by
Chris Boss
...
In PowerBasic to set a controls caption for example would be like this:
CONTROL SET TEXT hDialogHandle&, ControlID& "Some text"
???
this can not be called easy.
Easy would be:
myButton(123).Caption = "some new caption" ' (within same code unit)
' at maximum:
myDialog.myButton(123).Caption = "another caption" ' ( from other unit/module/anywhere)
Bookmarks