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

Search:

Type: Posts; User: Mercantilum

Page 1 of 10 1 2 3 4

Search: Search took 0.10 seconds.

  1. Replies
    6
    Views
    1,455

    Re: Get client area from another app window

    Hi... actually everything is graphic at the window client level ... I will use GetClientRect etc... to get the data which is actually a graphic :)
  2. Replies
    6
    Views
    1,455

    Re: Get client area from another app window

    golanshahar: it's in my initial post.... read it again

    haricmon: thanks. but you missed the FindWindowEx allowing search of child windows. you are the nearer from the solution (that i didn't know...
  3. Replies
    6
    Views
    1,455

    Get client area from another app window

    I need to get access to the client area of another window (ie from a window *not* from my program) in order to read the graphical data.

    - what is the way to do that provided that I know the name...
  4. Replies
    2
    Views
    641

    Send keys to an application

    There is a running application I did not write.
    In order to automatize some processes, the application should think the user hit some keys.
    So my program in VC++ 6 should "send keys" to the...
  5. Replies
    12
    Views
    1,212

    Re: is this possible??

    Since I have some time, let me try to clarify this.

    You need first to understand what is a variable.
    In your program, a variable is a name which an take any value, depending on its type.
    In your...
  6. Replies
    13
    Views
    2,456

    Re: Vc++6 and the STL

    1. don't tell me your reference is based on codeguru programmers, this is definitely not good for MS!
    2. no doubt about that, this is not the point.
    3. are you saying the "partial template...
  7. Replies
    13
    Views
    2,456

    Re: Vc++6 and the STL

    Ok thanks all, to take no risks I'll go for STLport.
  8. Replies
    13
    Views
    2,456

    Re: Vc++6 and the STL

    1. Microsoft delegates the development of STL to whoever they want ; when MS integrates the STL in their product, they have to ensure it's all tested and working, especially for the STL!

    2. you...
  9. Replies
    8
    Views
    1,293

    Re: Directory + Linux Problem

    Just a small note: \ instead of / was chosen by ms-dos purchased by MS a long time ago...
    Unix was the first with / which has an actual meaning.
    ms-dos had to find something to be probably...
  10. Replies
    8
    Views
    1,293

    Re: Directory + Linux Problem

    Should be working fine...
    I bet "path1" is the problem.
    Don't attempt to provide '\' separators instead of '/' to Linux... or to include drives "X:"...
    Moreover Paths are case-sensitive under...
  11. Replies
    8
    Views
    1,293

    Re: Directory + Linux Problem

    What happens? How "it is not working"?
  12. Replies
    13
    Views
    2,456

    Re: Vc++6 and the STL

    Wow! even MS recognize their incompetence to write a STL!
    Thanks a lot - that's enough ... let's go for stlport!!
  13. Replies
    13
    Views
    2,456

    Re: Vc++6 and the STL

    Well, hu... thank you.
    Any other comment? I have the latest sp6. isn't it better?
  14. Replies
    13
    Views
    2,456

    Vc++6 and the STL

    Simple concern: is the STL coming with VC++6 (sp6) reliable?

    Thanks

    (any relevant comment will get a +rating)
  15. Replies
    17
    Views
    2,127

    Re: Microsoft stops support for VS 6.0??

    According to some threads vc++6 was supposed to be supported for 10 years...

    Of course nobody expects a MS tech support to answer our calls.
    However, as said above, some SDK are not working fine...
  16. Replies
    7
    Views
    2,573

    Re: Anyone famillair with OpenSSL on VC6?

    Did you include the openssl code in your vc6 project or do you keep using it from the DLL?
    If it is the latter it should be ok, regarding the first case, you could compile separately with gcc (e.g....
  17. Replies
    5
    Views
    931

    Re: Ok gurus, Here's a fun challenge

    golanshahar provided to my mind the best C++ solution.

    However you may also create a pointer to function array and call them 1 by 1 ... (you need to instantiate one object per class)
  18. Replies
    1
    Views
    1,426

    Re: Is there a "TAIL -f" equivalent in C++?

    Not to my knowledge. However there is the same "tail" from the Cygwin distribution.

    Cygwin here is very reliable - you may install only the tools you need. You may also download the source file of...
  19. Replies
    1
    Views
    1,511

    Re: Strip debug information from a lib

    For those interested, the MS tools to extract items from a lib are

    Lib.exe
    or
    Link.exe /LIB

    downloading the 2003 Toolkit provides a Link.exe compatible with Vc .net .

    However, the Link...
  20. Replies
    1
    Views
    1,511

    Strip debug information from a lib

    Usually Libs come exempt of debug information.
    But it seems GdiPlus.lib (MS graphic lib) contains some debug information.

    - How can I strip (remove) this debug info from the Lib?

    - Is there a...
  21. Replies
    4
    Views
    4,193

    Re: Timer Vs Thread

    Two threads are two parts of a program running "simultaneously". If you have only one processor, the time of processor is shared among all the running threads of the computer and the system tasks....
  22. Replies
    6
    Views
    1,072

    Re: mutiple strings to handle ???

    can you show some code so that we can help you?
  23. Replies
    4
    Views
    1,013

    Re: Problem with friend operator overloading

    I would not consider this as a bug, probably more as a different interpretation of the C++ standards (it is very specific!).
  24. Replies
    4
    Views
    1,013

    Re: Problem with friend operator overloading

    It compiles under g++ . Could it be a .net specificity? Can you try

    1. to place the friend operator declaration before they're used in the class (as they're friend, they must maybe be read by...
  25. Re: can sumone help me pls.. i really need your help..

    Ouch! Please don't commit suicide after reading this comment;)

    Ok your problem "is or is not easy" is not the question.
    First you need to acquire some self-confidence about programming,...
Results 1 to 25 of 229
Page 1 of 10 1 2 3 4





Click Here to Expand Forum to Full Width

Featured