hi
i m using MPE in my VB application to send mass sms it takes data from access database then work in loop
StartDoc = ShellExecute(0, nil, "C:\Program Files\MyPhoneExplorer\MyPhoneExplorer.exe", msg, "C:\Program Files\MyPhoneExplorer", vbHidden
Sleep 20000
its work fine but few problem
1.if message is to long then its become all mess up
my question how do i control this , wait untill the last msg send and then take next message
increasing sleep time is one option is there any other way
2.Can i hide that send window ??
3.incase of error dont disply message and just move to next sms
thnx
Time limit problem
You can send the message throught a batch-file: http://www.fjsoft.at/forum/viewtopic.php?t=7609
In this case you get no errormessage and you can detect that the operation is done when the batchfile has changed (cause MPE does save the results in the batchfile)
Its not possible to make the process invisible
In this case you get no errormessage and you can detect that the operation is done when the batchfile has changed (cause MPE does save the results in the batchfile)
Its not possible to make the process invisible
ok thnx for quick response
i read the code but its not in english can u translate that so i can set correct parameters
<batch>
<message>
<recipient>die Telefonnummer</recipient>
<text>der Nachrichtentext</text>
</message>
<message>
<recipient>die Telefonnummer</recipient>
<recipient>die 2. Telefonnummer</recipient>
<text>der Nachrichtentext</text>
<flags>Flags für die Nachricht</flags>
</message>
</batch>
i read the code but its not in english can u translate that so i can set correct parameters
<batch>
<message>
<recipient>die Telefonnummer</recipient>
<text>der Nachrichtentext</text>
</message>
<message>
<recipient>die Telefonnummer</recipient>
<recipient>die 2. Telefonnummer</recipient>
<text>der Nachrichtentext</text>
<flags>Flags für die Nachricht</flags>
</message>
</batch>
CIT