So okay i got that but may you can make an explaination for those paths since %APPLICATION DATA% isnt either appdata or roaming etc.
So far i would prefer a full path list of all those things.
I cant use System32 etc. since they need Admin rights and you know sometimes users forget to start my app ...
Search found 4 matches
- Tue Jul 29, 2014 2:37 am
- Forum: Basic
- Topic: Downloading and adding to Virtual Box
- Replies: 4
- Views: 21738
- Mon Jul 07, 2014 6:37 pm
- Forum: Basic
- Topic: Downloading and adding to Virtual Box
- Replies: 4
- Views: 21738
Downloading and adding to Virtual Box
Hey,
just a short question:
is it possible to download a file and adding it to the virtual box to keep things updated?
Like adding files to virtual box in runtime?
just a short question:
is it possible to download a file and adding it to the virtual box to keep things updated?
Like adding files to virtual box in runtime?
- Mon Jun 30, 2014 4:22 pm
- Forum: Problems
- Topic: Writing HWID to lineEdit in Qt
- Replies: 3
- Views: 12662
Re: Writing HWID to lineEdit in Qt
Sorry for replying that late.
I just fixed it.
Had to convert to char* also i compiled in unicode before so there was the issue which i fixed.
If anyone else needs it for Qt:
LPCTSTR s = EP_RegHardwareID();
char* hwid = const_cast<char*>(s); // LPCTSTR HardwareID -> char
return hwid; // returns ...
I just fixed it.
Had to convert to char* also i compiled in unicode before so there was the issue which i fixed.
If anyone else needs it for Qt:
LPCTSTR s = EP_RegHardwareID();
char* hwid = const_cast<char*>(s); // LPCTSTR HardwareID -> char
return hwid; // returns ...
- Mon Jun 30, 2014 11:01 am
- Forum: Problems
- Topic: Writing HWID to lineEdit in Qt
- Replies: 3
- Views: 12662
Writing HWID to lineEdit in Qt
Hey,
i tried to get the Hardware ID out of Enigma since other ways can be really complicated to get unique one.
So now my Problem:
http://i.gyazo.com/afd0b4c457b7f89fc11b7673505eceee.png
I just try to set the EP_RegHardwareID into the lineEdit but it wont work since its an LPCTSTR.
So i tried to ...
i tried to get the Hardware ID out of Enigma since other ways can be really complicated to get unique one.
So now my Problem:
http://i.gyazo.com/afd0b4c457b7f89fc11b7673505eceee.png
I just try to set the EP_RegHardwareID into the lineEdit but it wont work since its an LPCTSTR.
So i tried to ...
