Search:

Type: Posts; User: fizisyen

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    11
    Views
    1,687

    No i was wrong. Sorry. "*j = '\0'" is out of...

    No i was wrong. Sorry. "*j = '\0'" is out of loop. Then i wonder why crashing.
  2. Replies
    11
    Views
    1,687

    No i was wrong. Sorry. "j" is out of loop. Then i...

    No i was wrong. Sorry. "j" is out of loop. Then i wonder why crashing.
  3. Replies
    11
    Views
    1,687

    yeah maybe you are right. I didnt tested any code...

    yeah maybe you are right. I didnt tested any code this thread nor looked in to code, honestly. But i prefered because of working on pointer to original and returning the address approach. Surely,...
  4. Thread: wxWindows

    by fizisyen
    Replies
    1
    Views
    1,028

    what ? the same thing? it was in 2.2.9 too. Did...

    what ? the same thing? it was in 2.2.9 too. Did you tried to comment out in header?
  5. Replies
    11
    Views
    1,687

    Personally most liked Thantos' s advice. And as...

    Personally most liked Thantos' s advice. And as an alternative, dont return anything(void). And just use in func then use the same pointers later.

    CleanStream( pStr );
    printf(pStr); ...
  6. Replies
    1
    Views
    1,777

    manually or give full path for bitmap.

    manually or give full path for bitmap.
  7. Replies
    1
    Views
    2,525

    not hard. #define MY_MESSAGE WM_USER +...

    not hard.

    #define MY_MESSAGE WM_USER + 131

    and for example

    case WM_COMMAND:
    switch(LOWORD(wParam))
    {
    case ID_Button1:
  8. Replies
    4
    Views
    1,372

    these lines are wrong, IDB_ADDENTRY...

    these lines are wrong,


    IDB_ADDENTRY PUSHBUTTON "Add Entry", 304, 14, 239, 55, 14
    IDB_DELETEENTRY PUSHBUTTON "Delete Entry", 305, 75, 239, 55, 14


    must,

    ...
  9. Replies
    4
    Views
    1,372

    So far i have not see your resource.h but be...

    So far i have not see your resource.h but be resource contains an ID number. And your RC file doesnt has " #include "resource.h" " line.

    You dont need GetModuleHandle(NULL) since you have...
  10. Replies
    1
    Views
    1,423

    OK. Replying myself. Maybe somebody needs :) On...

    OK. Replying myself. Maybe somebody needs :)
    On windows, buttons and other controls are like another window. We already know
    this if ever need to subclassing a window. The same approach....
  11. Replies
    1
    Views
    1,423

    Button coordinates in dialog. Strange ?

    Hi,

    Today i was working on "PtInRect" api. I worked with a simple window and a button.

    And i saw that if mouse is over button then PtInRect is not capturing this. Then

    i changed "Button" to...
  12. Replies
    4
    Views
    2,198

    Hi Dante Shamest, Thank you. You are too kind...

    Hi Dante Shamest,

    Thank you. You are too kind to give me an example. I will look at your code. Just now, seemed will work for just my own programs' tray icon. As an early comment, was need to...
  13. Replies
    4
    Views
    2,198

    Yes, as you guessed. Sorry, couldnt explained...

    Yes, as you guessed. Sorry, couldnt explained well. I want to access to popup menu on a shortcut.
  14. Replies
    4
    Views
    2,198

    right click on an icon in systray

    Hi,

    Can we right click on an icon in systray by a shortcut key? (not own application, anyone in tray)
  15. Replies
    3
    Views
    1,032

    Thank you for you things. 1. Yes seems C code...

    Thank you for you things.

    1. Yes seems C code because i am very new in C++ but liked much :)

    2.

    Thats right too. I know it. But not important now. I am using in pushes() in fact. Thats like...
  16. Replies
    3
    Views
    1,032

    different pointer changes in same code

    Hi,

    My problem is like the below code. In "pushes" function "ptr++" is increasing 16 bytes

    and in "pops" "ptr--" code decreasing only 1 byte as normal. I didnt understand the 16.

    Why 16 and...
  17. Replies
    1
    Views
    1,293

    CButton::SetCheck void SetCheck( int nCheck );...

    CButton::SetCheck
    void SetCheck( int nCheck );

    Parameters

    nCheck

    Specifies the check state. This parameter can be one of the following:

    Value Meaning
  18. Replies
    3
    Views
    1,932

    hmm, like boomerang i reply to myself. I forgot...

    hmm, like boomerang i reply to myself. I forgot to write to forum my solve. Maybe somebody needs,:p

    1. in .cpp of child dialog;

    CWnd *CWndTab1; // global

    for a control over, in...
  19. Replies
    2
    Views
    1,722

    Thank you In fact i was saw that good article...

    Thank you

    In fact i was saw that good article in CodeTools but this is in CodeGuru. Anyway, i couldnt noticed the differences of



    ListView_SetBkColor and ListView_SetTextBkColor
    ...
  20. Replies
    2
    Views
    1,722

    ListView and color

    Hi,

    I want to adjust color of ListView. In fact i did it. When window firt opened it look ok(i used LVM_SETBKCOLOR). But after filling with items with a command, it is getting back to white. This...
  21. Replies
    3
    Views
    1,932

    Thank you swoopy, error C2248: 'OnInitDialog'...

    Thank you swoopy,

    error C2248: 'OnInitDialog' : cannot access protected member declared in class 'CTabOne'

    this is the error i get. I suppose maybe can use accessors, not sure but, in fact i am...
  22. Replies
    9
    Views
    19,124

    temp!='\0'

    temp!='\0'
  23. Replies
    3
    Views
    1,932

    accessing Class members

    Hi,

    I attached a project about my question. It is created by a class which i found in CodeGuru, a TabControl. From the main dialog file(MyTabExampleDlg.cpp) i want to get the handle of the button...
  24. Replies
    6
    Views
    1,643

    I suppose my problem about, win98(not SE). ...

    I suppose my problem about, win98(not SE).

    Microsoft Knowledge Base Article - 214408 (Q214408)

    is explaining such problem. But is fixed in SE. Maybe somebody looks here in future. Must think...
  25. Replies
    6
    Views
    1,643

    Thank you Salem, but as i discussed my last post,...

    Thank you Salem, but as i discussed my last post, i tried all of them in that link too(as others), even i mostly become hopeful in fact.

    I am already searching microsoft articles about this...
Results 1 to 25 of 38
Page 1 of 2 1 2