J
jdlwright
Hi, if someone could answer this please I would be grateful - I have
looked online but can't find the answer.
In C# I can do this for example
m = new System.Windows.Forms.Form()
but of course in VB.NET the same would be wrong
m = New System.Windows.Forms.Form()
because of the default namespace, I'd really be saying
m = New DefaultNamespace.System.Windows.Forms.Form()
okay, fair enough, so how do I get out of the default namespace (or
can I even)?
eg. something like
m = New Global.System.Windows.Forms.Form()
Sure I can do
Imports System.Windows.Forms
.....
m = New Form
but sometimes I'm too falsely lazy to hit home, type it in and then
ctrl -
Thanks
Jim
looked online but can't find the answer.
In C# I can do this for example
m = new System.Windows.Forms.Form()
but of course in VB.NET the same would be wrong
m = New System.Windows.Forms.Form()
because of the default namespace, I'd really be saying
m = New DefaultNamespace.System.Windows.Forms.Form()
okay, fair enough, so how do I get out of the default namespace (or
can I even)?
eg. something like
m = New Global.System.Windows.Forms.Form()
Sure I can do
Imports System.Windows.Forms
.....
m = New Form
but sometimes I'm too falsely lazy to hit home, type it in and then
ctrl -
Thanks
Jim