How to remove the visual studio solution version icon? [closed] - c#

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 15 hours ago.
Improve this question
enter image description here,I want to remove the solution version icon, but I don't know how to deal with it.
I want to remove the solution version icon, but I don't know how to deal with it.

Related

How to get list of installed input languages (keyboard layouts)? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
The questions I saw here is mostly about getting current input layout, but I need list of all installed input layouts.
It's like when we install Windows we choose additional input method for our native language and we usually has 2 of them. And I need to know it.
foreach (InputLanguage c in System.Windows.Forms.InputLanguage.InstalledInputLanguages)
{
Console.WriteLine(c.Culture.EnglishName);
}

access to the files of bin folder on c# (convert .dll to .cs) [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I was working with my PC, and during developing my project the system had restarted, the problem is I had to lost my last code.
So is there any solution to use "last project" with "new bin-folder", my mean is can I combination those files with project ?
Thank you
You should probably have a look at this decompiler and give it a shot:
http://www.jetbrains.com/decompiler/

How to open a file using a text path [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to write a code in click event of Open button which should Open File Specified in Textbox.
Is there any code wich can do this Task?
maybe System.Diagnostics.Process.Start(textBox1.Text)

How do I put an image in VisualStudio with C#? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I really don't know how to put an image in my form.
Can someone help me out?
If it is WindowsForms that you are using, you can use the PictureBox control.

How to create an msi from a Windows Forms project? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I am trying to create an installer for a project which I recently completed. I also used a database(SQL Server Compact), but I don't know much about how to do it. I've read some articles on MSDN, but they weren't clear to me.

Categories