Hi,
Im trying to load a form from sub main in my module like this:
Module MainModule
Sub main()
Dim StartForm As MainFrame
StartForm = New MainFrame()
StartForm.Show()
End Sub
End Module
But the form just blinks for a second and then it dissapears??
Why?...
more >>
I have been trying to create some semblance of
transparency in my Controls (Panels, Buttons etc) by
sublassing and adding the following lines in the Sub New()
Me.SetStyle(ControlStyles.SupportsTransparentBackColor,
True)
Me.SetStyle(ControlStyles.UserPaint, True)
Me.BackColor = Color.Tran...
more >>
Hi,
I encountered a very strange behavior in my WinForms app
today (I used VB.NET.) I have a Toolbar control, which is
associated with an ImageList control. Each button on the
toolbar points to a corresponding image of the ImageList.
At design time, VS.NET shows the images on toolbar
bu...
more >>
Is it possible to embed a Windows Forms Control written
in C# into a web page like an ActiveX or java applet can
be?...
more >>