Sending A Fax from a VB.Net program - vb.net

I noticed that in Windows 7 there is a Program called Windows Fax and Scan that enables you to send a fax from a computer that has a fax modem.
I would like to do this from within my VB.Net WinForm application. Has anyone done this? Do you have an example you could post or point me to?

I ended up using a Commercial Porduct call FaxMan Jr.

Related

Tapi code for analog phone line

I have Bell phone line which is analog not digital. I am able to send faxes through windows fax and scan software provided by Microsoft but my tapi application, which works fine with digital lines (like magic Jack), is not working with my Bell phone line. I wonder is there any special code or trick that can work for dialing phone? My point is when Windows Fax and scan software is working on same line than why my application is not working. I have tried couple of application of third party tool but no success.
Any help would appreciate.
Thanks
You can add T prefix before you dialing number to set mode into Tone and send analog not digital signal.
TCountry(AreaCode)SubscriberNumber

How to send video via MMS? Vb.net

I'm currently writing a program where I want to send a 1MB video (.avi) via SMS from a VB.net application. I've seen a lot of SMS code where it is using a SMTP server (such as smtp.gmail.com) and sending an email to (phonenumber)#mobile.att.com (or whatever carrier). This will be an MMS.
In those cases, usually the user is sent just text. What is the best way to send a video file to that phone number, possibly without knowing the carrier? What I have seen suggested is a third party application, but the majority of them use only text.
Any suggestions?

How to Make Contact Form in VB .Net App?

I would like to integrate a ticket or support into my VB .NET app but I dont know how to do it properly. I would like that when someone opens the support ticket they can send like a regular email to my email.
I just need help with how to send email from the app to my email address.
Is this possible, and how would you solve it?
Look at using the System.NET.Mail namespace. The sending will be done via the SMTPClient class built into the .NET Framework.
You'll have to use a mail server like GMail I'm guessing, unless they have their own SMTP server (but you probably won't want the hassle of setting up and storing details for different clients' servers).
There's a good example of this here, which includes VB.NET and C# examples: http://www.codeproject.com/Articles/20546/How-to-Send-Mails-from-your-GMAIL-Account-through

Service that takes an e-mail or text message and makes a voice call converting the text to speech?

I am writing a server monitoring application that I'd like to alert me with a voice call if the server doesn't respond correctly when tested.
The application currently sends a text message to my mobile phone, but that hasn't worked as well as I would like, because I don't always have my mobile phone with me, or I don't hear it.
I'm wondering if there is a service to whom I could send an e-mail or text message and have it place a voice call to one or more phone numbers and read the message?
Thanks,
Steve
Check out Twilio
http://www.twilio.com/
They have a nice simple api that can do the voice calls. You would need to write some simple code to read the email and then feed it into their api.
Hope this helps.
Bob

Send SMS from a PC using VB.NET?

hai how to send sms with sender name instead of phone number using the AT Command sets in vb.net 2005.
is this is possible give idea to me.
thanks
Most AT commands for mobile phones are specified in 27.007, however the SMS related commands are specified in 27.005. I do not remember if the sms command supports name as input, but you should be able to use AT+CPBF to look up the number at least as a two step solution.