Problem with forms made with form designer in vb.net and Visual C#

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I make a form with the form designer the result is a form with
significantly fewer properties and meathods than if I made a form from
scratch.

The properties and meathods I currently have in Visual C# are
:ActiveForm, ControlAccessibleObject, ControlCollection, DefaultBackColor,
DefaultFont, DefaultForeColor, DockPaddingEdges, DockPaddingEdgesConverter,
Equals, FromChildHandle, FromHandle, GetAutoScaleSize, IsMnemonic, Main,
ModifierKeys, MouseButtons, MousePosition, ReferenceEquals, ReflectMessage,
ScrollStateAutoScrolling, ScrollStateFullDrag, ScrollStateHScrollVisible,
ScrollStateUserHasScrolled, ScrollStateVScrollVisible

In VB.Net I have : ActiveForm, ControlCollection, DefaultBackColor,
DefaultFont, DefaultForeColor, DockPaddingEdges, DockPaddingEdgesConverter,
IsMnemonic, Main, ModifierKeys, MouseButtons, MousePosition,
ScrollStateAutoScrolling, ScrollStateFullDrag, ScrollStateHScrollVisible,
ScrollStateUserHasScrolled, ScrollStateVScrollVisible

The properties that I am missing that I want the most are Visible and
Show . If anyone can help I would appreciate it greatly.
 
Back
Top