Accessing/browse remote files [closed] - c#

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

Related

C++ application and C# application having shared region/memory [closed]

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.

Driving Direction Windows Store Apps with Bing Maps [closed]

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

Hide Network drive from command line or VB Script [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
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.
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
Improve this question
We have a situation where we want to hide network drive suppose "L:"
Can this be achieved through command line or VBScript or C#
You can try to modify the "NoDrive" key in the registry.
This article explains it:
http://www.howtogeek.com/howto/windows-vista/hide-drives-from-your-computer-in-windows-vista/

I want to display icon of running process with its name when i am displaying the list to running process in C# [closed]

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
Hi I am working on windows form.
I am displaying the number of running processes across multiple virtual desktops..It is working fine. no problem in that. Please see the image...
Now i want to display the icon of respective process with name.
So can anyone tell me it is possible or not.
If YES then please give some idea. so i can achieve it.
Thanks for helping me.
You can get the icon using Icon.ExtractAssociatedIcon
foreach (var process in Process.GetProcesses())
{
var icon = Icon.ExtractAssociatedIcon(process.MainModule.FileName);
}
See: Get File Icon used by Shell for more information about icons.

is possible to extract flv, mp3 .. etc. c# Windows Form [closed]

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.

Categories

Resources