Search:

Type: Posts; User: spidereen

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    12
    Views
    2,910

    For a multi OS boot you could try this. ...

    For a multi OS boot you could try this.

    Partition your hard drive with either fdisk (wipe everything) or partition magic (resize current drive without loosing everything).

    Install your Windows...
  2. Replies
    298
    Views
    167,137

    $$$ They may need coders to develop new military...

    $$$ They may need coders to develop new military software. $$$
  3. Replies
    26
    Views
    6,291

    Poll: If you spent 1 year working on a project, would...

    If you spent 1 year working on a project, would you give it for free. I don't think so.

    Programmers can't live on air alone.


    RE earlier post: Good point about the share prices.
  4. Replies
    22
    Views
    4,818

    Poll: There is a lot to do with the name. If you were...

    There is a lot to do with the name. If you were looking throught the phone book and saw two companies.

    One with a nice name and logo, the other with a dull name and small logo. It don't matter how...
  5. Replies
    12
    Views
    5,699

    Anybody know of COBOL jobs one could do from home.

    Anybody know of COBOL jobs one could do from home.
  6. Replies
    47
    Views
    9,692

    Poll: College is a real job. Long hours and little or...

    College is a real job. Long hours and little or no pay. But great holidays.
  7. Replies
    1
    Views
    2,111

    What happened the Open source poll

    What happened the Open source poll ???


    For had 4 votes
    Against had 2 votes.

    Was it censored?
    Is this site hosted on a windows server?
  8. Replies
    26
    Views
    6,291

    Poll: Open Source or not

    I was wondering, sence nearly everybody on this site is a programer, how do people feel about open source and providing software for free.

    Is the common belief: Pro open source, provide for free
    ...
  9. Replies
    26
    Views
    3,816

    Poll: What do ye mean by vectors. Are ye talking about...

    What do ye mean by vectors. Are ye talking about linked list.
    Isn't an array just like a fixed pointer and indexing into it is like pointer arithmetic.

    array[10]

    &array + 10

    Maybe I am...
  10. Replies
    7
    Views
    1,153

    Colin you are not new to this. You have been...

    Colin you are not new to this. You have been trying to program for 4 years now.
    Come on. Stop complaining.
  11. Replies
    5
    Views
    3,124

    Try using a while loop while (...

    Try using a while loop




    while ( condition)
    {
    //code to loop
    }
  12. Replies
    15
    Views
    1,674

    Yeah I tried store =...

    Yeah I tried



    store = ChildForm[1]->imgScene->Canvas->Pixels[1][1];



    And this returns a pointer error during execution.
  13. Replies
    15
    Views
    1,674

    Thanks for your help. But I tried that. It...

    Thanks for your help. But I tried that. It compiled. But during execution it crashed with pointer errors.
  14. Replies
    15
    Views
    1,674

    I think i'll go back to a SDI application. Not as...

    I think i'll go back to a SDI application. Not as good but it will do. Life is too short to be fn around with simple problem that are probably smacking you in the face, but you are looking at it so...
  15. Replies
    0
    Views
    906

    Need Help. Going Insane

    I have an MDI application, been developed in C++ Builder. On each child form there is an image object.
    To cycle through the child forms I use a For loop.
    My problem is this.
    Going through the...
  16. Replies
    15
    Views
    1,674

    Need Help. Going Insane

    I have an MDI application, been developed in C++ Builder. On each child form there is an image object.
    To cycle through the child forms I use a For loop.
    My problem is this.
    Going through the...
  17. Thread: Image Object

    by spidereen
    Replies
    1
    Views
    867

    Image Object

    Does anybody know, in Borland C++ Builder is the 2D array of Pixels of an image object stored as a standard array. i.e. contiguous in memory.

    Thanks.
  18. Replies
    1
    Views
    1,272

    List of nodes

    I have a struct as follows



    struct node{
    int x;
    int y;
    node *next_nodex;
    }
  19. Thread: Inverse Tan

    by spidereen
    Replies
    2
    Views
    4,157

    Its ok people. I just have to multiply the answer...

    Its ok people. I just have to multiply the answer by 57.2957795 to convert it to degrees. Sorry for wasting your time. I didn't understand it when I posted it.
  20. Thread: Inverse Tan

    by spidereen
    Replies
    2
    Views
    4,157

    I don't want to limit the result to between -pi/2...

    I don't want to limit the result to between -pi/2 and pi/2
  21. Thread: Inverse Tan

    by spidereen
    Replies
    2
    Views
    4,157

    Inverse Tan

    I am trying to calculate the inverse tan. The arc tan returns the value between -pi/2 to pi/2.

    How would I calculate the inverse tan with out a calculator.

    Thanks
  22. Replies
    5
    Views
    5,241

    I have an e-book and there is a section to...

    I have an e-book and there is a section to convert a PNG to bitmap if that is any good to you. The book is 13.5MB and is for Borland C++ Builder.

    Let me know if you want it.
  23. Replies
    3
    Views
    1,124

    Ohh remember '1' is not the same as 1. You may...

    Ohh remember '1' is not the same as 1. You may need to convert from ASCII character to digit.
  24. Replies
    3
    Views
    1,124

    If you can get 1 digit at a time try this. ...

    If you can get 1 digit at a time try this.





    number = 0;
    input = read from file
    while (is_digit(input))
    {
  25. Replies
    2
    Views
    820

    In an MDI application in Borland C++ Builder. If...

    In an MDI application in Borland C++ Builder.
    If the list is declared in the Parent form globally is it visible in each of the child forms.

    I know global variables is bad programming practice
Results 1 to 25 of 36
Page 1 of 2 1 2