Search:

Type: Posts; User: Cielo

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,561

    Writing variables to a text doc?

    So if i want to write a regular string to a text doc, i would do this...


    TFileStream *FStream;
    FStream = new TFileStream("tester.txt",fmOpenWrite);
    FStream->Write("hello",5);

    That works...
  2. good to know, do you have any suggestions for...

    good to know, do you have any suggestions for what i should be using? i would really like to be familiar with an ide that is more standard among programmers.
  3. Replies
    8
    Views
    1,236

    What should be my next step?

    (I hope this is the right board for this type of question btw)
    Here's my story so far...

    introduced to programming by a friend in 8th grade who taught me a fair amount of TrueBasic. messed...
  4. Well i have a good grasp on the basic...

    Well i have a good grasp on the basic fundamentals of C++ programming (loops, arrays, functions, classes, etc) because all i have ever done with C++ until recently was console programming. but i've...
  5. [QUOTE=Elysia;728928]No, the problem is that you...

    [QUOTE=Elysia;728928]No, the problem is that you didn't explain yourself enough so that people could help.QUOTE]

    the thing you guys aren't realizing is that i dont know what to say to explain...
  6. Anyone know of a forum where beginners can get help??

    when i came to this forum, i was under the impression it was for beginners to get help in C++ programming. but the last three questions i asked were all described as being 'too vague' or 'not having...
  7. Replies
    5
    Views
    1,159

    hm you may have misread that because i have no...

    hm you may have misread that because i have no struct in form2, only form1. i want to be able to use the values of the struct from form1 in form2.

    and you said "make a new struct in Form2 and...
  8. Replies
    5
    Views
    1,159

    passing a Struct from one Form to another?

    lets say i have a group of variables in a Struct called Stats. i've made an instance of Stats, player, in Form1. How would i be able to use the same values of player in Form2?
  9. filling a ListBox with variables, not just text?

    I was wondering how you would go about filling a ListBox with a bunch of variables, instead of just lines of text, using the Items component. something like...

    ListBox1->Items=names[]
  10. Replies
    1
    Views
    1,159

    Displaying values of variables to a Form

    I'm using Borland C++ Builder 5 and i simply want to be able to have an area on a form that displays the value of a certain variable. should i use a label or something else?

    an example of what i...
  11. Replies
    1
    Views
    1,716

    A certain type of word processor

    This isn't exactly a programming-related question, but it will help me out with a program I am currently working on.


    I'm looking for a simple word processor, maybe like Microsoft's WordPad, that...
Results 1 to 11 of 11