How to create object from dll file after load?
Hi,
I don't anderstend hot to create coject from the dll and use his methods.
I have SMSSender object that get in the constractor:
username, password, phon number
then I need to call his method SendSMS that get messege and phon number.
Could you help me please?
Thanks,
Yael
class Test1
{
static
{
System.load("C:/MyJava/deploy/SMSCom.dll");
}
}
Something like this:
Object SMSObj = CreateObject("SMSCom.SMSSender");
SMSObj.password =...
SMSObj.Username =...
SMSObj.Source =...

