Forum: C++ Nov 5th, 2008 |
| Replies: 2 Views: 1,081 I'm currently working on a project that manages multiple notepad windows in a MDI client area. It runs just as I want it to, except that the notepad windows seem to freeze up and become glitchy... |
Forum: C++ Oct 30th, 2008 |
| Replies: 3 Views: 381 Is there a way that I could have something typed into the command line upon creation? For instance, have it type "cd folder1" as soon as the xsession window is created. |
Forum: C++ Oct 30th, 2008 |
| Replies: 3 Views: 381 |
Forum: C++ Oct 29th, 2008 |
| Replies: 3 Views: 381 I'm trying to use the createprocess function to start an xsession, but so far I've been unsuccessful. Here is the code I'm trying to use:
_tcscpy(tszCommandLine, _T("C:\\Program... |
Forum: C++ Oct 23rd, 2008 |
| Replies: 12 Views: 1,649 I know, I just don't like that you have to have notepad already running. Ideally I'd like to be able to click a "new" button and for it to create a new instance of notepad within the parent window. |
Forum: C++ Oct 23rd, 2008 |
| Replies: 12 Views: 1,649 I've got a working program with a child window setup the way I want it, but now I want to make that child window an external program such as notepad. Any ideas?
#include <windows.h>
#include... |
Forum: C++ Oct 21st, 2008 |
| Replies: 12 Views: 1,649 Rather than looking for notepad to already be opened, how would I create a new instance of notepad? I've looked into the CreateProcess funtion, but i'm not sure how to implement it in this situation. |
Forum: C++ Oct 13th, 2008 |
| Replies: 12 Views: 1,649 Thanks for the reply. I'm getting the following errors when I try to compile your code:
'FindWindowW' : cannot convert parameter 1 from 'const char [8]' to 'LPCWSTR'
'MessageBoxW' : cannot... |
Forum: C++ Oct 9th, 2008 |
| Replies: 12 Views: 1,649 Hi, I appologize for a lack of specificity, but i'll try my best to explain what i want to do. I want to write a program that will run other programs within a single window, so that they're neatly... |