Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~538 People Reached
Favorite Forums
Favorite Tags
c++ x 5
Member Avatar for Laik

Hi guys...I am starting with Qt and I have problems with configuring it. It write: "Start C:/Apps/Qt/demo/demo.exe... This proccess could not be started !" I am using Qt Creator 1.2.1 on Win XP SP2. In code: [CODE] #include <QApplication> int main( int argv, char* argc[]) { QApplication demo(argv,argc); return demo.exec(); …

Member Avatar for Laik
0
70
Member Avatar for Laik

How to make a new scripting language in C++ ?...I need: parser,scanner,grammar,included functions,syntax.Where I can start?. I think I use JavaScript/PHP syntax.

Member Avatar for siddhant3s
0
253
Member Avatar for scrypt3r

You can use rundll32.exe to run a dll as a app, i am using this code [code] Process p = new Process(); p.StartInfo.FileName = "C:\\WINDOWS\\system32\\rundll32.exe"; p.StartInfo.Arguments = "C:\\Dll.dll" //Dll.dll is a simple "hello world" program p.Start(); [/code] but it is not working, any ideas?

Member Avatar for scrypt3r
0
91
Member Avatar for Laik

I am going to make OS. And I need help with GUI...how to make an GUI ?...I am not on Windows so CreateWindowEx() doesn't exist.

Member Avatar for adam1122
0
124