Jump to content
Xtreme .Net Talk

cnlambert

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by cnlambert

  1. Anyone know how to make a Pocket PC app with a customized icon? I have the application icon in the project selected and have it included in the project as content, but when I deploy the app, the progam shows up with the default "box" application icon. Any ideas?
  2. if you mean like such: dim ctl2 as new ctl1 then, no, because the control is dynamically created during runtime. When I set the new control equal to the existing one, both are disposed of when the 2nd is removed from the form. like such: NewForm_Load Event dim ctl2 as new controltype ctl2 = OrigForm.Controls(ControlIndex) then, on NewForm.Close, ctl2 and OrigForm.Controls(ControlIndex) are destroyed.
  3. I searched and I searched but found none... Anyone have a clue as to how one would go about creating a duplicate control from a dynamically created one in .NET? I need to put another instance of a control from one form onto another and make it full screen, then after the full screen is closed, the original control is unaltered. Also, any ideas how I might better handle this would be most appreciated!
×
×
  • Create New...