What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » How do I save data?????

How do I save data?????
Author: Message:
Spunky
Former Super Mod
*****

Avatar

Posts: 3658
Reputation: 61
35 / Male / Flag
Joined: Aug 2006
RE: How do I save data?????
The best analogue I can think of to learn from would be a win32 read/write example. Some things need to be changed though still such as ActiveXObject instead of create object and no constants are defined so you have to explicitly assign these values. There may be an example somewhere around here. I'll see what I can dig up (getting son to sleep atm)


Javascript code:
function WriteDemo()
{
   var fso, f, r
   var ForReading = 1, ForWriting = 2;
   fso = new ActiveXObject("Scripting.FileSystemObject")
   f = fso.OpenTextFile("c:\\testfile.txt", ForWriting, true)
   f.Write("Hello world!");
   f.Close();
   f = fso.OpenTextFile("c:\\testfile.txt", ForReading);
   r = f.ReadLine();
   return(r);
}


Hopefully you can use bits of that for what you want; it's all there


Although I'm sure there should be an f.Close(); before the return. This is taken from MSDN though


It can be put into two functions:

Javascript code:
function Write(filename, text){
   try{
      var fso = new ActiveXObject("Scripting.FileSystemObject")
      f = fso.OpenTextFile(filename, 2, true)
      f.Write(text);
      f.Close();
      return 1;
   }catch(e){
      Debug.Trace("Write Error: (File '"+filename+"': " + e.message);
      return 0;
   }
}
 
function Read(filename)
   try{
      f = fso.OpenTextFile(filename, 1);
      return f.ReadLine();
   }catch(e){
      Debug.Trace("Read Error: (File '"+filename+"': " + e.message);
      return 0; // Failed
   }
}


This post was edited on 07-02-2011 at 08:17 PM by Spunky.
<Eljay> "Problems encountered: shit blew up" :zippy:
07-02-2011 06:51 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
How do I save data????? - by Infinity8888 on 07-01-2011 at 12:23 PM
RE: How do I save data????? - by matty on 07-01-2011 at 12:44 PM
RE: How do I save data????? - by Infinity8888 on 07-01-2011 at 10:56 PM
RE: How do I save data????? - by Carol6Sweet on 07-02-2011 at 01:13 PM
RE: How do I save data????? - by Infinity8888 on 07-02-2011 at 03:51 PM
RE: How do I save data????? - by MeEtc on 07-02-2011 at 05:28 PM
RE: How do I save data????? - by Spunky on 07-02-2011 at 06:11 PM
RE: How do I save data????? - by Infinity8888 on 07-02-2011 at 06:19 PM
RE: RE: How do I save data????? - by CookieRevised on 07-02-2011 at 10:43 PM
RE: How do I save data????? - by Spunky on 07-02-2011 at 06:51 PM
RE: How do I save data????? - by Infinity8888 on 07-02-2011 at 08:59 PM
RE: How do I save data????? - by Spunky on 07-02-2011 at 11:48 PM
RE: How do I save data????? - by Infinity8888 on 07-03-2011 at 05:22 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