[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: How can I assign jpg file name(picFileName parameter) to microsoft control picturebox1.

Status
Not open for further replies.
F

frank.meulblok

Guest
Use: pictureBox1:ImageLocation = picFileName. or pictureBox1:Load(picFileName). Do that in the Constructor, after the call to InitializeComponent. Modifying the InitializeComponent method itself for this kind of thing is asking for trouble, since that is auto-generated by the tooling for the designer. You risk breaking the designer, or losing your added code.

Continue reading...
 
Status
Not open for further replies.
Top