Post Reply 
Displaying Fewer Digits in CAS and HOME
02-24-2017, 02:27 PM (This post was last modified: 02-24-2017 02:32 PM by DrD.)
Post: #5
RE: Displaying Fewer Digits in CAS and HOME
Use the HDigits home variable:

HFormat:=1;
HDigits:=4;

Quote:I'd like to be able to save the current display mode, set the mode to a new value and restore the original mode when the program ends.

F:=HFormat; // save the current display mode
HFormat:=1; // set the mode to a new value
H:=HDigits;
HDigits:=4;
HFormat:=F; //restore the original mode when the program ends
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Displaying Fewer Digits in CAS and HOME - DrD - 02-24-2017 02:27 PM



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