Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
is possible to extract flv, mp3 .. etc. c# on a site using windows form c#???
how can I do if it is possible??
Thanks in advance for answers
Yes - however, don't try using any Windows tools to do it. Instead, use a wrapper around FFMPEG:
Using FFmpeg in .net?
In my testing, FFMPEG is far more useful than Windows Media services and far more reliable.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
I am currently trying to work on a project in c# in which I want to access/browse the remote drives of a system like a local drive , can anyone help.
thanks
have you tried using "Map a network drive" option in Windows Explorer? it works exactly like u have described, and it doesn't need to use webservice (from the tags u have chosen for the question).
you can programatically map a network drive using http://www.codeproject.com/Articles/90143/Mapping-Network-Drive-using-C
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have an issue to create a C++ application and C# application those two must have a shared region between them, so both of them can Read/Write from/to this region. if you have any documents/solution can you share it to me?
thanks in Advance.....
using a named pipe so the two processes can communicate (C# server and C++ Client)
you can also see "Sharing Files and Memory" at MSDN.
You can use memory mapped files to communicate between applications, along with mutexs and events to single between applications.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Currently, I am developing Windows Store Apps. I want to Ask, how to show driving direction in my application?
I want to apps detects current location and I have destination coordinates
thank you very much!
Simple Google search leads me to Driving route path direction with Bing Maps in C#/XAML in a Windows 8 app
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
How can I have the resize handles (the little squares or circles on the corners) during run time in my controls? Is there a component that allow me to have it? Or someone has a piece of code to do it?
If you mean windows form applications, Try these links:
http://www.codeproject.com/Articles/17245/Runtime-Control-Resizer
http://www.codeproject.com/Articles/24096/Drawing-Resizable-Controls-at-Runtime
http://www.codeproject.com/Articles/13184/Runtime-resizable-controls
You mean something else, Comment this answer to talk about.
Hope to be helpful
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Improve this question
I need to create a registration form and when a user registers I would need to take that data and convert it to a PDF document and email that document, how would I go about doing this?
I am using Visual Studio 2012, .NET 4.5, ASP .NET, C# and HTML
You need to look at a library like PDFSharp or PDFCreator