What can I use instead of "picture box"?

  • Thread starter Thread starter Carlos Villaseñor M.
  • Start date Start date
C

Carlos Villaseñor M.

Hi everyboy

I'm new to VB. NET, and I need to know what instruction can use instead
"pictre box" control, I need to regenerate the picture in a window after
that another window was superimposed or activate another application, or if
the window was hidden, this feature in VB 6.0 was performed with
"autoredraw".What control can be used instead?

Thanks in advance

Carlos Villaseñor
 
Carlos Villaseñor M. said:
I'm new to VB. NET, and I need to know what instruction can use instead
"pictre box" control, I need to regenerate the picture in a window after
that another window was superimposed or activate another application, or
if
the window was hidden, this feature in VB 6.0 was performed with
"autoredraw".What control can be used instead?

Use a panel control and add the drawing code to its 'Paint' event handler.
 
Thanks, but I would like to get an sample, Can you tell me where can I find
that?

Thank you

Calor Villaseñor




Use a panel control and add the drawing code to its 'Paint' event handler.
 
Carlos Villaseñor M. said:
Thanks, but I would like to get an sample, Can you tell me where can I
find
that?

Check out the documentation on the 'Control.Paint' event.
 
Back
Top