Search:

Type: Posts; User: eXistenZ

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. i already tried that, it is annoying because you...

    i already tried that, it is annoying because you can see it show maximized then going down to the taskbar..

    thanks
  2. well that is when i create the window.. when i...

    well that is when i create the window.. when i receive a message..
  3. yes, that will always happen when using...

    yes, that will always happen when using ShowWindow(SW_MAXIMIZE);


    i already tried removing WS_VISIBLE style, it just doesn't help, ShowWindow(SW_MAXIMIZE); shows the window no matter what and...
  4. ah lemme try to explain it again, you know MSN...

    ah lemme try to explain it again, you know MSN Messenger right? when you receive a message there it shows a window minimized to the taskbar and flashed (FlashWindow()) if that window was not already...
  5. imagine you receive a message from somebody and...

    imagine you receive a message from somebody and for that i show a window with the current message minimized, flashed and without any focus taken, if that window was maximized before it was closed it...
  6. hmm but i don't see any maximize parameter there,...

    hmm but i don't see any maximize parameter there, or am i missing something? sorry if i am..
  7. how could i send a maximize message to my window...

    how could i send a maximize message to my window without using the ShowWindow() function which actually shows the window if i use the SW_MAXIMIZE parameter..?

    :(
  8. thats correct, but im using MFC and that code...

    thats correct, but im using MFC and that code inside a CDialog class so i dont need to specify the handle :P


    please isn't there a way to do this? :(

    i think M$ didn't think about this one..
  9. show window minimized maximized without focus taken

    hey, i searched everywhere, i want to use ShowWindow(SW_SHOWMINNOACTIVE) but i want the window to be maximized and using something like this:

    ShowWindow(SW_SHOWMINNOACTIVE);...
  10. Replies
    11
    Views
    6,389

    oh don't get me wrong, i wasn't saying that your...

    oh don't get me wrong, i wasn't saying that your idea was a bad idea.. just my idea of solving a problem of mine was bad from the beginning.. i just didn't think enough of what i was doing actually.....
  11. Replies
    11
    Views
    6,389

    actually this was a bad idea.. i actually want a...

    actually this was a bad idea.. i actually want a function to check if an IP can not be used over the internet and this is impossible to know.. as there are some other special IP's which could or...
  12. Replies
    11
    Views
    6,389

    well theres a server with a real IP and theres a...

    well theres a server with a real IP and theres a client from that server's LAN that connects to the real IP of that server, if you get the IP of the client it will be a private one.. im trying to...
  13. Replies
    11
    Views
    6,389

    check if IP is private

    any ideas how to check if an IP is private? is there maybe a function for this that i don't know about?

    thanks
  14. Replies
    18
    Views
    13,091

    i have found a way to make it work good using the...

    i have found a way to make it work good using the SendMessage(WM_NCLBUTTONDOWN, HTCAPTION, 0); line of code in double click events..



    void CTEST2Dlg::OnLButtonDblClk(UINT nFlags, CPoint point) ...
  15. Replies
    18
    Views
    13,091

    oh, this one doesn't but double clicking the...

    oh, this one doesn't but double clicking the second window is like double clicking the tray icon which should be pretty much the same, atleast it reproduces the problem exactly the same.. :P

    sorry...
  16. Replies
    18
    Views
    13,091

    i made a simple test project if you didn't get my...

    i made a simple test project if you didn't get my problem and never reproduced it, it will say what to do exactly..

    edit: please rename it to TEST.zip lol
  17. Replies
    18
    Views
    13,091

    oh sorry then, i didn't know about that i...

    oh sorry then, i didn't know about that

    i still tested on both modeless and modal dialogs and it is the same problem and i handle only WM_CLOSE on them

    thanks
  18. Replies
    10
    Views
    5,068

    thats the difference between making something for...

    thats the difference between making something for money and making something for free and what im making it is for free :P
  19. Replies
    18
    Views
    13,091

    i wasn't trying to be mean, sorry if i made you...

    i wasn't trying to be mean, sorry if i made you think that :P

    im just having a lot of problems and it never ends

    by the way my application doesn't hide or go to tray when i click the minimize...
  20. Replies
    18
    Views
    13,091

    it is the main window created modally, why is...

    it is the main window created modally, why is that so important?

    the problem is that CDialog::OnClose() function does something which i don't know (i wish i knew), i deleted that line to prevent...
  21. Replies
    18
    Views
    13,091

    actually the solution i posted doesn't work good...

    actually the solution i posted doesn't work good all the time

    on double click events it does weird things

    if anybody knows a solution for this please post one..

    thanks
  22. Replies
    18
    Views
    13,091

    its just a test program and i placed restore...

    its just a test program and i placed restore there so it saves me a lot of trouble

    i know it never closes unless you end task it but it reproduces the problem like on my main program

    try and...
  23. Replies
    18
    Views
    13,091

    this is just a test project but my program hides...

    this is just a test project but my program hides the window on Close event and adds it to system tray where it is restored from there.. its like any program that goes to tray when you close it...
  24. Replies
    18
    Views
    13,091

    ah sorry for not explaining things better, here...

    ah sorry for not explaining things better, here is my code:


    void CTESTDlg::OnClose()
    {
    ShowWindow(SW_HIDE);
    ShowWindow(SW_RESTORE);
    // CDialog::OnClose();
    }
  25. Replies
    18
    Views
    13,091

    ShowWindow(SW_HIDE) problem

    hi, im using visual c++ 6.0 with MFC and if i minimize my dialog window to the taskbar (not by code) and then use ShowWindow(SW_HIDE); on it, then i use ShowWindow(SW_RESTORE); to show it back again...
Results 1 to 25 of 103
Page 1 of 5 1 2 3 4