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).
Related
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
Long explanation made short, I NEED to supply a proper user agent when posting data to my server; Why? I don't know entirely.
In any case, I've read that making a web request prior and grabbing the header from it would suffice, but I'd like to know if there's a more cleaner/sufficient method.
You can indeed just grab one from your favourite browser, or pick one from here.
The user agent string is just that - a string containing various info about the browser. So it's just a matter of passing it along with you request. If your program will live for a while, I'd try to pick one that's as generic as possible.
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 read in a .cs file from my project which contains a code sample for use by clients of my company's API.
What's the best way to read in this file and pretty-print it to the page with indentations etc. The goal is to just have the code on the page automatically change when I update the contents of this file so that the code sample will always be up to date as published on the live site.
An example of what I'm attempting to accomplish is something similar to this: http://msdn.microsoft.com/en-us/library/vstudio/ezwyzy7b.aspx
I'd use this...
http://www.manoli.net/csharpformat/
http://www.manoli.net/csharpformat/CSharpFormat.zip
It transforms C# code into html. You can read the file run it through the CSharpFormat then output the HTML to a panel in the page.
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
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.