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

Search:

Type: Posts; User: humptydumpty

Page 1 of 80 1 2 3 4

Search: Search took 0.31 seconds.

  1. Replies
    7
    Views
    1,021

    Re: Help for Multidimensional Array c++

    use vector vector<vector<int> > array2D. Now add the item to vector and perform delete etc to know more in details. Just debug your code.
  2. Replies
    7
    Views
    1,021

    Re: Help for Multidimensional Array c++

    Did you tried anything .Can you show your code here along with the problem you are facing .
  3. Replies
    2
    Views
    3,752

    Re: resizing a 2D vector of structs

    Why not simply create a new one and copy the content of old vector to new and then free the old vector . Any internally resize is also going to do this only.
  4. Replies
    5
    Views
    922

    Re: passing on a variable at runtime

    Global or Static variable is a good idea as due to their file scope they will already known to other function .Just use pointer type and check for NULL or nullptr etc.
  5. Replies
    4
    Views
    7,558

    Re: How to convert a program to 64 bit?

    If your exe and all dependent dll are built in 32 bit then it will work fine on 32 bit as well.As other mentioned this is a dependency issue .Did you tried checking dependency of your program and...
  6. Re: What will happen if I brutally force to stop an application when ptrs are smart

    It will Stop :) That's all
  7. Replies
    4
    Views
    1,066

    Re: help in identifying the crash

    Why not simply create a Crash dump inside your code and once you get your dmp file use windbg to analyze it . It is pretty straight forward.
  8. Replies
    3
    Views
    1,235

    Re: How create child window?

    You can Create child window by using WS_CHILD as mentioned by igor and don't forget to provide the handle of it's parent window while creating the child.
  9. Replies
    4
    Views
    4,776

    Re: Help with structs

    What's the problem here . Correct me if i am wrong looks like you want to read entire file in one shot am i right. Did you tried using ifstream::rdbuf() etc.

    Thanks
  10. Replies
    29
    Views
    10,961

    Re: microsoft ui automation doubt

    Atlast I am done with all. So i got full understanding of MSUI .Ty everyone for your help .Very soon i will update this thread with code and sample.
  11. Replies
    9
    Views
    1,451

    Re: Color for static text control

    It's always good to create object in constructor and delete it in destructor .try to avoid creating brush under your WM_CTLCOLOR it will just keep creating new brush every time without deleting them...
  12. Replies
    18
    Views
    32,644

    Re: ShellExecuteEx()

    I am not sure what you mean by not working try to use GetLastError() if function get failed .Which will help you to understand the reason of your problem.

    Thanks
  13. Replies
    9
    Views
    1,451

    Re: Color for static text control

    Handle WM_CTLCOLOR inside your application .For more detail have a look in MSDN.

    Thanks
  14. Replies
    29
    Views
    10,961

    Re: microsoft ui automation doubt

    Thanks Arjay for your time and effort. As i am already with MSUI automation and i got a lot of idea basically how it is working . Yes that is true that couple of places i am not sure but still i am...
  15. Replies
    29
    Views
    10,961

    Re: microsoft ui automation doubt

    Tat's what my requirement and i have to do that I am able to finish this by using other automation stuff .But i have to use MS ui this time. And a small confusion when you are saying Active...
  16. Replies
    29
    Views
    10,961

    Re: microsoft ui automation doubt

    Thanks for your Reply . Windows Software Development Kit (SDK) contain example of UI automation with List Item .I had tried that and that sample give me some idea .But still not fully understand the...
  17. Replies
    29
    Views
    10,961

    Re: microsoft ui automation doubt

    We can use C++ with Microsoft UI am pretty sure about it .Even platform SDK include a List box sample too for Microsoft UI automation So by that atleast i got some idea but confusion is how to...
  18. Replies
    29
    Views
    10,961

    Re: microsoft ui automation doubt

    Hi Thanks for your reply. Actually i already had gone through that .And regarding control had written my own class which basically exposes all the facility of grid control to the outer work so from...
  19. Re: Displaying Mouse co-ordinates in an edit box

    Apart from above suggestion .Why not put a tooltip on Mouse pointer itself . Instead of using any third control .

    Thanks
  20. Replies
    29
    Views
    10,961

    Re: microsoft ui automation doubt

    Anyone ?
  21. Replies
    29
    Views
    10,961

    Re: microsoft ui automation doubt

    Yes. And i had made some progress too . But still a lots of problem are there . Will appreciate if you can help me to resolve this problem.Even we can take scneatrio of a List control with report...
  22. Replies
    29
    Views
    10,961

    Re: microsoft ui automation doubt

    I am having a application with Grid Control . Now i am implementing Microsoft UI automation on this .So that from UI spy++ i can check all the information of grid control cells . And had a test...
  23. Replies
    29
    Views
    10,961

    Re: microsoft ui automation doubt

    Hi Thanks for your reply .I am using stringrey Rogue Wave Software stingray grid and in my case everything in pure C++ .Had implemented my Class for exposing grid functionality . And i had a dummy...
  24. Replies
    29
    Views
    10,961

    Re: microsoft ui automation doubt

    Thanks for your ans. As my question it self tells that its a microsoft UI automation q .Don't know what else to explain here .My question is i had a grid control and i want to perform MS UI...
  25. Replies
    1
    Views
    1,207

    microsoft ui automation doubt

    Hello All,
    I had just Started working on Microsoft UI automation .It's pretty confusing to me as such there is no article and tutorial for doing stuff in C++.I learned Couple of things .SO at this...
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured