
please wait
by Lamblion
Restart Application
|
Is there a Windows API function for restarting an app? If so, I can't find it. If not, does anybody know an easy way to code for an application close/restart... |
May 10, 2011 at 2:12am
[11 replies] Last: Nevermind, it DOES work. In the above code, I had the szFileName and t... (by Lamblion)
|
by darkpunk
CLI Navi
|
For a good example of what I am talking about is the program "testdisk". Its uses CLI, and yet has an arrow navigable menu. My question: is there a library ... |
May 9, 2011 at 11:10pm
[2 replies] Last: That is EXACTLY what I am looking for. Thanks alot! (by darkpunk)
|
by Fresh123
I don't like NET, how can I use Visual Styles in win32 program?
|
Hi, I learned Win32 Programming from here: http://zetcode.com/tutorials/winapi/ but unfortunately as you can see the view isn't lovley. so I tried to find ... |
May 9, 2011 at 4:19pm
[7 replies] Last: Ohh now I found my answer, I wanted to set the font myself... the cod... (by Fresh123)
|
by codist
program without window or console
|
I want to make a program without a window or a console, but still be able to receive events. How is this done? |
May 9, 2011 at 4:04pm
[8 replies] Last: Meh, what the hell. I'll just leave this here: http://msdn.microsoft.c... (by Computergeek01)
|
by enskye
Make a Simple Survey
|
I'm trying to make a simple 5 page survey for my Psychology class in order to make it easier to collect data. I'm really new to coding and can't do much. I've b... |
May 9, 2011 at 3:48pm
[3 replies] Last: I'm using Dev C++ as my compiler Here's your first problem, unless ... (by Computergeek01)
|
delete gcnew |
I got the next code System::String ^str = gcnew System::String("abecedar"); delete str; Will delete free the memory str refers to? |
May 9, 2011 at 9:04am
[no replies]
|
by James200
C++ Errors
|
I'm a newbie to C++ and I can't seem to understand some of the errors I'm getting. What's really pissing me off is that I'm essentially writing the same prog... |
May 9, 2011 at 5:38am
[1 reply] : Crossroads() is a function with its own scope, I don't see it being gl... (by closed account 3pj6b7Xj)
|
by James200
Please Help!
|
I need help! AGAIN. I get the following errors when I try to compile: c:\users\my computer\desktop\moar c++ stuff\game1\game1\main.cpp(53): error C2065: 'l... |
May 9, 2011 at 3:49am
[1 reply] : It looks like you have scope issues (and missing brackets?) Let me kn... (by closed account 3hM2Nwbp)
|
by JohnB
HWND ShowWindow Not Showing
|
Ok, so for this game I play I am wanting to use HWND to get a command bar to run commands in game. So I think this game doesn't let you set it to visible or som... |
May 8, 2011 at 11:09pm
[no replies]
|
by yusuftezel
Pleace help!!!!
|
What am i doing wrong here. i just want to make a program, somwhat can open an url. #pragma once #include<windows.h> #include<Shellapi.h> int main() ... |
May 8, 2011 at 9:26pm
[4 replies] Last: oooo i found out, that i should turn the system linker to console (by yusuftezel)
|
by mcqueen
Beginner in Application Making
|
Can someone please tell me where to begin? I am new to app making, but I do use C++ a lot. Please tell me what I need to know First. |
May 8, 2011 at 2:23pm
[2 replies] Last: Thank you! (by mcqueen)
|
by blueeyedlion
a better way than "system ("CLS")"?
|
I'm working on a simple console program, and currently the only way I know of to clear the screen is with system ("CLS") , but I've been hearing that system... |
May 8, 2011 at 12:51pm
[2 replies] Last: ... or you could use native winapi functions to do it, like always: h... (by modoran)
|
by Lamblion
Bottom Right
|
T want to set a small dialog box at the bottom right of the screen. I am using GetSystemMetrics() to get the x and y coordinates of the screen. But I can'... |
May 8, 2011 at 12:00am
[1 reply] : I used SystemParametersInfo() and it seems to work. (by Lamblion)
|
by sloumanaw
sending many packets Ethernet simultaniously
|
Hello i'am developping an application with Visual C++ 2010 but i have a problem. i need to send many packets Ethernet simultaneously from application layer ... |
May 7, 2011 at 9:44pm
[3 replies] Last: so how can i use it in my application that is develloped in the same ... (by kbw)
|
by shmeed
opening a website using strings
|
so i found this piece of code that will open a website hard coded in the .cpp file i wanted to edit this so it ask's the user "What website do you want to go to... |
May 7, 2011 at 1:21am
[4 replies] Last: I didn't compile it, so don't hold be me to it, and I'm not familiar w... (by Drue)
|
by hzmohamed
C++ Hexa read file help
|
Hello all, I'm preparing a new VC++ project, first thing in the project to read any file such as a user browse it and read it as a Hexadecimal, for any data... |
May 6, 2011 at 10:07pm
[no replies]
|
C++ : Send an Email. |
Before I start, I want to say that I've spent the last 40 minutes searching on google, with no success. Does anyone know of a way to easily send an email wit... |
May 6, 2011 at 7:11pm
[13 replies] Last: thats kind of fishy. are you trying to make som kind of virus? (by ty98)
|
by allytrice
Networking a C++ app
|
I have created an application in c++ (network chat application) in c++... & now i need to how to network a c++ application ....any sugesstions (tutorials,blogs... |
May 6, 2011 at 6:26pm
[3 replies] Last: Sorry for taking so long to reply.... actually what i have now is just... (by allytrice)
|
by Chuckleluck
Window opens, then closes (1,2)
|
So I've made a game engine according to Michael Morrison's "Beginning Game Programming". My first real program using the engine didn't work, so I decided to try... |
May 5, 2011 at 9:38pm
[31 replies] Last: "Build Messages" is empty... EDIT: OK, I decided to do more testing... (by Chuckleluck)
|
by raheelmarwat
code not working..
|
i am trying to run a code having pthreads lib in it but i cant run it it gives error with pthreads.h can any one look up and solve it? code is given below.. mY ... |
May 5, 2011 at 8:35pm
[15 replies] Last: It seems to check for what compiler and what language you are using th... (by Computergeek01)
|