Search:

Type: Posts; User: kira_coder

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,391

    never mind I have found it in the Stickie...

    never mind I have found it in the Stickie programming links.

    thanks again.
  2. Replies
    3
    Views
    1,391

    Thanks for your reply. no,I don't know about...

    Thanks for your reply.

    no,I don't know about frogers source is could you please link me or tell me full name of that tutorial.
  3. Replies
    3
    Views
    1,391

    Transparent bitmaps ?

    Hello,

    I keep trying to copy a image from normal bitmap image to screen it display as rectangular object in screen while some of it is either white or some other color.
    I know since the nature of...
  4. Replies
    2
    Views
    1,025

    thanks mate,I didn't notice that msdn had this...

    thanks mate,I didn't notice that msdn had this info.
  5. Replies
    20
    Views
    5,801

    you need to pass address like so #include...

    you need to pass address like so



    #include <stdio.h>

    int main(void){

    int geti[3];
  6. Replies
    2
    Views
    1,025

    SDK path msv8

    Hi,

    I have just switched from msv6 to msv8 (microsoft visual studio IDE),
    I was just wondering how you can add sdk path from project settings,because I installed new library each time I have to...
  7. Replies
    10
    Views
    2,258

    ahh thanks mate.I thought when I add WB_TABSTOP...

    ahh thanks mate.I thought when I add WB_TABSTOP it would remove handling for TAB WM_CHAR for edit box.
    I guess I have to just subclass them and use GetNextDlgTabItem and SetFocus manually to do it.
  8. Replies
    10
    Views
    2,258

    hey mate I did the same thing,but I see it tabs...

    hey mate I did the same thing,but I see it tabs only in 1 control when it goes at that edit box it won't tab to the others I added WB_TABSTOP to child window that wants tabbing and basically my...
  9. Replies
    10
    Views
    2,258

    hi I seem have fixed the major problem of tabbing...

    hi I seem have fixed the major problem of tabbing after adding those msgs,but the problem now that only 1 control will get tabbed ? I thought the problem maybe because dialogbox implements msging...
  10. Replies
    10
    Views
    2,258

    oh yes,thanks I also found out more information...

    oh yes,thanks I also found out more information regarding this problem in msdn after you told me.
  11. Replies
    10
    Views
    2,258

    Tabs in windows childs

    Hey,

    I want to add tabbing between windows and windows I create the child window inside WM_CREATE,so all childs created are just childs of main window I want to add tabbing.So when I press tab it...
  12. Replies
    5
    Views
    1,739

    thanks for your suggestion a swell,also I didn't...

    thanks for your suggestion a swell,also I didn't know abt twips now that I read it...
    it might come handy sometimes while coding gui stuff.
  13. Replies
    5
    Views
    1,739

    thanks mate thats good way of measuring size.

    thanks mate thats good way of measuring size.
  14. Replies
    5
    Views
    1,739

    Measuring size

    Hi,

    there something I am always curious about for example when I create window I always write the size of the window statically and each time keep trying till I find my right size,but I want to...
  15. Replies
    4
    Views
    1,028

    yah nvm it was some coding problems I had after...

    yah nvm it was some coding problems I had after re checking code again,I thought it require more management for the string.
  16. Replies
    4
    Views
    1,028

    yes,but there certain stuff I want to do in...

    yes,but there certain stuff I want to do in strings that doesn't have function in wchar.h for example some languages are written from right to left,I have to convert them in order to be rightly...
  17. Replies
    4
    Views
    1,028

    Handling Unicode

    hi,

    I am coding atm something that require Unicode handling,I have read many stuff about Unicode but non display about its implementation you'd have to use some wrapper api functions to do your...
  18. Replies
    19
    Views
    10,838

    so here you free LISTdt which is on the stack or...

    so here you free LISTdt which is on the stack or do you allocate ListDt and allocate after that the linked list ? if not then thats your problem and it would lead to other problem on noticed one in...
  19. Replies
    19
    Views
    10,838

    L point to first head right ? u must freed...

    L point to first head right ? u must freed already freed memory , could you post struct.h ?
  20. Replies
    5
    Views
    1,569

    ah yes thanks it didn't come to mind to...

    ah yes thanks it didn't come to mind to getlasterror even though it worked after little delay I want to know why it doesn't work without delay.
  21. Replies
    16
    Views
    7,320

    well as for fgets because it does same thing as...

    well as for fgets because it does same thing as scanf but could read all line and add \n before NULL and for the limit I said it coz there was not for me coz ofcourse I already know that but because...
  22. Replies
    16
    Views
    7,320

    scanf stops at first space so you cant read name...

    scanf stops at first space so you cant read name such as you cant read name like 91 92 which ppl have to read there full name obviously also fgets and getchar() are stand library its not about max...
  23. Replies
    16
    Views
    7,320

    you would have to use that in a loop reading each...

    you would have to use that in a loop reading each array
    for example
    for(int i = 0 ; i < sizeof(szName) / sizeof(szName[0];i++)
    so you could read each index. but you shouldn't use what salem...
  24. Replies
    16
    Views
    7,320

    you shouldn't use const char limit since it could...

    you shouldn't use const char limit since it could lead to stack over flow if its more than 4 you should allocate it even though its would be less efficient but will help you getting away from...
  25. Replies
    5
    Views
    1,569

    hmm ?

    hmm ?
Results 1 to 25 of 34
Page 1 of 2 1 2