What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » DLL function detection (?) + weird error

DLL function detection (?) + weird error
Author: Message:
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: DLL function detection (?) + weird error
code:
var EmailAddresses = new Array()
for (var e = new Enumerator(Messenger.MyContacts); !e.atEnd(); e.moveNext() ) {
    EmailAddresses.push(e.item().Email); // add the Contacts email address to the end of the array
    WndEmail.Combo_AddItem("Email", e.item().Email);
}

Or if you are as so inclined to create a loop to fill the Combo box...

code:
for (var i in EmailAddresses) {
    WndEmail.Combo_AddItem("Email", EmailAddresses[i]);
}
04-14-2008 11:44 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
DLL function detection (?) + weird error - by SmokingCookie on 04-13-2008 at 05:14 PM
RE: DLL function detection (?) + weird error - by ShawnZ on 04-13-2008 at 05:52 PM
RE: RE: DLL function detection (?) + weird error - by SmokingCookie on 04-13-2008 at 06:00 PM
RE: DLL function detection (?) + weird error - by ShawnZ on 04-13-2008 at 06:03 PM
RE: DLL function detection (?) + weird error - by SmokingCookie on 04-13-2008 at 06:07 PM
RE: DLL function detection (?) + weird error - by felipEx on 04-13-2008 at 08:30 PM
RE: DLL function detection (?) + weird error - by matty on 04-14-2008 at 11:44 AM
RE: DLL function detection (?) + weird error - by SmokingCookie on 04-14-2008 at 02:52 PM
RE: DLL function detection (?) + weird error - by Matti on 04-14-2008 at 04:13 PM
RE: DLL function detection (?) + weird error - by SmokingCookie on 04-14-2008 at 04:19 PM
RE: DLL function detection (?) + weird error - by Matti on 04-14-2008 at 04:40 PM
RE: DLL function detection (?) + weird error - by SmokingCookie on 04-14-2008 at 04:47 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On