Anyone know where to find the dll to add to the project or the name of the dll??
C# - Input Dialog box
Collapse
X
-
-
Originally posted by DragonLordAnyone know where to find the dll to add to the project or the name of the dll??
Pull up Solution Explorer
Right click the name of your project
Select "Add Reference..."
The list of all your DLLs will show up...actually, it's a tabbed list displaying firstly the .NET managed namespaces, then COM DLLs which can be loaded using the interop (that's handled automatically when you select one of these). If you want to add a custom DLL, select the browse tab to go find a specific DLL on your machine.
Hope that helps -
Well I knew how to add a reference but you did help and let me know what is under the .net tab lol... didn't know those were the name spaces.
Well I know that there is an input dialog box for C# I just don't know under what namespace. How can i find that out?Comment
-
Well I knew how to add a reference but you did help and let me know what is under the .net tab lol... didn't know those were the name spaces.
Well I know that there is an input dialog box for C# I just don't know under what namespace. How can i find that out?Comment
-
Originally posted by DragonLordWell I knew how to add a reference but you did help and let me know what is under the .net tab lol... didn't know those were the name spaces.
Well I know that there is an input dialog box for C# I just don't know under what namespace. How can i find that out?
VB
Code:Dim sInput As String = InputBox("Hello", "Enter something fun.", "Type something")
Code:string sInput = Microsoft.VisualBasic.Interaction.InputBox("Hello", "Enter something fun", "Type something");
Comment
-
Add SimpleInputDial og.cs file to your project which will find here: http://www.oronno.co.cc/C-Sharp-Tips-and-Tutorials.php
Now, simply ask user to give input text by following line.... [ just like MessageBox.Show () ]
Code:String inputMessage = InputDialogBox.Show("Enter Text:");
Comment
Comment