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.
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 currently have a web application, that has certain filters and on those filters a method from a class library is called and the respective activities are performed like processing records, placing files on certain locations on different servers.
I want to automate this process.
How can I achieve this and what is the best possible way?
I read about various options windows service, Cache Item Call backs, Workflows.
But not able to evaluate.
Please help me.
You can create a console application for the process and then schedule it through Windows Scheduler. Or you may look at Quartz.NET - Enterprise Job Scheduler for .NET Platform
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 would like to know the C# code or webservice to send SMS in English as well as in different Indian languages such as Hindi, Tamil, etc. I have used mVaayoo to send SMS in English from my application.
I would also like to know how to input the Indian language through my web form. Please suggest any site/gateway that provides the API/webservice for use in sending multi-language SMS.
Follow the below link.
You have to open an account on the free sms sending website as mentioned in the post.
http://reddyinfosoft.blogspot.in/2012/04/sending-sms-via-c-using-way2sms-160by2.html
download the dll that they provide. Include the dll in your code(add reference).
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/
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.