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

Search:

Type: Posts; User: hypheni

Page 1 of 35 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    18
    Views
    4,605

    Re: [RESOLVED] MFC Application UI develop idea

    Are you mixing Form based application with VC++ ?. Your base application written using which framework ?
  2. Replies
    18
    Views
    4,605

    Re: MFC Application UI develop idea

    I don't know how did I missed that simple Child style in resource editor properties. I was just Creating the child with parent pointer passed to it. Anyways thanks for pointing me to the correct path.
  3. Replies
    18
    Views
    4,605

    Re: MFC Application UI develop idea

    Read some tutorials on Internet for getting the whole VC++ dialog based programming. What you need to do is Create a dialog from resource editor and draw a button from the toolbox there. Then you...
  4. Replies
    18
    Views
    4,605

    Re: MFC Application UI develop idea

    Yes nested dialog. But current my child dialog wont have any title bar. So user wont understand by view that its a child dialog. But what my problem is: Im not able to move the child window along...
  5. Replies
    18
    Views
    4,605

    Re: MFC Application UI develop idea

    Yes. I do need all custom buttons and all. I need to place images on buttons and dialogs. And for me it will be faster.

    Currently what I have done is, created one parent dialog which has all the...
  6. Replies
    18
    Views
    4,605

    Re: MFC Application UI develop idea

    Actually the UI can be achieved by many ways ie: Painting method, Creating child dialog and as said by VictorN by Property page method. What ever you want. I don't know C# but you can do it easily...
  7. Replies
    18
    Views
    4,605

    Re: MFC Application UI develop idea

    Never used this class. Time to learn something new.
  8. Replies
    18
    Views
    4,605

    [RESOLVED] MFC Application UI develop idea

    I'm on a process to build a new application which will have left menu and corresponding screens for each button. You can say a Vertical tab like interface. For a more clear picture I have prepared a...
  9. Replies
    8
    Views
    9,091

    Re: How to convert CString to std::string?

    You can use ATL class & macros to make the process easier.



    CString cstrSample = _T("Your cstring goes here");
    CT2CA szSample(cstrSample);
    std::string strSample(szSample);
  10. Replies
    8
    Views
    2,714

    Re: Array of CString size checking

    Yes. Currently I'm passing the array size as int.
  11. Replies
    8
    Views
    2,714

    Re: Array of CString size checking

    I need to check the size of the pointer when it has been captured inside my very own function. Can I use the same for CString *cstrTextArr ?
  12. Replies
    8
    Views
    2,714

    Re: Array of CString size checking

    Yes, actually I'm doing my part of code on top of another person's implementation.
  13. Replies
    8
    Views
    2,714

    Array of CString size checking

    //Class header

    CString m_cstrArry[5];




    //Class source

    void Ctry4Dlg::OnInitDialog()
  14. Replies
    7
    Views
    2,321

    Re: javascript effect in vc++

    Yes you need to have some grip on VC++ alnog with C++ to do this. And its quite possible to implement the same in desktop application.
  15. Replies
    7
    Views
    2,321

    Re: javascript effect in vc++

    A quick and easy solution would be using MouseMove() message handler to track hovering area and change respective image using memory dc and BitBlt and finally DrawText on desired location.
    ...
  16. Replies
    4
    Views
    1,753

    Re: [RESOLVED] Adobe Activex integration problem

    An additional query. In some project I saw they created a object of the ActiveX controller class and manually created the window for pdf viewing instead of DDX.

    What is better approach ?
  17. Replies
    4
    Views
    1,753

    Re: Adobe Activex integration problem

    Thanks.
    I laughed on myself a lot for this. LOL.
  18. Replies
    4
    Views
    1,753

    [RESOLVED] Adobe Activex integration problem

    I'm trying to open PDF file in my MFC application. For this I have installed Adobe Reader 10 and added the ActiveX from resource editor to my dialog.

    Created a variable of that type and trying to...
  19. Re: CButton SetCheck problem with Unchecking

    Well, there was some focusing issue I guess. Still I replaced my code with GetCheck() instead of GetState().
  20. [RESOLVED] CButton SetCheck problem with Unchecking

    One small problem is heating me up so finally posted here to get the solution. As the thread name, Im trying to Uncheck a Checkbox control with following code.



    else if((point.x >=...
  21. Re: Resource editor, failed to initialize ActiveX

    Well it a vast application and COM server instance is being created from very inner level.

    Finally I have done this.
    The problem was with GUID ie: application's .rc file and ocx's control...
  22. Re: Resource editor, failed to initialize ActiveX

    I checked. Nothing is there.

    What I think is, Debugging / Finding manually the flaw in process which I have done is better. As I could not find any solution to open dialog in resource editor...
  23. Re: Resource editor, failed to initialize ActiveX

    No, new ocx is getting registered in WinCE device without any errors. So, I believe the ocx created was correct, but somehow the linking between exe and ocx was not done correctly.

    While I was...
  24. [RESOLVED] Resource editor, failed to initialize ActiveX

    I'm working on a project which consists of several ocx loaded by one exe. The platform is WinCE. Now I'm on a process to create a new ocx. I do have a copy of those ocx projects in Win32 platform....
  25. Replies
    11
    Views
    2,468

    Re: Detecting Garbage chars in CString

    Well the code is buggy as I asked to the original author.

    Ans.
    1. Yes
    2. 0 index holds some discard able data
    3. Well, I omitted that line and working same, but it is the indicator for the end...
Results 1 to 25 of 866
Page 1 of 35 1 2 3 4





Click Here to Expand Forum to Full Width

Featured