quote:
Originally posted by ShawnZ
1. it's your script... shouldn't you be able to tell other parts of it when you call a DLL yourself?
2.
try this:
var Contacts = Messenger.MyContacts;
var e = new Enumerator(Contacts);
while (e.moveNext()) {
var contact = e.item();
EmailArray[i] = contact.Email;
WndEmail.Combo_AddItem("Email",contact.Email);
}
1.
I actually mean, that as soon as Windows calls a function in a DLL, I'd like to know of its name and parameters.. I have DLLExp, which only reads the DLL's function names and some weird "address" thing..
2.
I'm sorry to say that your code doesn't work.. It gives me an empty combobox..