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

Search:

Type: Posts; User: Mitsukai

Page 1 of 80 1 2 3 4

Search: Search took 0.99 seconds.

  1. Replies
    2
    Views
    29,522

    Re: FILETIME to string

    except its not a date its a number of how many time has passed past.
  2. Replies
    1
    Views
    3,489

    How to get memory usage of process

    How can i do this?
  3. Replies
    2
    Views
    29,522

    FILETIME to string

    is there any easy way in the api that can do this already?
    making it on my own with FileTimeToSystemTime and then putting all the vars in a string is kinda problem matic
  4. Replies
    3
    Views
    1,266

    Re: get the user that created the process

    thnx you arjay as always...
  5. Replies
    3
    Views
    1,266

    get the user that created the process

    How do i know what user created the process ? And can i display this username?
  6. Replies
    2
    Views
    936

    Re: getting icon from exe

    thank you.. it worked
  7. Replies
    2
    Views
    936

    getting icon from exe

    Hi i want to get the icon from an executable. How do i do this? do ineed to read the resource section table? thanks.
  8. Replies
    2
    Views
    917

    major redraw problems.

    Hi.

    Yet again some winapi problem...
    My window has trouble redrawing itself. When i drag any window over my window than it will redraw itself right. But when i am resizing or on fresh start, my...
  9. Thread: application?

    by Mitsukai
    Replies
    15
    Views
    3,055

    Re: application?

    ok this is my final code:
    i dint add the ProccessId check yet tho.
    completly resolved. thanks for your help arjay!


    if(::GetWindow(hWnd, GW_OWNER) || !::IsWindowVisible(hWnd) ||...
  10. Thread: application?

    by Mitsukai
    Replies
    15
    Views
    3,055

    Re: application?

    ok fixed.


    CView* This = reinterpret_cast<CView*>(lParam);
    if(::GetWindow(hWnd, GW_OWNER) || !::IsWindowVisible(hWnd) || !(::GetWindowLong(hWnd, GWL_STYLE) & WS_CAPTION))
    return TRUE;...
  11. Thread: application?

    by Mitsukai
    Replies
    15
    Views
    3,055

    Re: application?

    well i found out GetClassLong returns NULL for both GCL_HICON and HICONSM, i already thought of that... so there must be a diffrent way of getting the icons..
  12. Thread: application?

    by Mitsukai
    Replies
    15
    Views
    3,055

    Re: application?

    yes i do get the right top level applications. the text under the icons show that
  13. Thread: application?

    by Mitsukai
    Replies
    15
    Views
    3,055

    Re: application?

    i have this code:


    if(::GetWindow(hWnd, GW_OWNER) || !::IsWindowVisible(hWnd) || !(::GetWindowLong(hWnd, GWL_STYLE) & WS_CAPTION))
    return TRUE;
    CView* This =...
  14. Re: problem retrieving own created DLL procedure address

    its that codeblocks manages the commandlines mostly i cant change it or i must make a makefile and i dont wanna do dat. for now Create@4 etc. is just fine
  15. Re: problem retrieving own created DLL procedure address

    i did extern C and now dey produce Create@4. i tried the command line --kill-at which is suposed to kill the @n but its not working.
  16. Re: problem retrieving own created DLL procedure address

    i tried editing the .def file but its generating an automated def file overwriting...

    i will have to look into GCC parameters...
  17. Re: problem retrieving own created DLL procedure address

    it looks like this:


    EXPORTS
    _Z4Moveiiii@16 @1
    _Z6CreateP6HWND__@4 @2
    _Z7Destroyv@0 @3

    also im using codeblocks....
  18. Re: problem retrieving own created DLL procedure address

    i use anywhere pe viewer.

    i tried _Z6CreateP6HWND__ and it worked...

    i understand what that faq is saying its very clear. except im not using VC++ im using mingw. and the dll already comes with...
  19. Replies
    2
    Views
    2,163

    Re: How to create hbitmap from hicon

    thanks you alot it helped
  20. problem retrieving own created DLL procedure address

    i have to solve this prooblem now before i can solve my other problem..

    so here it is:


    this->hModule = ::LoadLibrary(sModule);
    if(!this->hModule)
    return false;
    this->pCreate =...
  21. Thread: application?

    by Mitsukai
    Replies
    15
    Views
    3,055

    Re: application?

    thats a good idea, i will try right away

    hmm i got some other problems now so i cant test yet T_T

    ok the "Program Manager" now is gone. by cleverly checking if the window has a caption......
  22. Thread: application?

    by Mitsukai
    Replies
    15
    Views
    3,055

    Re: application?

    The ***? ofcors i know something is wrong ya dik head, dats why i come to dese forums. U must be the smartest @ home. Thnx for yer help laurentis
  23. Thread: application?

    by Mitsukai
    Replies
    15
    Views
    3,055

    Re: application?

    thank you arjay... that was kinda simple.
    i have two questions:
    1. why does "Program Manager" window appear in the list?
    2. how come i only get the valid icon from explorer.exe? (im sure it comes...
  24. Thread: application?

    by Mitsukai
    Replies
    15
    Views
    3,055

    listing application windows

    im using enumwindows to search for application windows.
    how can i tell if the window is an application window.
    Like the windows that appear in task manager.
    thanks
  25. Replies
    2
    Views
    2,163

    [resolved]How to create hbitmap from hicon

    how to this?

    i tried find on google, but the keyword are to wide to search T_T
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured