Sending SMS using HYPERLINK,How to hide the POPUP window ??

pskannaapskannaa Member Posts: 138
Dear ALL,

I'm sending the SMS through NAV application with help of 'Hyperlink',

hyperlink='http://.......?userid=;pass=;sendto=;etc....'

Everything is fine, but i don't want to show the POPUP window(internet explore). want to make silence. because this will be setting in NAV background process..

Plz Suggest me...

Thanks & Regards,
Psk

Comments

  • garakgarak Member Posts: 3,263
    then use the Automation 'Microsoft Internet Controls' and the class internetExplorer.
    Do you make it right, it works too!
  • rvduurenrvduuren Member Posts: 92
    Met vriendelijke groet, best regards,

    Rvduuren
  • pskannaapskannaa Member Posts: 138
    Excellent friends, Automation is working. Thanks.

    one more clarification..After sending the SMS it's should be returned some info like (message sent ID and date), how can i get the values ?? because if it's not sent due to server problem what ever it's..throwing error code also...

    Can You Suggest me, how to get the returned value, If we are using 'hyperlink' we can see the internet explore and see the value but now this case should not showing screen know !!!
  • SavatageSavatage Member Posts: 7,142
    pskannaa wrote:
    Can You Suggest me, how to get the returned value, If we are using 'hyperlink' we can see the internet explore and see the value but now this case should not showing screen know !!!

    Where would you like to see a value? A pop-up window? Doesn't that defeat the purpose of the post? :mrgreen:
  • pskannaapskannaa Member Posts: 138
    No dear,

    i just want to get the returened value after execute without see the window. Like 'functions with return value'

    The reason is we need to verify whether the message is deliverd or not ??? only we can identify the returen value.
  • rvduurenrvduuren Member Posts: 92
    Hello,
    -------------------------------------------------------------
    mxh - Automation - 'Microsoft XML, v4.0'.XMLHTTP40
    Url - Text - 1000
    is - InStream
    os - OutStream
    var - Variant   
    ci - Record - Company Information   
    mbt - BigText
    -------------------------------------------------------------
    CREATE(mxh);
    
    mxh.open('GET','http://www.microsoft.com/en/us/default.aspx',FALSE);
    Mxh.send(var);
    var := Mxh.responseStream;
    CLEAR(mxh);
    
    is := var;
    mbt.READ(is);
    
    ci.Picture.CREATEOUTSTREAM(os);
    mbt.WRITE(os);
    ci.Picture.EXPORT('c:\result.txt',FALSE);
    
    The result of the request is saved in c:\result.txt.
    You can parse c:\result.txt (FILE read etc.). If you can't parse it, something went wrong :)
    Met vriendelijke groet, best regards,

    Rvduuren
  • Siva_123Siva_123 Member Posts: 2
    Hi all,

    i want to store the response (Message ID) from the hyperlink to a field in a specified table.Is it possible or not ...


    thanks in advance!!!
Sign In or Register to comment.