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

Search:

Type: Posts; User: DjChris14

Page 1 of 3 1 2 3

Search: Search took 0.08 seconds.

  1. Replies
    8
    Views
    1,194

    Re: How can i use shortcut keys?

    in additional to it... if i dont register the control shortcuts of command button, is there an effect to it?
  2. Replies
    8
    Views
    1,194

    Re: How can i use shortcut keys?

    i cant post the code because i havent started to put short cuts... anyway ill give you the logical flow what i wanted to do...

    in my dialog, i have several controls like radio button(3), check...
  3. Replies
    8
    Views
    1,194

    Re: How can i use shortcut keys?

    i forgot to add... im using sdi application and all modules are in modal state....
    so every dialog that pops-up will have different shortcut approaches...
    i need some code samples to be my pattern...
  4. Replies
    8
    Views
    1,194

    Re: How can i use shortcut keys?

    can you give me a code snipet so i can have a good pattern... thats all..
  5. Replies
    8
    Views
    1,194

    How can i use shortcut keys?

    good day to all!i try to check some thread regarding shortcut keys but i cant find a good one.

    the scenario here is that i want to impliment actions using keyboard inputs. I may press f1-f8 and...
  6. Replies
    5
    Views
    772

    Re: a puzzle about DB in the vc

    it would be easier for you if you use ADO connection...
    you map your db thru DSN or DSNless connectivity...
  7. Re: Which is best? (by Optimization & Speed)

    thanks mr.gstercken...

    i just looking about this area due to optimization of codes regards of usage and implimentation in a system.... some of my officemates always use the UpdateData function...
  8. Re: Which is best? (by Optimization & Speed)

    i see.. i always find some of the codes from former officemates and sample codes in the net that uses the UpdateData function just to reflect/retrieve the values to the control and vice versa. im...
  9. Which is best? (by Optimization & Speed)

    Im experimenting something in my codes in MFC...
    i use GetDlgItem function rather than creating a variable for a specific control (to avoid using UpdateData function).

    Which is better among them?...
  10. Replies
    10
    Views
    1,913

    Re: Another Release Bugs...

    To mick: how can i use the HRESULT command? how can i change it to CString so i can pop it as message box...

    To Kuphryn : Im trying to use the Olly Debugger... hope i understand some of its...
  11. Replies
    10
    Views
    1,913

    Re: Another Release Bugs...

    is it possible that msado15.dll could be corrupted or something? i tried to compiled my program in another computer and transferred the released exe and it works very well... the only error that...
  12. Replies
    10
    Views
    1,913

    Re: Another Release Bugs...

    to kuphryn: how can i use the SoftIce program? Im using VC++ 6.0... i found an analysis tool Gimpel Lint but i can't afford to buy it... is there any other tools that i can used to analyze my codes?
  13. Replies
    10
    Views
    1,913

    Re: Another Release Bugs...

    i already created the exe file under Win32 Release... the program starts to excute giving my login... to give everybody an overview of my connection, i put my _ConnectionPtr under my AppClass named...
  14. Replies
    10
    Views
    1,913

    Another Release Bugs...

    Hello guys! I have encountered another problem about releasing of exe files in Release mode. It works on my pc after i configure and compiled it so i think i will have no problem when distributing to...
  15. Replies
    3
    Views
    689

    Re: Do i need a copy constructor?

    my additional codes are here:
    //Cpp file of CItem Class

    CItem::CItem()
    {
    Initialize();
    }

    CItem::~CItem()
    {
  16. Replies
    3
    Views
    689

    Do i need a copy constructor?

    Good day to all! i just have a question regarding copy constructor... i created some plain class which i just based from an example of CToken Class that never used a copy constructor... is copy...
  17. Replies
    1
    Views
    780

    Putting text in Splash Screen

    Good day to all! Im using CSplashWnd class derive from CWnd to run my splash screen. My problem is how can i put text in the splash screen (like writing the license number, owner of the software...
  18. To VladimirV: i already try your approach the...

    To VladimirV:
    i already try your approach the multi-dimensional array unable to catch the data that i have thrown. here is my code snipet:

    //header file
    typedef CStringArray *PSTRARRAY;

    class...
  19. Replies
    1
    Views
    556

    i already figured out the problem.... me and my...

    i already figured out the problem.... me and my big eyes...
  20. Replies
    1
    Views
    556

    Calling CDialog class from my Own class

    good day once again! i created a raw class and would like to call a class which is derived from CDialog class. i got these problem "syntax error : missing ';' before identifier 'dlgReportView". here...
  21. Setting size of Multi-dimensional Array dynamically

    good day to all! i would like to use a multi-dimensional array which size and range are setup dynamically. the array will be placed in the public location of my class because this array will be the...
  22. as a follow up of my question... thats all

    as a follow up of my question... thats all
  23. how will i know that my program have memory leaks...

    how will i know that my program have memory leaks in debug mode? i know that the program seems to run smoothly but internally or during running, it is possible to acquire memory resources and memory...
  24. thanks a lot guys... i already adopt the code and...

    thanks a lot guys... i already adopt the code and now it runs smoothly... another thing can anyone check this body code of mine... can this create memory leaks?

    //HEADER CLASS
    #include "BPLS...
  25. Setting Variables, Dialog Name in CMainframe

    Good day to all!

    i created a CDialog class CReportUI which is dynamically setting up its variables and dialog title called by CMainFrame class... here is my code snipet:


    void...
Results 1 to 25 of 58
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured