is there a "About box" of Java swing in C#? [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.
I'm looking for an control or something like to About box Java Swing in C#.
UPDATE
as in the pic:

if you're using VS, choose in menu: project > add new item > about box in visual studio installed templates.
and then:
var aboutBox = new AboutBox1();
aboutBox.ShowDialog();
I hope this help!

Related

Create a Custom MessageDialog with scrolling [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 have to show a popup in my Windows 8 C# app that displays a long list of information.
I want to do this in the same style as MessageDialog, but MessageDialog does not allow scrolling so I need some form of custom MessageDialog, but am not sure how to do so.
Callisto will help you with custom message dialog
GitHub
NuGet
Visual Studio Gallery

execute photoshop action from VB UI [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 am new to this forum, so please excuse me if i ask any silly question.
I am trying to run photoshop action from VB interface. can any body guide me on how should i proceed.
thank you
to interact with photoshop in c# you can see this page, the simple and basic manual to scripting photoshop

Too fuzzy text WPF on XP [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 have a problem: on xp in my WPF application text is too fuzzy, how can i fix this? On Windows 7 all ok!
Thanks!
If it is WPF4 try to put: TextOptions.TextFormattingMode="Display" attached properties to the window(s)
with text.

C#, does it have a prompt box? [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.
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.

How to make custom .exe of a Windows application in 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 11 years ago.
How can I make custom .exe of a Windows application in c#?
Just create new project in visual studio with type "Windows Forms Application" or "Console Application". And the output will be "EXE" :-)

Categories