Search found 2 matches

by atari800
Thursday 30th June 2022 7:07pm
Forum: Beginners
Topic: How to put objects [labels] within forms
Replies: 2
Views: 1485

Re: How to put objects [labels] within forms

I replaced this

Code: Select all

With Labelx = New Label(me) As "Labelx"
with this

Code: Select all

With Labelx = New Label(hForm[siCount]) As "Labelx"
Labels are showing up in forms
by atari800
Thursday 30th June 2022 2:48pm
Forum: Beginners
Topic: How to put objects [labels] within forms
Replies: 2
Views: 1485

How to put objects [labels] within forms

I am creating forms dynamically and want to place objects (labels, buttons, etc) in them I have no problem creating the forms, it is attaching/inserting objects ' create forms hForm = New Object[8] For siCount = 0 To 7 With hForm[siCount] = New Form .Name = "bForm" .X = siCount * 50 .Y = s...