February 7th, 2002 08:38 AM
When no one is logged on and I run a VB program via NT Scheduled Tasks,
the VB program cannot see any printers, even though it
logs in via WNetAddConnection2 and the login parameters
provided to...
February 19th, 2001 07:38 AM
Thank you!
I will try your solution.
February 17th, 2001 06:25 AM
Is there a way to update the "last modified" attribute of a file without actually changing/copying the file contents?
Is there some dll that can be linked in that has a unix-like "touch" command?
February 11th, 2001 07:46 AM
How can I programmatically determine the path to Internet Explorer and Netscape?
What if there are more than one version of Netscape running?
February 3rd, 2001 08:29 PM
How is it possible to create a control that can be used to display a sequence of icons, where the path to the icons is to be specified at run-time?
December 31st, 2000 01:58 PM
ShellExecuteEx returns the process handle
GetWindowThreadProcessId ( hWndNext, &ProcessId ) returns the process id
How can I link the process handle to the process id?
Also, when...
December 31st, 2000 05:43 AM
Thanks.
BTW, to make a modal dialog invisible, do the following:
in DefWindowProc, put:
if (message == WM_NCPAINT)
{
ShowWindow(SW_HIDE);
}
December 30th, 2000 06:44 AM
If no dialog is created, then putting either:
return FALSE;
return TRUE;
in InitInstance - results in the program exiting. Does there have to be a modeless dialog for this to work?
December 29th, 2000 09:48 PM
The window still briefly appears even when WS_VISIBLE is removed from the dialog in the rc file.
How can a project be created without any windows - I don't mean a console application, because a...
December 29th, 2000 07:58 PM
My understanding is that Windows 95 does not support services. If it is possible to have a service
run, how is this done?
If it is not possible/simple to have a service run, I want a program...
December 14th, 2000 08:40 AM
Is it possible to change the look of a folder
window under Windows NT/95, without the use
of Active Desktop?
December 10th, 2000 06:22 PM
My rapid response to your post may suggest that I only glanced at the links that were provided. However, I had read them before sending my original post. That is not to say that they do not contain...
December 10th, 2000 04:22 PM
As far as I can tell, the following links:
http://msdn.microsoft.com/library/techart/msdn_bldrul~1.htm
...
December 8th, 2000 06:17 AM
Pre-link is post-compile, I want pre-compile
December 7th, 2000 02:39 PM
In visual c++ 6.0, is it possible to generate or touch a file prior to compile time.
This would allow the use of the __date__ macro in the above file to reflect the time of a build.
December 6th, 2000 06:16 AM
I successfully used a reply given by Sam Hobbs in response to the 11/15/2000 question on:
Edit cut copy paste
His answer is to look in the following document:
"How to Enable Edit Menu...
December 5th, 2000 12:56 PM
In a "Dialog-Based" MFC AppWizard application,
the following results in a successful paste to
an Edit Box:
ctrl v
However, for a "Single Document" MFC AppWizard application, the above...