Console in Forms application?
Is it possible?
my code:
[PHP]Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim a As New Console
End Sub
End Class[/PHP]
comes up with:
[PHP]Error 1 Type 'System.Console' has no constructors. C:\Users\Win7Sig PC\Documents\Visual Studio 2010\Projects\glass browser\glass browser\Form1.vb 4 13 glass browser
[/PHP]
Add a module and put the module as startup 'form'.
Use System.Environment.GetCommandLineArgs(Sub "Main") to check whether parameters exist.
I dno how to have that console DIRECTLY in your form.