<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>1 Oct 2015 07:09:00 Z</lastBuildDate><pubDate>30 Sep 2015 09:25:00 Z</pubDate><description>Hello,&#13;
&#13;
How to use an ActiveX supplied by another vendor in Windev 20 ? I've an activeX supplied by Logix Mobiles, which could be used to send SMS via GSM mobile / modem. And that's working fine with my powerbuilder application. I want to use the same with Windev. How to proceed ? Got no idea how to deal with activeX in windev.&#13;
&#13;
WDXView is not listing this activeX. A mcore.dll is supplied by the vendor which got registered in windows registry.&#13;
&#13;
&#13;
My powerbuilder code goes like this.&#13;
// Powerbuilder code&#13;
OLEObject objSMS&#13;
ObjSMS = Create ObjSMS&#13;
ll_return = objSMS.ConnectToNewObject("mCore.SMS")&#13;
&#13;
If ll_return &gt;= 0 Then&#13;
objSMS.License.Company = "Licence details"&#13;
&#13;
objSMS.Port = gs_port&#13;
objSMS.BaudRate = gl_baudrate&#13;
objSMS.DataBits = gl_databits&#13;
objSMS.Parity = gs_parity&#13;
objSMS.StopBits = gs_stopbits&#13;
objSMS.DisableCheckPIN = gs_disablecheckpin&#13;
&#13;
objSMS.Connect&#13;
&#13;
If objSMS.IsError (True, 'ElifaSMS') Then&#13;
Messsagebox('Elifa', 'Connect failure')&#13;
Return&#13;
Else&#13;
ls_send = objSMS.SendSMS("Mobile Number", ls_message, False)&#13;
\ // Check success / failure and proceed further&#13;
End If&#13;
Else&#13;
Messagebox('Elifa', 'SMS Components not found. Install SMS components.')&#13;
Return&#13;
End If&#13;
&#13;
&#13;
Need your help in using this component with Windev. Thanks.&#13;
&#13;
Happiness Always&#13;
BKR Sivaprakash</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex/read.awp</link><title>Re: using ActiveX</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex-54261/read.awp</comments><pubDate>1 Oct 2015 07:09:00 Z</pubDate><description>Hello Arie,&#13;
&#13;
asCLSID is string = "mCore.SMS"&#13;
ObjSMS is dynamic Automation object&#13;
ObjSMS = new object Automation asCLSID&#13;
&#13;
T…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex-54261/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex-54261/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex/read.awp">Re: using ActiveX</source><title>Re: using ActiveX</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex-54247/read.awp</comments><pubDate>30 Sep 2015 11:54:00 Z</pubDate><description>Afaik it is always the same</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex-54247/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex-54247/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex/read.awp">Re: using ActiveX</source><title>Re: using ActiveX</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex-54245/read.awp</comments><pubDate>30 Sep 2015 11:03:00 Z</pubDate><description>Hello Arie,&#13;
&#13;
Is this GUIID will be same wherever this dll is installed or registered ?&#13;
&#13;
Or we must fetch this GUID from ever…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex-54245/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex-54245/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex/read.awp">Re: using ActiveX</source><title>Re: using ActiveX</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex-54244/read.awp</comments><pubDate>30 Sep 2015 10:40:00 Z</pubDate><description>You can do something like this&#13;
&#13;
sCLSID is string = "{96BBABBE-0B6C-4240-8334-BD9360DCE0AA}"&#13;
ObjSMS = new object Automation sC…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex-54244/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex-54244/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/54241-using-activex/read.awp">Re: using ActiveX</source><title>Re: using ActiveX</title></item></channel></rss>
