VS 2008 Sending SMS Throught GMS Modem?
Aug 9, 2010
I need develope an applications for send SMS via PC.It can be by Email, cause the computer many times doesnt have connected to the internet.Its necessary be by SMS.So, I think use a huwaei E220, and try some code googledit.The question is, my Huwaei doesnt appear in the COM ports, and I need one for comunicate.
View 1 Replies
ADVERTISEMENT
Nov 16, 2009
i try but need cannot be send these are my coding
Dim objfrom As MailAddress
objfrom = New MailAddress("my@hotmail.com")
Dim objto As MailAddress
[code].....
View 2 Replies
Mar 12, 2009
i,ve been searching for sending sms code using gsm modem,but i still coudn't find..is there anybody can give me the code or suitable link for me to get sample code?hope got reply as soon as possible because my due date for my project is 2 weeks to go.
View 4 Replies
Aug 9, 2010
I have a problem in VB, I've never seem that.. Waht a confused thing... In the application I was using for send SMS to many conatiners, I use this
[Code]....
View 3 Replies
Sep 17, 2011
SMS Sending application in vb.net using GSM Modem of Mobile & AT Command where mobile numbers are dynamically coming from sql server database.
View 1 Replies
Jul 11, 2009
I am trying to dial a computer from another computer using Modem for sending files and messge.Follwoing is the code done in dialing computer
Text1.Text = "Test string from App1 "
Number$ = InputBox$("Enter phone number:", "Number$")
If Number$ = "" Then Exit Sub
Temp$ = Status
[code].....
But after the dial tone, i am getting the exception "CTL_E_GETNOTSUPPORTED " at the line MSComm1.Output = Text1.Text?
View 6 Replies
Oct 12, 2011
I am attempting to call a remote modem using a local modem connected via USB. Programming language is VB.NET and I am using the SerialPort control to talk to the modem.
Communication is as follows:
I send: ATZ0[CR]
Modem responds: ATZ0[CR][CR][LF]OK[CR][LF]
I then try to dial a number:
I send: ATDTnnnnnnnnnn[CR] where nnnnnnnnnn is a valid number
The modem responds with:ATDTnnnnnnnnnn[CR][CR][LF]ERROR[CR][LF]
All other commands seem to work without any issues
For info the modem is a MultiTech MT5634ZBA-USB-V92
If I use hyperterminal and type the same commands in it works as expected and dials the number, so it must be something I am doing in my code, possible some setup in the SerialPort control
View 5 Replies
Oct 27, 2009
(from scratch as I've not done this before) how I can stream live through modem-to-modem connection. The modem here refers to dial-up modem (PSTN modem), there is no internet/lan involved.It will be 2 programs, the first is to transmit real-time video from webcam, and the second is to remote video from the first.
View 5 Replies
Sep 2, 2011
i need to develop a web application (aspx) wherein the data connects to a GSM Modem and gets and sends some string to the modem. i have absolutely no idea where to start and how to start. direct me towards a proper page / code wherein i can understand the basics of connecting.i have the vb6 code for the application which used Winsock but the guy who has developed the software is unable to explain anything to me about .net
so i am stuck here with absolutely no idea as to how to do it.
View 2 Replies
Jan 5, 2010
I have two arraylists that contains links in one and the root url in the other. Sometimes the lists dont equal in number and I would like to iterate through the links list and if it contains a matching root url add it to a third list but also avoid any duplicates. I tried this but am not getting consistent results.
[Code]...
View 2 Replies
Jul 19, 2009
Function PostWebservice(ByVal AsmxUrl As String, ByVal SoapActionUrl As String, ByVal XmlBody As String) As String
[Code]...
View 2 Replies
May 24, 2012
am converting some excel macro to vb.net, and it's almost done, but when i am looping throught +- 3000 rows and checking with 2 sheets it takes about 3 hours !
Dim Site1 As String
Dim Site2 As String
Dim Group1 As String
[code].....
View 2 Replies
Dec 12, 2011
Hi, I'm trying to develop a VB GUI that allows the user to download assemler code (Hex file) into microcontroller via a LAWICEL CANUSB.
I can now send signle message(8 Bytes.: example t1F0200081122334455667788, with ID:0x1F02000, DLC: 8 Bytes and Data:1122334455667788)
[Code]...
View 11 Replies
Jun 29, 2009
I am using the code below to test whether the user is connected using either a wireless or LAN connection. i.e. that the cable is plugged in, or the wireless is switch off. The code works fine for this. However, if you can spot any potential problems with this or you know of a better way I would be interested to learn more.
[Code]...
View 6 Replies
Jan 7, 2010
I am confused by this error message... '_TagName cannot expose type 'basConstGlobals.TagInfo' outside the project through module 'basTest' ?i get the blue line in the 'basTest.WTag Function defination...I have a module....
Module basConstGlobals
Public Enum PType as Integer
PT_UnKnown= 0
PT_Discrete = 1[code].....
View 1 Replies
May 27, 2012
I am trying to Send an Email with an attachment (using Gmail) but I keep getting errors like "Operation Timed out" or Failure Sending Email". It was working earlier today but I found out that i needed to add Using statement because the email was having a file open that had to be deleted after it was sent but afterwards it doesn't work.
Here's what I have (Portion of it):
Private Sub SendMailOneAttachment(ByVal un As String, ByVal pass As String, Optional ByVal smtp As String = "smtp.gmail.com")
Using oAttach As Net.Mail.Attachment = New Net.Mail.Attachment((Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) & "\" & My.Computer.Name & "_" & fName & " .zip"))
Dim client As SmtpClient = New SmtpClient(smtp)
[Code] .....
The ports are correct I believe, no firewall up on my PC...
View 1 Replies
Mar 4, 2010
Which is better for Sending Files/Sending Images/Msg for P2P Chat?
View 1 Replies
Aug 29, 2011
I have done a lot of searching in this forum which regards to my topic and it turns out that i'm kinda confused.. considering that i don't have any experience when comes to ports and stuffs. So i made my own thread for me to be on the right track..
[Code]...
View 5 Replies
Mar 1, 2009
is there anyway to send an email in visual basic ? like i have a section where users of my app can send feedback to me is this possible?
View 3 Replies
Mar 11, 2010
I have this code below and everytime I run it I get this error.
Private Sub SendEmail(ByVal sender As Object, ByVal e As EventArgs) Handles Button2.Click
Email.To.Add(Settings.txtTo.Text)
Email.From = New MailAddress(Settings.txtFrom.Text)
Email.Body = "Email Body"
[code]....
The error I get is: The parameter 'addresses' cannot be an empty string. Parameter name: addresses And it's pointing to the Email.To.Add() section.
View 3 Replies
Sep 21, 2009
I've been able to create and send an e-mail using System.net.mail. But it appears that the message isn't being sent until the application closes. This causes two major problems for me.1) When the user tries to send a second message, I get the following error: a generic error occurred in GDI+. I believe this is caused because I'm creating and sending a screen shot. If I take out the screen shot the error goes away. The screen shot is nice but not necessary. I can work around it, if I have to.
2) I am using the e-mail to provide notification that a process has been completed. The sender may continue to do other work while in the application -- including sending an e-mail to another recipient.
What do I need to do to get the e-mail to be sent before the application is closed?
View 5 Replies
Apr 14, 2009
I've got a client/server communicating nicely using TCP to send text strings and to parse and act upon the messages at either end, but now I want to be able to send small files. I thought it would be as simple as reading the contents of the file into a buffer and sending that buffer as if it was a message but obviously not. When I retrieve the message at the client end I get "System.Byte[]" so its given me the variable type and not the actual contents of the array I thought I'd passed in!
My Sending code is this :
Public Sub SendFile(ByVal Filename As String)
Dim sw As IO.StreamWriter
Dim fs As IO.FileStream
[code]....
(NB I did search for this within the forum and found some examples but they just didn't fit very well with the framework of what I'm doing, such as creating a 2nd tcp channel to handle file transfers?
View 5 Replies
Nov 11, 2009
i have hit a hiccup in a program i have been working on, and i need to know how to send emails with aol, as apposed to something like gmail. I was wondering if anyone knows what the aol sms port and host are, and how one can use them to send emails. (does anyone know how to send emails with aol?)
View 3 Replies
Dec 21, 2009
Is there a way to pickup the SMTP server address, Username and Password for their E-mail account so that an e-mail can be sent directly from the application without having to use their e-mail application.
View 3 Replies
Apr 23, 2012
I want to be able to create a feature in my application that automates an email to be sent using the address(s) from a database, makeing it much easier for the user not having to worry about typeing and email or finding the email address as this is stored in the database, could anybody help, or direct me to any tutorials
View 1 Replies
Jul 21, 2009
is it possible to send emails with vb? i searched some other websites and they say its possible but none of them say how
View 5 Replies
Dec 10, 2009
I have a program that I collect data using a com port. I display that using special visual controls - no problem here.
What I would like to do is to send this same information out over the network via ethernet to another PC located in another room.
I presume I would have to have another copy of the program on the second pc as the information is simply duplicated but I am not sure how to get the data out of one to the other
View 2 Replies
Mar 28, 2009
I am developing Sms Project in vb.net.I can Send and receive Sms Easily. I can attented Incoming call and dial. but not hearing and talk. I connected with com Port. This is possible or not for talking and hearing
View 2 Replies
Dec 20, 2010
where can I find an information/learn how to comunicate with fax modem to create something very simple for fax sending?
View 1 Replies
Jan 26, 2009
I'm a novice and after toying with some basic ideas on how to talk to a modem with VB.net, I think there may be much more to it than I realize. (?) I know my modem is fine, I can use hyperterminal to call out on it with no problem.So, how involved is it to talk to a modem? My initial thinking was that I could simply talk to it via a serial port using AT commands sent and rcvd as a string.(?)My modem is set up with COM2 9600 8n1.I've setup a serial port with the same parameters in my code.
View 13 Replies