When I drag and drop such an object in my app window in the IDE it works fine
Now, I’d like to create such object “on the go”. When my user presses a button for instance. Therefor in a button press event I wrote this code:
var pop As mPopupMenu
pop = new mPopupMenu
pop.Name = "Yes"
pop.Left =314
pop.top = 200
pop.Width = 50
pop.Height = 20
pop.Visible = True
Window1.Refresh
Yes, but as a beginner I need the vocabulary to search into the documentation.
I looked a many different things like “New” which seemed to do the job… Anyway documentation is good but laks some feateures like the possibility to bookmark a page for instance.