AT Command To Send Scheduled SMS?
May 25, 2012Is there any AT Command to send Scheduled SMS from PC via GSM Modem?
View 1 RepliesIs there any AT Command to send Scheduled SMS from PC via GSM Modem?
View 1 RepliesI am designing a software for sending SMS's.One of its feature which i would like to add is for a scheduled SMS.Can anyone help me as to how shud i let my users send a scheduled SMS?
View 1 RepliesFirst let me say that I am not sure whether or not this should go in this section or the API section, and if it needs to be moved I apologize. My issue is fairly straight forward, but for some reason I cannot get it to work.
I am trying to send a command to a command line and then submit the command. I have been trying without success to get this to work in v2008 Express and v2010 Express, Here is the code I am trying to us:
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" ( _
ByVal lpClassName As String, _
ByVal lpWindowName As String _
[Code].....
I am currently using psexec.exe from PsTools to send a command to a remote system to fire a command through a command prompt however I am finding that the shell I am doing does not seem to like the spaces in the path.
[Code]...
I am trying to send a command to the external command line (cmd.exe) from the Windows form application that I'm writing in VB.NET (using VS2008).
I can only access the external program thru the command line (its not my program) and I must do so from a form app.
I am trying to use the following code. I am able to call a cmd.exe window, but I can't pass the command line my command.
Using mp As New Process
With mp.StartInfo
.FileName = "cmd.exe"
[Code].....
I use below code to run DOS command Net send through VB code but not work I need help to solve this problem Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code]...
I am new to programming and VB.. so go easy my buffer is about full :) I am trying to talk to a box with serial port and only need to send the command in hex. here is the protocol for the device and my code below it to turn on the box. I am not calculating/sending the correct checksum because if I sniff the string being sent to the box from another piece of software that comes with it I get 04 1C 01 DF (spaces put in for clarity) and it works. my code produces 04 1C 01 21..
View 17 Repliesmy problem is i can't send command using pop3 in vb.net every time i try to send its nothing happen but i can connect in tcp client server and server reply +ok when i connect
View 10 Replieshow to creat a client and a server and pass text between them (like a messenger), and it works just fine
so my question is : how do I send a command to the server, for example, open a program (like notpad) or do tasks or search the remote pc or even shutt it down??
note that am not trying to make a trojan or anything like that, I have two pcs and I was just wondering how to do it ?
i have a textbox that my mouse double click's on so it highlight's the text and i need it to copy that text
sendkeys.send({^+C})
i know it's something like that but it's not working for me i just need to send ctrl+c to copy it and i dont know the code's
EDIT> k someone gave me the code it's
System.Windows.Forms.SendKeys.Send("^c")
now i need the space key what is the code for it i tried this and it dident work
SendKeys.Send("{SPACE}")
I am trying to delay the execution of the send key command. In VB script, it was relatively easy:
obj.sendkeys "{enter}"
wscript.sleep 1000
obj.sendkeys "{tab} {tab}"
When I do it via VB express, it is clumping the code together. For example
Threading.Thread.Sleep(5000)
SendKeys.Send("enter was entered ")
Threading.Thread.Sleep(5000)
SendKeys.Send("double tab was input ")
Instead of pausing for 5 seconds, typing the keys then pausing for another 5 seconds, it pauses for 10 seconds and then immediately types the input. I tested this on notepad.
How do I replicate the sleep feature in VB script into VB? There appears not to be a sleep feature in VB Express 2010
I have a program that needs to see if it is already running and if so bring the other instance to the front and then close itself. Now I figured out how to see if another instance of the program is already running using GetCurrentProcess, but how do I tell the first instance to "BringToFront" from the second instance?[code]...
View 3 RepliesIn my application I have only one button . That button will open CMD then it will send a command into cmd , now after that command it requires an "enter key" to continue the process .I tried the shell command in order to access the command but then I couldn't press enter in cmd using my application
View 4 RepliesI am trying to send commands to Command prompt.The following code should open the text file I specified.However it opens several instances of the cmd window and also several copies of the text file. Sometimes the text file is not opened and if the file path is long, part of the file path gets inserted into my text file.[code]
View 1 RepliesI have an application that will open a command prompt (cmd.exe), and then types "ipconfig/renew". How do I send the enter key, to execute the command?
View 3 RepliesI want to exit my GUI application (vb.net 4) using a commandline parameter.I should send thive! from the commandline:
myapplication.exe quit and an already running instance of the application should exit.
Now, I have a mutex detection in place so that I can only have one instance of the application running at a time. It seems that if I send a commandline, it won't work on an already running application; it will only work on one that is launching.
I want to send a simple command, such as "v20" followed by a carriage control character, to a heating/cooling block connected to a desktop computer running Windows XP. I am able to get the commands to work within a terminal emulator. I want to compile a simple program that will be executed by software used to control a liquid handling robot.I've looked at the how to send strings to serial ports in visual basic page and modified that code ever so slightly to send the data that I want. However, it does not work and my heating/cooling block is not changing temperatures.
Here's what I have written:
Sub SendSerialData(ByVal data As String)
data = "n65"
' Send strings to a serial port.
[code]....
I have a shell extension made in .NET that creates folders (think of it as a context menu New -> New Folder option clone) and uses a InputBox to input the name of the folder from the user. Instead I want to send the rename command on the folder to the already open Windows Explorer window. It should be just like how Explorer lets us name a new folder:
On searching, I found this : Windows Explorer Shell Extension: create file and enter "rename" mode. It says to use the IShellView::SelectItem function with the SVSI_EDIT flag. How do I do that with .NET?
I have a need to construct a command Byte to send to another device using bit wise operations.There seem to be plenty of article on how to do this for indiviual bits using an OR'd constant but how do I do this for values that span multiple bits? eg "Bits 4-1" set the repeat count".so how to I inject a repeat count value of say 7 into my command byte?
View 1 RepliesI have a Zebra TLP 2844 Printer connected by USB to my computer. I want to send EPL Commands from Visual Basic .Net to the printer through the USB Port wich the printer is connected to. USB is a Serial port but IT IS NOT COM PORT. So, I don't want the method of connecting the COM port with VB.Net. I want a USB method or any helpfull idea or code.
I searched the net for many days but no solution was found.
Briefly, I want to print to Zebra TLP 2844 from Vb.Net over USB port.
I'm trying to make a program to send a command through a textbox when a button is clicked, THEN grab the output and put it into another texbox. If you could help i would be great full. This is what I have so far....
Public Class Form3
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Shell("C:DFUs-irecovery.exe")
[code]....
I am doing wrong? I am using VB2008/VB.NET to send a command (set to 4 volts) to a Tenma DC Power Supply over an RS232 cable. I don't have documentation from Tenma that lists the commands that the instrument understands, I got "VOLT040" from a program in an older version of VB that someone else wrote for this instrument. The code is below:
[Code]...
i am developing an application which needs to connect to a weighjng scale throug rs 232 and capture the output. after inserting the record however the pc needs to send the tare command to the weighing scale in order to set the scale to zero. now he tare character as far as i guess ia T i sent the command like this
serialport1.write(chr(27) & "T" & chr(13) & chr(10))
How can i send a POST command to a login form's action...in easier words. how can i login to a webpage without opening it in a webbrowser control and after that how can i send text from a vb application to a webpage(sort of like posting) im making an autoposter application.
If u dont know wot an autoposter is see this:
Quote:
This program posts inside many forums (you can choose). It's main objective is to allow a user to distribute their posts to many forums easily without opening each individual page on the in a web browser therefore you get more points to your filehoster's account.
Note: you must still create each forum's account manually.
If u want an example of an autoposter...go here [URL]
This is what I'm trying to accomplish: I have a Point of Sale application that integrates with a credit card processesor. I wan't to remove any user interfacing logic in regards to the credit card processor in the point of sale and add it to a application that sits in the background or system tray. I want to be able to send a command to the background app to popup a form for user input.
For example: User in the Point of Sale clicks a button "Credit Card" at this point it will send a command to the background app say "ProcessCC" which will pass a transactionid and an amount , this will open a form for the user to enter in the credit card information and submit the payment to the credit card proccessor.
Reason: I need to get a padss certification and don't want to submit the point of sale to do it. Rather send the simple background app that will control any credit card processing functionality such as encryption , storing etc. I know it can be done using sockets but was hopping for an alternative solution.
I'm trying to make a LAN IM client using the net send command and I was wondering if there is any way to capture the text of the messages received through net send and display them in a label.
View 6 RepliesI have a listview and on save or update of the database it saves the TicketID to the listview. It also shows all the prior tickets created in the listview as well. I would like to pass the very last entry ie in this case TicketID to a textbox so that it prints out a ticket with the ticketID for the user.
Don't really want to loop through all the other tickets in the listview since it could end up running into the tens of thousands of numbers.
I am using Visual Basic 2005 and Serialport class. My target device is a WinCE 5.0 Emulator.When I send bytes using serialport.write(byte(),offset,count), the serial port always output "0D 0A" between the bytes and after the bytes sending complete. like this:34 0D 0A A5 5A 0D 0AHow to stop ouput the '0D 0A"? It seems like a terminator "", I have tried to search the serial port settings but cannot find the proper setting. The seiral port is 19200, no parity, one stop bit, 8 bits.
Imports System.IO.Ports
Imports System
Imports System.Windows.Forms
[code]....
I am using VB2008 Express and am curious how to send a command via RS232 communications. The string that I need to send is 02h PON 03h. The start and end bits are 02h and 03h.
How can I convert 02h and 03h to its ascii form. In hyperterminal, I use the sequence {(hold)ALT 0 0 2} on the number pad to send the start bit.
I am using this code currently without the start and end bits
Code:
How can you do this? I want to have my program run every once in a while but I don't want to make it a service.
View 5 Replies