Search:

Type: Posts; User: Traveller

Page 1 of 13 1 2 3 4

Search: Search took 0.02 seconds.

  1. Thread: class help

    by Traveller
    Replies
    11
    Views
    1,317

    Could use please include in your request the...

    Could use please include in your request the specific problem(s) you are having?
  2. Replies
    8
    Views
    2,339

    Or to put it another way, namespaces are just...

    Or to put it another way, namespaces are just another way to define scope. It really is as simple as that.

    As for my comment above, in the header file for iostream (the one provided with MS...
  3. Replies
    3
    Views
    1,734

    thx for the reply but unfortunately in reading up...

    thx for the reply but unfortunately in reading up I discovered this:

    The NetUserEnum function does not return all system users. It returns only those users who have been added with a call to the...
  4. Replies
    8
    Views
    2,339

    Hmmm.....I thought the std namespace was already...

    Hmmm.....I thought the std namespace was already defined in the header file.
  5. Replies
    3
    Views
    1,734

    Network Users

    I am currently creating a DLL for use with some Office Aps and I need to be able to view usernames of all personnel who have access to the network, aka, access to the list of profiles I guess?
    The...
  6. Replies
    4
    Views
    1,055

    Sorry, I'll try to be more specific. In the...

    Sorry, I'll try to be more specific. In the program I'm using I utilize the vector class and in some instances my algorithm will return a NULL pointer if it does not intend to generate an object at...
  7. Replies
    4
    Views
    1,055

    vector template ?

    What does the vector class do if you give it a NULL pointer. Does it still add that to the array? And if so you can derive from this class correct?
  8. Replies
    17
    Views
    2,020

    No, there is nothing wrong with defining a...

    No, there is nothing wrong with defining a variable with global scope, technically that is. However if it does not need to have global scope don't give it that. My objection was to this general...
  9. Replies
    17
    Views
    2,020

    Defining global variables when you do not need to...

    Defining global variables when you do not need to will tend to land someone in trouble, not to mention just poor practice. If you are going to collect information for the caller, it is better simply...
  10. Replies
    17
    Views
    2,020

    int blah(){ int x = 5 return x; }...

    int blah(){
    int x = 5
    return x;
    }

    int main(){

    int y = blah();
    cout<<y<<endl;
    return(0);
  11. Replies
    2
    Views
    1,145

    Quick ? on Game design

    First let me tell you generally how I have set everything up. I have created a general grafx class and derived from that my specific needs such as enemies and weapons, ect. Each of my pics is an...
  12. Replies
    1
    Views
    1,033

    DirectX eqivalent

    Right now I am using the atlimage header file with transparentblt. I was wondering what the DirectX equivalent was. Any help would be great.
  13. Replies
    6
    Views
    1,405

    Sorry, that was me, evidently I'm not cookied...

    Sorry, that was me, evidently I'm not cookied anymore.
  14. Replies
    6
    Views
    1,405

    Screen capture prog

    Well I can't draw to save my life and all those sprites online have this format that I can't seem to read. So out of frustration I wrote this. When you hit enter it takes the current picture...
  15. Thread: Sprite ?

    by Traveller
    Replies
    13
    Views
    2,033

    Thanx for the info, I finally got it after...

    Thanx for the info, I finally got it after looking around on msdn. I am starting just a general space game, hence the previous posts on scrolling background and screen capture(for the sprite). I...
  16. Thread: Sprite ?

    by Traveller
    Replies
    13
    Views
    2,033

    Isn't that with DirectX?

    Isn't that with DirectX?
  17. Thread: Sprite ?

    by Traveller
    Replies
    13
    Views
    2,033

    Sprite ?

    Allright, so I have my sprite and its on a black(but can be white) background. Now I place my sprite on my scrolling background and , BAM, look a black rectangle outlining my ship with the stars...
  18. Replies
    2
    Views
    1,965

    Thanx, that explains things. I thought I...

    Thanx, that explains things. I thought I couldn't program anymore, :D
  19. Replies
    2
    Views
    1,965

    Screen Capture

    So, any one have a screen capture program? I've been playing with one but the only thing it displays is a black rectangle. Just really starting to ........ me off, if anyone has one please post, all...
  20. Replies
    1
    Views
    1,299

    Nevermind, I got it.

    Nevermind, I got it.
  21. Replies
    1
    Views
    1,299

    Scrolling Background

    Alright, so I can load a bitmap image as a background no problem, now I just can't seem to get the background to scroll. Any ideas?
  22. Replies
    3
    Views
    1,085

    int length=lstrlen(char *);

    int length=lstrlen(char *);
  23. Replies
    3
    Views
    1,575

    hmmm........ C++ board??????? What language are...

    hmmm........ C++ board??????? What language are you using for your windows Apps? MFC, WIN32 API, Visual Basic?

    By the way you'll get more input if you post in the Windows forum.
  24. Replies
    1
    Views
    1,235

    int grabinput(){ char c; c =...

    int grabinput(){

    char c;
    c = getch();

    switch((int)c){
    case 27:
    return 2;
    case 75:
    return 0;
  25. Replies
    3
    Views
    1,575

    Ok, to put a picture in your backround you need...

    Ok, to put a picture in your backround you need to have a bitmap(obviously) and to load that from a file the code will look like:



    HBITMAP backround;
    HBRUSH hBrush;
    background =...
Results 1 to 25 of 319
Page 1 of 13 1 2 3 4