Jump to content

bgjensen

Members
  • Posts

    6
  • Joined

  • Last visited

bgjensen's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Got it to work with: _XMLGetValue("/options/opt1/opt[@name='a']/time") and _XMLUpdateField
  2. I need to change a value in a XML file. The structure looks like this: <options> <opt1> <opt name="a" type="b"> <time>1</time> </opt> </opt1> </options> I first need to read the value in <time> to a variable, and then change it to 2 in the XML file, but i can't get it to work, can someone please help me?
  3. Great program. Looking forward to the source.
  4. Thanks works perfectly.
  5. I have a problem with the StringSplit function: I have this code: $file = FileOpen("test1.txt", 0) If $file = -1 Then MsgBox(0, "Error", "Unable to open file.") Exit EndIf While 1 $line = FileReadLine($file) $array = StringSplit($line, ";") GUICtrlCreateListViewItem($array[1] & "|" & $array[2] & "|" & $array[3] & "|" & $array[4] & "|" & $array[5], $listview) If @error = -1 Then ExitLoop Wend FileClose($file) And in my test1.txt is something like this: value1;value2;value3;value4;value5 But if one of the value is empty like this: value1;value2;;value4;value5 The script fails, because $array[3] will be empty, is there a solution to this???
  6. How do i make a script that can search a folder and subfolders for all ifo files?
×
×
  • Create New...