Search:

Type: Posts; User: Gugge

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Thread: loop

    by Gugge
    Replies
    2
    Views
    894

    Hi Try this code and you will get your answer.....

    Hi
    Try this code and you will get your answer..
    It will go to statement #2



    #include <stdio.h>
    #include <conio.h>
  2. Replies
    7
    Views
    1,620

    OK to start out with I got: typedef struct...

    OK to start out with I got:


    typedef struct TreeCell *Treeptr;
    struct TreeCell
    {
    struct TreeCell *parent;
    struct TreeCell *left;
    struct TreeCell *right;
  3. Replies
    7
    Views
    1,620

    Tx for answering, but I not sure I understand . ...

    Tx for answering, but I not sure I understand .

    I do need to delete a number second time it is comming in..

    This is how it works.
    A software is counting which phonenumbers is calling a...
  4. Replies
    6
    Views
    84,524

    If you wish to use clearscreen in testmode.. I...

    If you wish to use clearscreen in testmode..
    I can use clrscr();
    Remember to include ...
    #include <conio.h>
    Conio is not ANSI C, but Borland Extension I think!!!

    Then you can write
    clrscr();...
  5. Replies
    7
    Views
    1,620

    BinaerTree Sorting....How to delete ?

    I have made a Bintree, where I sort numbers.
    It can fx be phonenumbers.
    But how do I delete on in the memorystack,
    fx if a numbers is is in the stack and the number is drawn again It has to...
  6. Replies
    3
    Views
    1,158

    I'm not sure, I understand it. How can I see...

    I'm not sure, I understand it.

    How can I see what my memo is called, so I can see if the right name is on the memo.

    Is it possible to fx. right click on a memo, and then get the name from it.?...
  7. Replies
    1
    Views
    983

    Around the Clock. Hour function ??

    Hi I'm trying to make a program, which can calculate in minuts and hours.
    If I have the time 1140 and add 40 min. so It should tell me that the time = 1220, and not 1180.

    Dows anyone have a good...
  8. Replies
    3
    Views
    1,158

    What is my Memo's Name ??? Any ideas?

    How do I get in touch with my Runtime-Made Memo.
    How do I call them, if I like to write some TEXT in some of
    them...?
    I have tried to call some names, but It has to be called runtime, 'couse at...
  9. Replies
    4
    Views
    2,383

    First: Couldnt' I also use this. void...

    First:

    Couldnt' I also use this.

    void __fastcall TBagground::testbuttonClick(TObject *Sender)
    {
    TMemo *memo1 = new TMemo(this);
    memo1->Parent = this;

    memo1->Left = 100;
  10. Replies
    4
    Views
    2,383

    Hi tx for answering. It worked allmost. ...

    Hi tx for answering.

    It worked allmost.

    There are the only changes I made to your answer...

    void __fastcall TBagground::testbuttonClick(TObject *Sender)
    {
    TMemo *memo1 = new...
  11. Replies
    4
    Views
    2,383

    Insert TMemo on my Form ? Help Please ? C++Builder 4.0

    Using C++ Builder 4.0

    I need to push a button and insert a Memo on my Form.
    Here is my code, what am I doing wrong...
    This doesn't work proper...

    void __fastcall...
  12. Replies
    2
    Views
    1,802

    i just need to make a simple question on the...

    i just need to make a simple question on the Interface.
    fx How many fields do you want.??

    then I write in: 10 ....and hit a button.

    Then it should automatically make 10 memofields on the...
  13. Replies
    2
    Views
    1,802

    Dynamically programme in C++ Builder..Help

    I using C++ Builder and I making a program to a bowling center.
    I can make the whole thing, but I hard-code the Graphic User Interface.

    And then I can make fx 10 bowlings-allies, but If someone...
  14. Replies
    6
    Views
    1,294

    I'm using C+ Builder. There comes a exe file,...

    I'm using
    C+ Builder. There comes a exe file, but when I can only use the exe file with alot of dll files etc.

    So I would make a setup file to unpack the whole thing...
  15. Replies
    6
    Views
    1,294

    How do I make a Setup.exe ??

    I have made a program, but how do I make the setup.exe file to the program so it's easy to install..

    tx for you help

    Gugge
  16. Replies
    7
    Views
    1,170

    isn't main suppose to be int main? -------- ...

    isn't main suppose to be int main?
    --------

    no, because all names and variables is all with the "label" int before them.
    It's standard in the compilers understanding of the language.

    It only...
  17. Replies
    2
    Views
    1,131

    Search in a file for some data ???

    What is the best way to search for some data in a file.

    I have used:


    if(seekfile)
    {
    while(fgets(DataBuffer,(int)sizeof DataBuffer, seekfile) != NULL)...
  18. Replies
    5
    Views
    1,000

    Delete Data in a file ?????????

    How do I seek and delete in a file ?

    I need to find a number in a file, and delete it.

    seekfile = fopen("seeknr.dat","a+");

    What shall I use to open the file with.
    a+ is only to append some...
  19. Replies
    2
    Views
    770

    Tx I have been over that thought too, but what...

    Tx I have been over that thought too, but what can be done then..
  20. Replies
    2
    Views
    770

    Pointer to Pointername..???

    How can I make a pointer til the Memoname.
    I have made 6 Memoboxes in C+Builder.

    And I need to call the 6 names from the same function.
    ex:
    int x;
    char buf[80] = "b1";
    char tal[4];
    ...
  21. Replies
    2
    Views
    1,687

    save text to file??

    C+Builder problems.
    How do I write some text in a label, where after pushing Enter it will be saved into a file.

    And the Question goes the other way around.
    How can I read a file into a label. ...
  22. Replies
    3
    Views
    12,156

    I thought it was 2 seperated forums.... sorry......

    I thought it was 2 seperated forums....
    sorry... I just needed to ask how it would seem in C++ instead of C.
  23. Replies
    3
    Views
    12,156

    gettime from C to C++ ??

    How do I write the in C++, it's should be called from a program a made i C++Builder, but I can't call it when it is written in C.
    It comes up with a error:
    canot convert 'void *' to 'char *'
    ...
  24. Replies
    9
    Views
    1,370

    Sorry no need to reply to this!!

    I figured it all out.
    Tx a lot for all your help...
  25. Replies
    9
    Views
    1,370

    No warning/Errors now, but nothing?

    Now it seems to work , but not text is comming up.

    Is the something missing.
    Here is the whole test code:

    ---------code clip

    #include <stdio.h>
    #include <conio.h>
    #include <alloc.h>
Results 1 to 25 of 64
Page 1 of 3 1 2 3