enable uac by vc++
-
Hello, I writed a program that saves data on file, its runs on windows XP ,but whan I execute it on windows 7 its not open the file, I understood its because the uac property, if somebody know how can I disable the uac from my program , I would be vary thankfull for him. thanks
-
Hello, I writed a program that saves data on file, its runs on windows XP ,but whan I execute it on windows 7 its not open the file, I understood its because the uac property, if somebody know how can I disable the uac from my program , I would be vary thankfull for him. thanks
I'm guessing you're creating the file in a folder that is not recommended like in
C:\
orC:\Windows
. You should change this location so that you will not need elevated privileges.«_Superman_»
I love work. It gives me something to do between weekends. -
I'm guessing you're creating the file in a folder that is not recommended like in
C:\
orC:\Windows
. You should change this location so that you will not need elevated privileges.«_Superman_»
I love work. It gives me something to do between weekends. -
You could use the
MyDocuments
folder. You can callSHGetSpecialFolderLocation
with theCSIDL_MYDOCUMENTS
parameter to get this location.«_Superman_»
I love work. It gives me something to do between weekends. -
You could use the
MyDocuments
folder. You can callSHGetSpecialFolderLocation
with theCSIDL_MYDOCUMENTS
parameter to get this location.«_Superman_»
I love work. It gives me something to do between weekends.