616 reputation
10
bio website soundcloud.com/…
location Bridgeport, TX
age 18
visits member for 8 months
seen 12 hours ago
stats profile views 49

I'm 17 years old, I like to skateboard and screw things up like most teenagers... But I also love to code!! I started playing with simple HTML & CSS when I was 11. When I was 12 I moved on to PHP & MySQL (Tad bit of JS). Once I got familiar with Object Oriented Programming through PHP, I got into the world of desktop programming with C#.NET at 13. Once I realized at age 15 just how much I hated the .NET framework (distribution, performance) then I started learning C++! From simple command prompts to WinAPI. I worked my way up until now, but I still have lots more to learn, that is why I'm here at SO!


12h
comment Read from a file in C++
@john You must specify WHAT your problem is, not just THAT you have a problem. Are you getting a compilation error? A runtime error (most likely)? What happens when you try to run the program?
May
15
comment Application with multiple windows as instances of a class, C++
@bercik Ah, I see what you mean. You want for each window to dynamically have its own procedure that is a member-function of the window object instead of having to define individual free-function procedures for each window. IMO, the multi-threaded approach seems like overkill, and it is most definitely not the only solution, or even the best. You should check out my answer before trying that approach, it will probably save you some time and headaches.
May
15
revised Application with multiple windows as instances of a class, C++
added 712 characters in body
May
15
revised Application with multiple windows as instances of a class, C++
added 712 characters in body
May
15
answered Application with multiple windows as instances of a class, C++
May
15
comment Application with multiple windows as instances of a class, C++
So all you need to do is create the windows and make sure you have given them different procedures (MyWindow1(HWND,UINT,WPARAM,LPARAM) for Wnd1, MyWindow2(HWND,UINT,WPARAM,LPARAM) for Wnd2) so that they process their own message independent of each-other.
May
15
comment Application with multiple windows as instances of a class, C++
You can make an application with multiple windows, but it should only have one message loop. When the message loop gets a message, it sends it to the procedure (LRESULT CALLBACK WndProc(HWND,UINT,WPARAM,LPARAM)) of the window that the message belongs to. Think of the message loop as the mail man, when the mail man gets mail, he checks to see who it belongs to, then sends it to that person. Think of the windows procedure as the person getting the mail. The person reads the mail that belongs to them, and does something in response to what they have just read.
May
15
comment Application with multiple windows as instances of a class, C++
@bercik Also, what is the point of each window having its own message loop? An application usually has just one message loop, which routes every message that the application gets to the correct window procedure that the message belongs to.
May
15
comment Application with multiple windows as instances of a class, C++
When you create an object without using new, you create it on the stack. Therefor once the function that you created the APP's in returns, the APP's are destroyed, thus rendering the pointers to the APP's stored in your vector invalid. Use App.push_back(new APP(nCmdShow)) and the APP will be stored in dynamic memory, keeping it from being destroyed, then the pointers will be valid. BTW, the windows will still appear regardless of whether you have made invalid pointers to them.
May
13
awarded  Popular Question
Mar
2
comment ASP.NET MVC 4 Visual Studio 2010 project templates not present
I have some of the ASP.NET templates. Just none of them are for MVC. I've been using the Visual Web Developer component, so it is installed.
Mar
2
asked ASP.NET MVC 4 Visual Studio 2010 project templates not present
Feb
21
comment How can I put the reCAPTCHA ASP.NET plugin in a Razor (CSHTML) file?
How can I validate the reCAPTCHA using this method?
Feb
21
comment How can I put the reCAPTCHA ASP.NET plugin in a Razor (CSHTML) file?
@ScottSelby Brian is correct, I am not using MVC, I am using Web Pages.
Feb
20
accepted Razor C# - Get data from database
Feb
20
revised How can I put the reCAPTCHA ASP.NET plugin in a Razor (CSHTML) file?
edited title
Feb
20
asked How can I put the reCAPTCHA ASP.NET plugin in a Razor (CSHTML) file?
Feb
9
accepted Migrate WebMatrix project to VS2010
Feb
8
asked Migrate WebMatrix project to VS2010
Feb
7
comment WebMatrix - Create controller for CSHTML page
Yeah after playing with it I figured that out, which is what I should have done in the first place.