Search found 4 matches

by alex-s
Tue Jul 29, 2014 2:37 am
Forum: Basic
Topic: Downloading and adding to Virtual Box
Replies: 4
Views: 21738

Re: Downloading and adding to Virtual Box

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 ...
by alex-s
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?
by alex-s
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 ...
by alex-s
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 ...