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/
Related
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 task in my project,I want to develop a help file(f1) for my project,i dont have any idea how can i achieve this task please help any one.
You can create some HTML pages and then convert them into a CHM file , When user press F1 , try to open it , That all you should do
Good Luck
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.
By .NET with C#, I know all the processes those are running on my OS. But how to know if they are using any of the Network Interfaces? I also have the list of Network Interfaces that my machine has, by C#.
Any idea?
You can use this CodeSnippet:
www.timvw.b
Thats the Method you need:
ManagedIpHelper.GetExtendedTcpTable(true);
There you will get all PID, which you can parse to ProcessNames.
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.
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 12 years ago.
any idea how can I do this I dnt want to manage bytes[] of each files of folder.
Thanx
The question makes no sense. Folders do not have any binary content, only files do. You will need to enumerate all files in the folder and open them separately.
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 12 years ago.
is there any working/reliable open source TCP/IP Server App in C#?
You don't have very specific requirements, but there is a whole bunch at Codeplex(search:server+socket), just pick one that suits your need there.