Create Dynamically Visual Objects in PowerBuilder
Create StaticText
1 2 3 4 5 6 7 8 9 10 | statictext st_1 // declare the statictext variable st_1 = Create statictext // create the statictext object st_1.X = 100 // x position of the object st_1.Y = 100 // y position of the object st_1.Height = 100 // height value of the object st_1.Width = 1000 // with value of the object st_1.Text = "ProgrammingMethodsIT.Com" // set text of the statictext Parent.OpenUserObject( st_1, "st_1", 50, 100) |
Find Projects On Github click here
Attachments Objects :
Good Luck!