On Wed, 31 Oct 2007 17:23:52 +0000, Luis wrote:

> Hiya,
> 
> Type 'regedit' without the apostrophes into the 'Run' command box.
> From there browse to the 
> 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\CodePage' 
> and do a File/Export.

Actually you can do this from Rev to a text file and then you can read 
the text file from Rev, parse the data and delete the text file. Here's 
an example (off the top of my head):

on mouseUp
  put "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\" & \
     "Control\Nls\CodePage" into tKey
  put "regedit.exe /c c:\temp.txt " & tKey into tCmd
  set the hideConsoleWindows to true
  get shell(tCmd)
  put url ("file:C:/temp.txt") into tData
  delete file "C:/temp.txt"
  -- now parse the data and extract your list...
end mouseUp

HTH,


Ken Ray
Sons of Thunder Software, Inc.
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to