Is there a way of reading these from within blitz?
I suck at windows stuff, so no complicated answers please:)
I suck at windows stuff, so no complicated answers please:)
Local homePath$ = getenv_("HOMEDRIVE") + getenv_("HOMEPATH") Local desktopPath$ If homePath$ Then desktopPath$ = homePath$ + "\desktop" Print homePath$ Print desktopPath$...should give you the path to your desktop.
homePath$ = GetEnv("HOMEDRIVE") + GetEnv("HOMEPATH") If homePath$ Then desktopPath$ = homePath$ + "\desktop" Print homePath$ Print desktopPath$ WaitKey() End