Search:

Type: Posts; User: switchcase

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    2,010

    I see. Thanks for the help, I didn't actually...

    I see. Thanks for the help, I didn't actually think about that. That probably would have ended up causing hours of frustration. seems I'll have to store th variables passed to CreateFont instead.
    ...
  2. Replies
    6
    Views
    2,010

    Writing a HFONT to file.

    Hi, I'm just wondering how the best way to write a HFONT variable into a file is.
    My initial thought was to use an ifstream but obviously I cannot stream a HFONT data type. So should I typecast to...
  3. Replies
    6
    Views
    3,860

    ...Ooops.... no. Sorry for wasting your time....

    ...Ooops.... no.

    Sorry for wasting your time. I'm an idiot.
    The help is much appreciated despite, thankyou.
  4. Replies
    6
    Views
    3,860

    No need to apologise. I've tryed using...

    No need to apologise.

    I've tryed using InitCommonControls() just before reading your recent reply, after reading through MSDN. Unfortunatly Im have problems getting this to work, as whenever I...
  5. Replies
    6
    Views
    3,860

    How would this help at all? Thanks for the...

    How would this help at all?

    Thanks for the reply.
  6. Replies
    6
    Views
    3,860

    Windows API... Status Bar problems.

    Hi. I'm trying to put a status bar in my win32 app, using the following code:
    (in case of WM_CREATE Message)



    HWND hStatus;
    int statwidths[] = {100, -1};

    hStatus = CreateWindowEx(0,...
  7. Replies
    13
    Views
    1,966

    Thanks for the replies everyone. You have been...

    Thanks for the replies everyone.

    You have been very helpfull. Thanks!
  8. Replies
    13
    Views
    1,966

    I know that. I thought so. But how does...

    I know that.




    I thought so. But how does this make it possible to dynamically create BBRECORDs?

    Thanks.
  9. Replies
    16
    Views
    3,580

    I recommend using a physics API, it'll do all the...

    I recommend using a physics API, it'll do all the nasty stuff for you.
  10. Replies
    13
    Views
    1,966

    Thanks for the fast reply. I think you...

    Thanks for the fast reply.

    I think you misunderstood my question though. It's my aim to create a class later. I understand that typedef does not create a class. I suppose my question is; what...
  11. Replies
    13
    Views
    1,966

    typedef help

    Hi, i'm a little rusty with C++. Well, actually this is something that in the past I kind of overlooked and never needed. And after around six months of doing absolutly no programming what-so-ever;...
  12. Replies
    7
    Views
    1,931

    LOL. Sorry I've been trying to get text from the...

    LOL. Sorry I've been trying to get text from the wrong edit control. Doh!

    Ive decided not to use a class now.

    now Ive a got a problem with this though (from my dialog procedure):



    char...
  13. Replies
    5
    Views
    1,240

    There's loads of different types and classes for...

    There's loads of different types and classes for strings that you could use. Do some research.
  14. Replies
    30
    Views
    12,600

    C# sucks. C and C++ will never die out. ...

    C# sucks. C and C++ will never die out.

    Anybody who thinks that the C and C derived languages are dying out because of the web is a complete idiot.
    Hell id like to see the day when we run OS's...
  15. Replies
    9
    Views
    4,544

    I taught myself C++. I didn't actually use any...

    I taught myself C++. I didn't actually use any books, instead I used tutorials from the internet (I found the CProgramming.com tutorials extremely helpfull) and went through examples, changing parts...
  16. Replies
    7
    Views
    1,931

    Oh yeah sorry, forgot to post that bit. Here...

    Oh yeah sorry, forgot to post that bit.

    Here it is:


    hConvoEdit = CreateWindowEx(WS_EX_CLIENTEDGE, "EDIT", "",
    WS_CHILD | WS_VISIBLE | WS_VSCROLL | ES_MULTILINE |...
  17. Replies
    7
    Views
    1,931

    'hConvoEdit' is a global variable: HWND...

    'hConvoEdit' is a global variable:


    HWND hConvoEdit;


    This is where 'options.dispname' is created inside a class:


    public:
  18. Replies
    7
    Views
    1,931

    getwindowtext() problem

    Hi,

    I've got a problem trying to get some text from a edit control.

    Here's my attempt to get the text from 'hConvoEdit' and store it in the char array 'dispname' which is from a class.


    ...
Results 1 to 18 of 20