Posts: 1,271
Threads: 399
Joined: Mar 2003
is there any way to get this working ?
Quote:Error in settings_parser: expected int constant.
i read settings from a xml file and the last entry is reserved for some
custom action.
settings_parser
int i
for i 0 a.len
,str boards.formata("%s[]" a[i].title)
;out i
int mode=PopupMenu(boards)
sel mode
,case 0 end
,case i mes "some dialog"
,case else
,,out a[mode-1].url
Posts: 12,073
Threads: 140
Joined: Dec 2002
No, use if.
if(mode=0) ...
else if(mode=i) ...
else ...
;or
sel mode
,case 0 ...
,case else
,if(mode=i) ...
,else ...
Posts: 1,271
Threads: 399
Joined: Mar 2003
Posts: 1,271
Threads: 399
Joined: Mar 2003
do you know if
typelib MSXML {D63E0CE2-A0A2-11D0-9C02-00C04FC99C8E} 2.0
can be used on every xp computer or do i have to check for it ?
Posts: 12,073
Threads: 140
Joined: Dec 2002
Don't know exactly. All my OS (98, 98SE, Me, 2K, XP, 2003) have at least version 2. Maybe it comes with IE 5, which is required for QM.