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

Search:

Type: Posts; User: Rabelo

Page 1 of 14 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    3
    Views
    746

    Re: Migrating VS2017->VS2019 LNK2019 error

    I mean not specifically like that is happening with me.

    https://www.google.com/search?client...=lnk2019+error <<=== I didn´t know that ... thank you very much...helped a lot!!!

    Basically I...
  2. Replies
    3
    Views
    746

    Migrating VS2017->VS2019 LNK2019 error

    I´m migrating a code from VS2017 to VS2019. The aplication has a core and 5 other DLLs. I link (.obj) classes develop in the core on the DLLs projects. it has worked fine until last Thursday when I...
  3. Replies
    4
    Views
    6,088

    Re: Array initialization C14

    That was exactly what I was looking for!!!

    Thank you wolle!!!
  4. Replies
    0
    Views
    4,958

    OpengGL Lag > 1 minute

    Hi !!!

    I'm starting working with openGL to get a video (Camera still) (I'm using C++ in a linux enviroment, the openCV version is 3.something) and I'm have a issue that I cant get around:

    I...
  5. Replies
    4
    Views
    6,088

    Re: Array initialization C14

    Ok 2kaud,

    Thank you!!! I will change it to vector.
  6. Replies
    4
    Views
    6,088

    Array initialization C14

    hi!

    Is there an way of initialize a array of classes with the same object without the need to repeat them?
    For exemple:



    class myclass
    {
    public:
  7. Replies
    2
    Views
    2,954

    Re: WebServices Configuration files

    Thank you for your answer Arjay, clarified my doubt.


    Carlos A. Rabelo
  8. Replies
    2
    Views
    2,954

    WebServices Configuration files

    Hi!!

    I´m a C++ programmer with more than 20 years of experience. Now I´m starting sailing on these new sea and confess I´m enjoying. That is my first question in Java and it is about...
  9. Replies
    3
    Views
    1,374

    Re: Close [X] aplication issue

    I did:



    int Maximized(0);
    CMDIChildWnd *CW(MDIGetActive(&Maximized)),*PrimCW(CW);

    while(CW)
    {
    ...
  10. Replies
    3
    Views
    1,374

    Close [X] aplication issue

    Hi!!

    I have a MDI aplication that has MDI windows and top windows and unfortunately the document interface is not implemented. When I press the X button on the aplication (not on the child frame)...
  11. Replies
    8
    Views
    17,427

    Re: Overlapped dialog that is not overlapped

    I guess you are mading some confusion with hide window and overlapped window. ShowWindow with SW_HIDE simply hide the window but maintain it on its order. If it is the topmost window it will be hide...
  12. Replies
    8
    Views
    17,427

    Re: Overlapped dialog that is not overlapped

    I found that it is because the dialog is non modal. Non modal dialogs are allways visible.

    The explanation is:

    This dialog shoud appear only when a certain window is with the focus and it must...
  13. Re: Need help in c++ filing. woking good in dev c++ but giving problem in MS visual 2

    Actually there is a litle bug on this algorythm that will break the program (or freeze the computer... :rolleyes: )
    if the element doses not exist the while won´t stop. So as this seems to be a...
  14. Re: Need help in c++ filing. woking good in dev c++ but giving problem in MS visual 2

    You are not reading every register to seek for the element to be modified. So the while is running loose till the end of the file. Do as you did on the delete function reading sequentially every...
  15. Replies
    8
    Views
    17,427

    Re: Overlapped dialog that is not overlapped

    The styles are (14CF00C4) add WS_ at beginning:

    CAPTION
    VISIBLE
    CLIPSIBLINGS
    SYSMENU
    THICKFRAME
    OVERLAPPED
    MINIMIZEBOX
    MAXIMIZEBOX
  16. Replies
    8
    Views
    17,427

    Re: Overlapped dialog that is not overlapped

    No Victor,

    I´ll do that and report the results.

    Thank you for the replay.
  17. Replies
    8
    Views
    17,427

    Overlapped dialog that is not overlapped

    Hi !!

    I´m facing a problem that simple said is "the dialog is not overlaped, it keeps at topmost". I´ve checked all creation parameters in the resource wizard and it is in overlapped mode. I...
  18. Replies
    3
    Views
    2,847

    Re: Moving files on Visual Studio

    I Got it. The problem was that the system command does not accept blanks in the names, you have to sourround them with cotes. The fanny is that _mkdir accepts.

    Thank you!
  19. Replies
    3
    Views
    2,847

    Re: Moving files on Visual Studio

    I prefer using system since is more simple,I did this already as you mentioned but is not working. I´ll try again more carefully and let you now.

    Thank you for your replay.
  20. Replies
    3
    Views
    2,847

    [RESOLVED] Moving files on Visual Studio

    I´m using VS2010 and I need to move some files using *.* from one directory to another. But it seems that <MoveFile> doesn´t accept wild cards and <system> with the move command is not working...
  21. Re: Know the direction of the navigation on a dialog

    As VictorN said:

    Note that wParam of WM_KILLFOCUS is "a handle to the window that receives the keyboard focus";

    This was a great hint. I got the Id of the edit calling GetDlgCtrlID() with the...
  22. Re: Know the direction of the navigation on a dialog

    thank you for the replies.

    I did exatly what Victor said only in the 5th edit box. It is working but I don´t want to subclass all the edit box, there are many other classes and messages envolved...
  23. [RESOLVED] Know the direction of the navigation on a dialog

    I´m developing an Application that I need to know if the user is going forward or backward on a dialog. For exemple: Supouse I have a dialog with ten edit boxes. The focus is on the 5th Edit. So...
  24. Re: Need help drawing rectangle on Windows desktop...

    What you are trying to do is not a simple task. Mainly because there is no a "window with a transparent client area", you will have to do this by yourself. One soluction is: before show the 2nd...
  25. Re: Need help drawing rectangle on Windows desktop...

    just drawn a rectangle with the rectangle function of CDC, like pDC->Rectangle on ondraw;
    As the mouse is moving you have to redraw the new rectangle. There is a problem because you will need to...
Results 1 to 25 of 341
Page 1 of 14 1 2 3 4





Click Here to Expand Forum to Full Width

Featured