Author Topic: How to change "Use Icons" via LISP  (Read 2638 times)

0 Members and 1 Guest are viewing this topic.

trogg

  • Bull Frog
  • Posts: 255
How to change "Use Icons" via LISP
« on: January 24, 2011, 03:48:16 PM »
I am compiling a LISP for when I come to school and settle in to a computer.
However, I can't find a Sytem Variable or command to change the Icons in the status-bar to words.
Besides manually right-clicking and unchecking "use icons" does anybody know how to do this in Lisp?
Thanks,
~Greg


Lee Mac

  • Seagull
  • Posts: 12915
  • London, England
Re: How to change "Use Icons" via LISP
« Reply #1 on: January 24, 2011, 04:01:06 PM »
I'm guessing somewhere in the registry...

My bet is on a key in this location:

Code: [Select]
(strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\Profiles\\Initial Setup Profile\\StatusBar\\Application")
Just a guess though  :|

alanjt

  • Needs a day job
  • Posts: 5352
  • Standby for witty remark...
Re: How to change "Use Icons" via LISP
« Reply #2 on: January 24, 2011, 04:16:07 PM »
I'm guessing somewhere in the registry...

My bet is on a key in this location:

Code: [Select]
(strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\Profiles\\Initial Setup Profile\\StatusBar\\Application")
Just a guess though  :|
Code: [Select]
(strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\Profiles\\" (getvar 'CPROFILE) "\\StatusBar\\Application")
Of course, everything has a value of 1 for mine and I only have Polar, OSnap and OTrack turned on.
« Last Edit: January 24, 2011, 04:21:37 PM by alanjt »
Civil 3D 2019 ~ Windohz 7 64bit
Dropbox

Lee Mac

  • Seagull
  • Posts: 12915
  • London, England
Re: How to change "Use Icons" via LISP
« Reply #3 on: January 24, 2011, 04:19:17 PM »
Code: [Select]
(strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\Profiles\\" (getvar 'CPROFILE) "\\StatusBar\\Ap[color=red]p[/color]lication")

Thanks Alan  :-)

alanjt

  • Needs a day job
  • Posts: 5352
  • Standby for witty remark...
Re: How to change "Use Icons" via LISP
« Reply #4 on: January 24, 2011, 04:21:03 PM »
Code: [Select]
(strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\Profiles\\" (getvar 'CPROFILE) "\\StatusBar\\Ap[color=red]p[/color]lication")

Thanks Alan  :-)
I've never heard of Initial Setup Profile. I've always known the default to be <<Unknown Profile>>.
Civil 3D 2019 ~ Windohz 7 64bit
Dropbox