C#, does it have a prompt box? [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Does C# have a code that makes a prompt box appear so that you can insert a value on it?
Like a messageBox but with a text field, like the one that javaScript has.
Or do I have to create a form for it?

You can use InputBox method from VisualBasic Interaction class.

Related

In C#/XAML/WPF, how do I make a button appear only if another button is clicked? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I was wondering how to do this. I am trying to learn how to make a Metro-style app for Windows Store.
Attach an Click event to the source button
In event handler mark `button2.Visibility = Visibility.Visible;'
As simple as that.

What are accelerators in C# and how do I use them? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
In my online course I'm asked to put a label (lblQuestion with accelerator) and ComboBox on a form.
Putting a label and a combo box on a form is simple enough in VS 2010, but I am not sure what an accelerator is and how I use it?
For setting an accelerator you will use & character in front of the letter of your label, that you need to make available as an accelerator. See here: http://blog.csharphelper.com/2012/05/30/use-accelerators-on-labels-and-buttons-in-c.aspx for more details.

How to generate Dynamic Template field in Asp.net with c#? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am new for this so that asking these questions..
How can I generate a Dynamic Template field in Asp.net with C#?
You can use DynamicallyTemplatedGridViewHandler implementing ITemplate interface.....For details, have a look here

How can I associate files using c#? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I've made a program using C# and I want know how to associate file which output to open by using this program.
this program made files with an extension .fct I want this files with that extension open in my program when it double clicked
You might want to look into this: http://mel-green.com/2009/04/c-set-file-type-association/

How to translate this code from Windows Form to WPF? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
http://www.gutgames.com/post/Adjusting-Brightness-of-an-Image-in-C.aspx
Can anybody help me please?
The graphics class does not work in WPF
It doesn't need to be changed. Use an Image element, set the source in code to the resulting bitmap type.

Categories