Search:

Type: Posts; User: Adamkromm

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    4
    Views
    7,893

    Hi Thanks for the replies. I found the...

    Hi

    Thanks for the replies. I found the problem: it is a visual studio 2010 compiler bug. I had set it to use the 2010 compiler since some of the libraries I was using were compiled with 2010. ...
  2. Replies
    4
    Views
    7,893

    Runtime crash on ifstream destructor.

    Hi

    I'm working on a program that uses Gtkmm for the GUI under windows. The program also uses Gtkglextmm for creating a opengl capable window and GLEW for getting a OpenGL 3 context.

    Things...
  3. I know that would work -- if I pass around the...

    I know that would work -- if I pass around the C*'s individually -- but what I want is to be able to pass around a list of C*'s.
  4. I guess it's not going to be as easy as I'd...

    I guess it's not going to be as easy as I'd hoped.

    gardhr: The only problem with that suggestion is that I have more than one subsystem that needs to know about different parents. Eg, one...
  5. creating a list pointer of parent type from base type...

    I wasn't sure how to phrase the question in the title. But here is my question. First lets say I have something like this:



    class A
    {
    ...
    };

    class B
  6. Thread: .Net Charts

    by Adamkromm
    Replies
    2
    Views
    1,077

    ok, thanks.

    ok, thanks.
  7. Thread: .Net Charts

    by Adamkromm
    Replies
    2
    Views
    1,077

    .Net Charts

    Hey, I'm working on a program using C# and .Net. What I would like to have is a graph that uses polar coordinates and has 2 y-axes, each with its own series of data (they will share the same...
  8. Replies
    2
    Views
    7,287

    Main-loop vs Event driven.

    So I come from a c/c++ background, and making games required that you make a main game loop and all of that fun stuff. Recently i decided to learn and make games using C# and OpenTK and while...
  9. Replies
    6
    Views
    2,663

    while i was reading about wireless roaming one of...

    while i was reading about wireless roaming one of the articles i read showed how you could use a router as an access point, turning off DHCP and connecting the main router to one of the lan ports on...
  10. Replies
    6
    Views
    2,663

    Ok, lets see if I understood. - Port...

    Ok, lets see if I understood.
    - Port forwarding: I can set up a system to forward all information incoming on a certain port to a certain machine on the network.
    - Internet connection sharing:...
  11. Replies
    6
    Views
    2,663

    no body?

    no body?
  12. Replies
    6
    Views
    2,663

    extending/repeating a wireless signal.

    See attachment picture for a visual reference.

    I have a Base Station or router (Point A in picture). Then i have computers B and C which I want to be connected to the router (and hence the...
  13. Replies
    9
    Views
    2,220

    Ok, thanks for the help! I'll probably have more...

    Ok, thanks for the help! I'll probably have more questions when he gets the board built.
  14. Replies
    9
    Views
    2,220

    Does most hardware come with drivers for a linux...

    Does most hardware come with drivers for a linux kernel? Or how does that work?
  15. Replies
    9
    Views
    2,220

    Ok thats good for me then :P Im assuming that a...

    Ok thats good for me then :P Im assuming that a normal distro of linux would be a little bit way too much. What are some good distros that would run on something that small, and work with an ARM...
  16. Replies
    9
    Views
    2,220

    This is what it does essentially. 1. connects...

    This is what it does essentially.

    1. connects to a multicast.
    2. wait for incomming information.
    3. based on infomation recieved display a picture or text thats already on the system.
    4. go...
  17. Replies
    9
    Views
    2,220

    Embedded Systems

    Hey, a friend and I came up with an idea for a small project. But it requires that i learn how to program for an embedded system. I was wondering if anyone knows of any good tutorials on the web,...
  18. Thread: 2D arrays

    by Adamkromm
    Replies
    14
    Views
    1,769

    it seems the error i was makeing is that i was...

    it seems the error i was makeing is that i was trying to do int *array[3] instead of int (*array)[3] whats the difference?
  19. Thread: 2D arrays

    by Adamkromm
    Replies
    14
    Views
    1,769

    ok, but lets say that foo is a class instead of a...

    ok, but lets say that foo is a class instead of a function. How can i get it to keep, a reference to the original, so that at a later time foo can change the original without needing to pass it as a...
  20. Thread: 2D arrays

    by Adamkromm
    Replies
    14
    Views
    1,769

    if i understand you correctly you mean something...

    if i understand you correctly you mean something like this?:


    void foo(int **t)
    {
    int **temp;
    temp = t;
    *temp[1] = 1;
    }
  21. Thread: 2D arrays

    by Adamkromm
    Replies
    14
    Views
    1,769

    yea, i meant to say, to change the contents of...

    yea, i meant to say, to change the contents of the array. Could you show an example of how this is done?
  22. Thread: 2D arrays

    by Adamkromm
    Replies
    14
    Views
    1,769

    2D arrays

    So i can't seem to figure this one out. How do i pass a 2D array to a function by reference, or as a pointer, or any way that will allow me to edit it and have it change the original? I guess a...
  23. Replies
    7
    Views
    1,419

    thanks! Its alot more involved than i thought it...

    thanks! Its alot more involved than i thought it would be.
  24. Replies
    7
    Views
    1,419

    ok, its been a while since i've used c++, they...

    ok, its been a while since i've used c++, they use python in school... nested lists are alot easier than multidimensional arrays...

    i'll be accessing it like this

    board[x][y][attrib]...

    so...
  25. Replies
    7
    Views
    1,419

    Returning Multidimensional arrays.

    In my program i want to return a 3D array,(or an array of arrays of arrays) but I keep getting an error that i dont quite understand.



    int*** create_board(int width, int height)
    {
    int...
Results 1 to 25 of 40
Page 1 of 2 1 2