Input Boxes in VB.Net2003
-
Can anybody tell me how to call an InputBox from a console app in VB.Net2003. I have followed the info I can find on MSDN and various reference books -- several of which don't even mention input boxes. This is not a critical thing, I'm just exploring the Language a bit. When I try calling it like: Dim Name As String Name = InputBox("Name") from a console app VS.Net converts the text and complains that "inputbox" is a namespace? :confused: If I call it from inside a WinForm project it demands I call it like: Dim Name As String = InputBox("Name") If I call it like this: Dim Name As String Name = InputBox("Name") VS.Net says it's missing the declaration for Name -- even though it one line above?:wtf: Anyway, like I said before this is not a critcal issue, just somewhat baffling. Any thoughts or enlightenment would be appreciated. Warm Regards, The Boolean Operator aka Boo