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

Search:

Type: Posts; User: HoM

Page 1 of 7 1 2 3 4

Search: Search took 0.03 seconds.

  1. Thread: IShellFolder

    by HoM
    Replies
    1
    Views
    4,875

    Re: IShellFolder

    maybe this could help:

    http://www.codeproject.com/KB/shell/namespcextguide1.aspx
  2. Replies
    2
    Views
    3,169

    Re: Dll execute during MSI execution(Installer)

    check out this sample on codeproject

    http://www.codeproject.com/KB/install/msicustomaction.aspx
  3. Replies
    6
    Views
    4,655

    Re: Create Process doesn't show any window

    http://msdn.microsoft.com/en-us/library/ms682614%28VS.85%29.aspx

    is about EnumDesktops, which can give you the info about all Desktops of a Windowstation in a Callback function
    ...
  4. Re: Manually made a service, having trouble installing it!

    just 4 completness:

    The API to use is CreateService

    If you want your exe to register itself, it should check, if it was started from the service control manager (this is: it's parent process is...
  5. Replies
    6
    Views
    4,655

    Re: Create Process doesn't show any window

    Did you read the article, CILU pointed you to? Why not?

    Services do not have a desktop to interact with (unless they run as local system and are configured "interactive").
    However you can pass...
  6. Replies
    0
    Views
    1,956

    MSI automation - Callback?

    Hi folks,

    i played around with the MSI automation interface and did some VBS on MSI files and on the stuff that is installed on the current workstation. It's pretty cool, what one can do with it....
  7. Re: Static or dynamic DLL- confused begginer question- please Help!!!

    You want to know, if changing code will influence the way your app calls a dll? I think:
    No matter if you use static linking (with a .lib) or dynamic linking with GetProcAddress(): As long as you do...
  8. Replies
    7
    Views
    20,098

    Re: Windows Service & Keyboard hook

    I think you are wrong. If you were searching a solution for "accessibility in logon process" (or whatever) why didn't you ask for that?
    Without ever having done it myself: I am pretty sure, that...
  9. Replies
    8
    Views
    1,516

    Re: Modal dialog and messages

    Seems the issue is not unknown ...
    MS Support

    ... kind of. Hard to understand this article :-(


    regards
    HoM
  10. Replies
    8
    Views
    1,516

    Re: Modal dialog and messages

    Did you give it a try?

    regards
    HoM
  11. Re: Linking Error While Converting Project from VC6.0 to VC2005

    Do you get the same in Release and Debug? Did you check a consistent usage of C-Runtime (MT vs. ST; Release vs. Debug)?

    regards
    HoM
  12. Replies
    3
    Views
    952

    Re: how to delete contents from a file?

    Create a new file and copy everything you do not want to delete ... I would propose.

    regards
    HoM
  13. Replies
    8
    Views
    1,516

    Re: Modal dialog and messages

    Did you try a SendMessage instead of a PostMessage? This API should wait untill the message was processed ...
    You should read the documentation of SendMessage and SendMessageTimeout...


    regards...
  14. Thread: Start a process?

    by HoM
    Replies
    9
    Views
    1,216

    Re: Start a process?

    I remember this from several documents MS released about their "LOGO" programms. The last document like this I read when "Win2k Logo" was en vogue.

    :-) I admit this is long time back. But ......
  15. Thread: Start a process?

    by HoM
    Replies
    9
    Views
    1,216

    Re: Start a process?

    MS preferes developers to use

    ShellExecute / ShellExecuteEx

    The advantage is, that you can make use of AppPaths registration and similar services of the Shell.

    regards
    HoM
  16. Re: Access to a non local directory from a windows service (C/C++)

    a share marked as "null session share" might even be accessed by a service ...

    regards
    HoM
  17. Replies
    4
    Views
    4,097

    Re: GetComputerNameEx problem

    ?? Has this anything to do with the GetComputerNameEx Windows API ?

    :confused:
  18. Replies
    4
    Views
    4,097

    Re: GetComputerNameEx problem

    Can someone move this to the networking area? Maybe somebody there could help ...

    regards
    HoM
  19. Replies
    4
    Views
    4,097

    GetComputerNameEx problem

    Hi All,

    I am searching code to find out the fully qualified computername like

    compi.subdomain.domain.corp

    of a) the local computer and
    b) a computer, which computer name (not fully...
  20. Replies
    7
    Views
    1,162

    Re: how to show the "share folder" Dlg

    For sake of completness: This is sample code how to get the string, that you need for the call to SHObjectProperties :



    CComBSTR bstrNtShrUiDll;
    // read the path to Systen32 folder and copy it...
  21. Replies
    7
    Views
    1,162

    Resolved(?): how to show the "share folder" Dlg

    Finally: Maybe there is a way to do it right for all languages:

    Open the file ntshrui.dll as a resource and read the String resource with the ID 103 and take that as input for the API...
  22. Replies
    7
    Views
    1,162

    Re: how to show the "share folder" Dlg

    Thanks a lot. One can really get the dialog with this API.

    The sad part of it: It is one of the most stupid APIs I have ever seen, because one must spezify the text, that is on the tab of the page...
  23. Replies
    7
    Views
    1,162

    Re: how to show the "share folder" Dlg

    thanks a lot.
    Actually we achieved showing the "properties" by doing a shellexecute on the folder with the verb "properties". But ... we would be much more happy, if the "sharing" page would be...
  24. Replies
    7
    Views
    1,162

    how to show the "share folder" Dlg

    Hi all,

    there is a function called "ShowShareFolderUIW" in ntshrui.dll, that shows a folders property page with the sharing options of that folder. But this function is not there on Win2k, only on...
  25. Replies
    12
    Views
    1,937

    Re: Need Help With GetModuleHandle(.....)

    Hi,
    I have 2 comments:

    In your code there is no LoadLibrary, so your dll will only be loaded, if you have linked to the .lib file of the dll you want to load. You must load the dll to retreive a...
Results 1 to 25 of 161
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured