CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 1999
    Posts
    5

    exe file that don't open a window

    How can I create an exe file that, when executed, don't open any window?
    ( It just need to check something in the registry ).


  2. #2
    Join Date
    May 1999
    Location
    UK
    Posts
    59

    Re: exe file that don't open a window

    You could create a Windows EXE, but in your InitInstance just read your registry stuff and return FALSE (i.e. don't create a window). Or you could create a console application.

    MJA

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured