CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: joex

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    35,930

    Programmatically Starting/Stopping Apps

    I am very interested in being able to start and stop applications programatically.

    Was curious whether it will be more difficult to do this in upcoming releases of Windows 7 and in future...
  2. Replies
    0
    Views
    462

    Scheduled Task - can't see printers

    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...
  3. Replies
    3
    Views
    715

    Re: Update file timestamp

    Thank you!

    I will try your solution.
  4. Replies
    3
    Views
    715

    Update file timestamp

    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?
  5. Replies
    3
    Views
    527

    Path to Internet Explorer and Netscape

    How can I programmatically determine the path to Internet Explorer and Netscape?

    What if there are more than one version of Netscape running?
  6. Thread: Display Icons

    by joex
    Replies
    1
    Views
    583

    Display Icons

    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?
  7. Replies
    0
    Views
    463

    Process Handle to Process ID

    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...
  8. Re: Service and/or "no-show" window in Windows 95

    Thanks.

    BTW, to make a modal dialog invisible, do the following:

    in DefWindowProc, put:

    if (message == WM_NCPAINT)
    {
    ShowWindow(SW_HIDE);
    }
  9. Re: Service and/or "no-show" window in Windows 95

    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?
  10. Re: Service and/or "no-show" window in Windows 95

    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...
  11. Service and/or "no-show" window in Windows 95

    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...
  12. Thread: Custom Folder

    by joex
    Replies
    0
    Views
    476

    Custom Folder

    Is it possible to change the look of a folder
    window under Windows NT/95, without the use
    of Active Desktop?
  13. Re: Use settings to generate file prior to Compile-time

    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...
  14. Re: Use settings to generate file prior to Compile-time

    As far as I can tell, the following links:
    http://msdn.microsoft.com/library/techart/msdn_bldrul~1.htm
    ...
  15. Re: Use settings to generate file prior to Compile-time

    Pre-link is post-compile, I want pre-compile
  16. Use settings to generate file prior to Compile-time

    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.
  17. Thread: Edit Box Paste

    by joex
    Replies
    2
    Views
    545

    Re: Edit Box Paste

    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...
  18. Thread: Edit Box Paste

    by joex
    Replies
    2
    Views
    545

    Edit Box Paste

    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...
Results 1 to 18 of 18





Click Here to Expand Forum to Full Width

Featured