 |
|
 |
Hi my name is mosa i need i have a project where i have to create a shell that supports internal commands such as cd, pause, clr.
can i get an example of anything related please?
|
|
|
|
 |
|
 |
How can i programe to make an autorun CD with password with C++
|
|
|
|
 |
|
 |
Hey there,
I don't know much about C++, so I'm not too sure about how this program works (only that it does when I follow the instructions So I don't know if this is a crazy question or not, but here goes.
I'm autorunning an html file, and it works great, but I was wondering if there is a way to force the browser to start up in full screen mode? It's going on a business card cd, and it would just look a hell of a lot nicer.
Thanks
Sarah (sarah@sugarandsalt.ca)
|
|
|
|
 |
|
 |
Unfortunately there is no full proof way of showing a html file fullscreen using the APIs which ShelExec uses. The only truly reliable way of implementing something like that is creating a custom exe which embeds IE or Mozilla. The problem with this (excluding the additional work) is that you will not work with the default browser on client machines.
|
|
|
|
 |
|
 |
Does anyone knows, NTDETEC.com is the MSDOS base application or it is win32?
pappu
|
|
|
|
 |
|
 |
How can i launch the DUN entry dialog in program.
for an example, i have a "263 net" DUN entry in the "network connections" of "control panel", then i launch it in vc Programming.
Thanks a lot!!!!!!!!!!!!!!!!!
|
|
|
|
 |
|
 |
I am certainly happy to have come across this simple but very useful program.
|
|
|
|
 |
|
 |
In a MFC-MDI-framework I encounter problems running this code from a secondary thread. It works fine until the user wants to exit the program. Then the MainFrame is hidden but not destroyed. Only a look in the taskmanager shows that it is still running. Commenting out the code-line with "ShellExecute" all works fine
Any ideas
|
|
|
|
 |
|
 |
More details on your usage of this is required. ShelExec is a separate command line program so how can it be called from inside a secondary thread?.
|
|
|
|
 |
|
 |
I just call the ShellExecute()-function from another thread, so it really has nothing to do with your cmd-executable-sample. I just post this subject because perhaps somebody has some infos about this
|
|
|
|
 |
|
 |
Q264486.Error Message When You Close a Word 2000 Document
This task is taking longer than expected. Do you want to continue waiting?
I don't know if this is relevent to to you but that is the problem I have if I autoplay a word document on a 95 machine and some 2000???
|
|
|
|
 |
|
 |
E.g. *.cpp -files have the (only) verb "Open with MsDev" (german MsDev installed)
They cannot be opened with the code
Is there a way to find out the default-verb for a file-Extension
|
|
|
|
 |
|
 |
I know the problem, just change the code from:
HINSTANCE hInstance = ShellExecute(NULL, _T("open"), lpCmdLine, NULL, NULL, nCmdShow);
to:
HINSTANCE hInstance = ShellExecute(NULL, NULL, lpCmdLine, NULL, NULL, nCmdShow);
|
|
|
|
 |
|
 |
I've released a new version on my web site at http://indigo.ie/~pjn which resolves this problem
|
|
|
|
 |
|
 |
This would be great if you could specify other verbs, eg:
shellexec c:\matt.doc print
shellexec c:\matt.doc properties
There's many a time I've wanted to display a file's properties from the command line..
|
|
|
|
 |
|
 |
I'll add it to the wish list and post an update ASA
|
|
|
|
 |
|
 |
I've released a new version on my web site at http://indigo.ie/~pjn which does just thi
|
|
|
|
 |