Post Reply 
How do I save all the User settings, on the Prime? (SOLVED!)
11-01-2015, 01:09 PM (This post was last modified: 11-01-2015 01:11 PM by Han.)
Post: #4
RE: How do I save all the User settings, on the Prime?
Just as a quick example:

Code:
  local UserSettings:={};
  UserSettings(1):=HAngle;
  UserSettings(2):=Base;
  UserSettings(3):=Entry;
  RETURN(UserSettings);

You can restore them in a similar fashion:

Code:
  HAngle:=UserSettings(1);
  Base:=UserSettings(2);
  Entry:=UserSettings(3);

Make a program that saves the settings into an exported (global) variable. Make a second program that restores the settings. Then in your programs, you can simply call the two programs to save and restore the user's settings.

Graph 3D | QPI | SolveSys
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: How do I save all the User settings, on the Prime? - Han - 11-01-2015 01:09 PM



User(s) browsing this thread: 1 Guest(s)