What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » HELP - "foreach" command!

HELP - "foreach" command!
Author: Message:
whiz
Senior Member
****


Posts: 568
Reputation: 8
– / – / Flag
Joined: Nov 2008
O.P. RE: HELP - "foreach" command!
Umm...  I can't seem to get that to work - I just get an error saying "Expected }".

Basically, I have a main (editor) window, like this:
Javascript code:
var WndWriterEditor = MsgPlus.CreateWnd("Windows.xml", "WndWriterEditor", 0);

Let's say, the user creates a new item with the AddItem window:
Javascript code:
var WndWriterAddItem = MsgPlus.CreateWnd("Windows.xml", "WndWriterAddItem", 0);

The form includes an ID, title, description.  The user enters the following information:
ID = "Test", Title = "My Little Test", and Description = "This is a little test of mine...".
Javascript code:
var WndID = WndWriterAddItem.GetControlText("EdtID");
var WndTitle = WndWriterAddItem.GetControlText("EdtTitle");
var WndDesc = WndWriterAddItem.GetControlText("EdtDesc");

I need that to be added to a ListViewControl, like:
Javascript code:
WndWriterEditor.LstView_AddItem("LstWindows", WndID);
WndWriterEditor.LstView_SetItemText("LstWindows", 0, 1, WndTitle);
WndWriterEditor.LstView_SetItemText("LstWindows", 0, 2, WndDesc);

But it needs to work out how many items have been made, so it can add data to the right ones, and it needs to be done with every filled-in form.  I also need it so that they can be edited and deleted.  I know that you can check if a particular ListViewControl entry is selected:
Javascript code:
WndWriterEditor.LstView_GetSelectedState("LstWindows", 0);

But can you get it so it checks the entire list, and returns the identifier of the selected item, rather than true or false for one entry?
05-21-2009 08:01 PM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
HELP - "foreach" command! - by whiz on 05-21-2009 at 06:36 PM
RE: HELP - "foreach" command! - by SmokingCookie on 05-21-2009 at 07:35 PM
RE: HELP - "foreach" command! - by Spunky on 05-21-2009 at 07:38 PM
RE: RE: HELP - "foreach" command! - by andrewdodd13 on 05-21-2009 at 08:01 PM
RE: HELP - "foreach" command! - by SmokingCookie on 05-21-2009 at 07:41 PM
RE: HELP - "foreach" command! - by whiz on 05-21-2009 at 08:01 PM
RE: HELP - "foreach" command! - by whiz on 05-21-2009 at 08:17 PM
RE: HELP - "foreach" command! - by SmokingCookie on 05-22-2009 at 07:11 AM
RE: HELP - "foreach" command! - by whiz on 05-22-2009 at 12:49 PM
RE: HELP - "foreach" command! - by SmokingCookie on 05-22-2009 at 12:54 PM
RE: HELP - "foreach" command! - by whiz on 05-22-2009 at 04:17 PM
RE: HELP - "foreach" command! - by SmokingCookie on 05-22-2009 at 04:20 PM
RE: HELP - "foreach" command! - by whiz on 05-22-2009 at 05:07 PM
RE: HELP - "foreach" command! - by matty on 05-22-2009 at 05:12 PM
RE: HELP - "foreach" command! - by felipEx on 05-22-2009 at 05:15 PM
RE: HELP - "foreach" command! - by whiz on 05-22-2009 at 07:06 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