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

Search:

Type: Posts; User: jbp2004

Page 1 of 2 1 2

Search: Search took 0.05 seconds.

  1. Replies
    4
    Views
    2,212

    Re: PHP Basics - Frustrated

    Nice answer :thumb:
  2. Replies
    3
    Views
    733

    Re: Registry Programming via MFC

    Yes velan, you can get info you need from the above FAQs. In fact, I have developed my own version of Windows' REGEDIT application by reading those FAQs. If you want the exe and even some of my...
  3. Replies
    9
    Views
    1,166

    Re: Maybe more math than C++, but....

    let me check first if i got you right; at what value of j will the value of movement be 1? If i got your right, i wrote a piece of code to see the answer. i am not that good in math so i have to get...
  4. Replies
    1
    Views
    1,896

    Re: RegSetValueEx not working!!!???

    I got it now.

    RegSetValueEx ( hKey, csNewValName, NULL <- IT MUST BE NULL!!! In my code I wrote, dwValNameSize. I am sorry, my mistake. :)
  5. Replies
    1
    Views
    1,896

    RegSetValueEx not working!!!???

    I am making an application that works like a windows registry
    I am almost done, I can't just find out why, I got this bug which I did not encounter before. My codes has been working for the past...
  6. Thread: CListCtrl Bug

    by jbp2004
    Replies
    1
    Views
    1,620

    Re: CListCtrl Bug

    Additional:

    When browsing the registry key:
    My Computer\HKEY_CURRENT_USER\Control Panel\Appearance\Schemes

    and calling GetListCtrl() m_hWnd of ListCtrl becomes NULL. Do you know why it...
  7. Thread: CListCtrl Bug

    by jbp2004
    Replies
    1
    Views
    1,620

    CListCtrl Bug

    :confused:

    Situation:
    I am writing my own version of windows registry (regedit). I am able to load all registry keys (using RegEnumKey). I am also able to enumerate values of a given registry...
  8. I agree with Thread1. If there is a need for a...

    I agree with Thread1. If there is a need for a form to call an object in another form, programmer must explicitly define a way so that the calling form first check if the owner of the object to be...
  9. Replies
    15
    Views
    4,128

    indiocolifa, Have you found the solution to...

    indiocolifa,

    Have you found the solution to your problem with combo box? Well if not yet, below is how I did it.

    ------------------------------------------------------------------------------...
  10. Wallace@Kuo, SetWindowText() does not work for...

    Wallace@Kuo,

    SetWindowText() does not work for richedit control. You may want to take at look at the work of PlanetCPP-Chris(Hound)/Micheal(xix)

    I have downloaded the CPP project from that site...
  11. Replies
    31
    Views
    17,115

    Thank you for the corrections Mr. Bond, I can...

    Thank you for the corrections Mr. Bond, I can improve more!

    I have updated the article based on Mr. Bond's corrections.
    If you are looking for a tutorial on how to use tab control
    read my...
  12. Replies
    31
    Views
    17,115

    Don_PhrostByte, I read your problem just this...

    Don_PhrostByte,

    I read your problem just this morning. We have the same problem but my problem was solve a few days ago. Now, let me try to help you.

    You said, I've created my tab control,...
  13. Replies
    3
    Views
    1,266

    Thank you very much Mr. Bond. I really appreciate...

    Thank you very much Mr. Bond. I really appreciate you here being helpful to many codeguru members. :thumb:
  14. Replies
    3
    Views
    1,266

    How to change Dialog Background Color

    I created a dialog using MSVC++ resource editor (ID: IDC_DRAWING_AREA).
    Then I have this code:

    //Get a handle to IDC_DRAWING_AREA window
    hDwgArea = CreateDialog(hInstance,
    ...
  15. Replies
    31
    Views
    17,115

    Mr. Bond, I tried to follow through your...

    Mr. Bond,

    I tried to follow through your tutorial. When I compile the code, I got one ERROR:
    error C2065: 'PropSheet_HwndToIndex' : undeclared identifier

    Is 'PropSheet_HwndToIndex' declared...
  16. Replies
    3
    Views
    992

    I appreciate your answers. I am starting to...

    I appreciate your answers.

    I am starting to learn creating windows purely using API calls.
    I am doing it "the hard way" :)

    Once I'm done, I will make my own tutorial for this. I also want to...
  17. Replies
    3
    Views
    992

    Tab control in a Dialog

    Hi!

    After consulting a number of articles/tutorials regarding property sheet, property pages, tab control... I decided to start this thread and ask for futher help. Sorry but I really find it hard...
  18. Replies
    12
    Views
    3,407

    I made the answer to my own question :-) ...

    I made the answer to my own question :-)



    //=============================================================
    // Project : DisplayUINT
    // OS : Windows
    // File : DisplayUINT.c
    // Version :...
  19. Replies
    12
    Views
    3,407

    ok, delete this thread.

    ok, delete this thread.
  20. Replies
    12
    Views
    3,407

    It could be a homework, yes :-) I am undergoing...

    It could be a homework, yes :-) I am undergoing training on C programming. I have finished the basics including advance topics like pointers, arrays, and file handling. Now, I'm on INTERPROCESS...
  21. Replies
    12
    Views
    3,407

    Multithreading problem... can anyone solve?

    Hi !

    I am totally new to multithreading. I know some theories behind but I don't have actual coding experience. Can anyone solve the problem below?

    Problem:
    Write a program that will increment...
  22. Replies
    2
    Views
    562

    THANKS!

    Thank you!
  23. Replies
    2
    Views
    562

    how find an arithmetic operator

    Hi !

    Is there a predefined function in C which could find for an arithmetic operator from a given array?

    Example. szArray[]={"123*321"};

    How do I look for * from the array above?

    Thanks...
  24. Replies
    4
    Views
    4,592

    Kheun, Thank you for your reply. Anyway, I...

    Kheun,

    Thank you for your reply.
    Anyway, I found a shorter code though I do not know if the one I found is good to use. What do you think?

    Anyway, how does your code differs to the code I got?
  25. Replies
    4
    Views
    4,592

    Ok, I got the answer I want. Now, I want to share...

    Ok, I got the answer I want. Now, I want to share the code here


    void GetReverseByteOrder(int n) {
    union {
    int nGiven;
    unsigned char val[4];
    } HEXA;

    HEXA.nGiven = n;...
Results 1 to 25 of 31
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured