06-01-2003, 10:42 PM
recent files
now i need to know how to split/slice mru
so that i can get all the values.
my guess is to split the mru string to an array and
to build then a menu from that.
btw. i prepared the whole posting in a ppro note, thats much
better then the phpBB interface
//mru_reader
str mru
str keypath = "Software\Microsoft\Windows\CurrentVersion\Explorer\ComDlg32\OpenSaveMRU\"
//ext will be filled by function
str ext = "txt"
str key_path.format("%s%s" keypath ext)
rget(mru "MRUList" key_path 0)
out mru
//my result -> gfedcbajih
int i=len(mru)
//result len = 10, can be used for rep
out inow i need to know how to split/slice mru
so that i can get all the values.
str value splitted
//splitted is one of mru -> gfedcbajih
rget(value splitted key_path 0)to build then a menu from that.
btw. i prepared the whole posting in a ppro note, thats much
better then the phpBB interface
