Search:

Type: Posts; User: skar

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,359

    BCB build .exe file

    Hi,

    I am trying to build an .exe file but I can't run it on computer without BCB installed.
    I get all these messages saying I need something.dll.

    How do I include all the necessary files in...
  2. Thread: How to

    by skar
    Replies
    3
    Views
    1,189

    To Quantrizi

    Thanks for helping, but I really have no idea at all, what you put down. Would you mind explaining briefly? Like what is what.

    Thankx
  3. Thread: How to

    by skar
    Replies
    3
    Views
    1,189

    How to

    Hello everyone,

    I am using BCB, how do I assign a key on the keyboard to a button I created on the form?? e.g. I want to set the "B" key on the keyboard to a button on screen, when I press the "B"...
  4. Thread: How do I?

    by skar
    Replies
    7
    Views
    931

    you guys are the best :p

    you guys are the best :p
  5. Thread: How do I?

    by skar
    Replies
    7
    Views
    931

    Thanks however

    One thing I don't understand is, I use a seperate unit for the dictionary array. Then I declare:

    #include "dictionary.h"

    extern String dictionary;
    String word = dictionary[1];

    it only gives...
  6. Thread: How do I?

    by skar
    Replies
    7
    Views
    931

    How do I?

    I defined an array of String (not string)
    String dictionary{"hello", "Goodbye"....};

    How do I refer to each String, i.e the word hello.
    I was trying something like
    word = dictionary[1]; ...
  7. Thread: really quick one

    by skar
    Replies
    1
    Views
    809

    really quick one

    what is the syntax for returning 2 variable of different type in one function?
  8. Replies
    0
    Views
    905

    OnRunning ? OnExercute ?????

    I am using a form in BCB, and I want a label to change its caption whenever a variable assigned to it is changed.

    The problem is, if I do
    void main()
    {
    Label1->Caption = variable;
    }
    I get...
  9. Replies
    1
    Views
    1,192

    simple AnsiString question

    is there a quick way of taking out the first few letters of an ansistring? i.e.
    String astring = abcdef;
    temp = astring[1 to 3];

    temp stores only abc
  10. Replies
    1
    Views
    983

    simple dictioanry problem (newbies)

    I tried to define a dictionary array like this:

    AnsiString dictionary[]= {"bread", "juice", "water"...etc

    then as I was testing to see if I can refer to each word seperately, I tried:
    ...
  11. Replies
    2
    Views
    1,314

    Here is another one, I was do something like...

    Here is another one,

    I was do something like this:
    OutputScreen->Text = function1;

    where the function returns an Ansistring:
    AnsiString function ()
    {
    return something[1];
    }
  12. Replies
    2
    Views
    1,314

    some completely newbies questions

    I will use this thread for all my newbies questions, I don't want to put too many threads up and jam the page, so please drop a line or two to answer my simple questions.

    here goes,

    is
    void...
  13. Replies
    2
    Views
    1,000

    Smart text??autofill??

    I want to write something similar to the autofill function in windows (i.e when I type "app" it automatically shows "apple")

    I also need to define a dictionary of some sort, using array maybe, for...
  14. Thread: cummulative text

    by skar
    Replies
    8
    Views
    1,193

    I understand what you mean, but in the code,...

    I understand what you mean,
    but in the code, how do I attach the 2 strings together? can I just use + or something?:(
  15. Thread: cummulative text

    by skar
    Replies
    8
    Views
    1,193

    I've tried the += and stringh, didn't work. And...

    I've tried the += and stringh, didn't work.
    And guys, I am lost! what do you mean be define += operator...
    , what do you mean what are the vars? and what is class desc?
  16. Thread: cummulative text

    by skar
    Replies
    8
    Views
    1,193

    cummulative text

    I am using:

    Edit1->Text="A";
    //some codes
    Edit2->Text="B";
    //some codes and so on.....

    The Text in the edit box changed from A to B to ....., what I really wanted was for the text to stay...
  17. Replies
    5
    Views
    4,607

    Done, Thanks! more questions in other threads...

    Done, Thanks!

    more questions in other threads :D
  18. Replies
    5
    Views
    4,607

    There are 2 state in my program, top and bottom...

    There are 2 state in my program, top and bottom
    by enum state{top, bottom} currentstate=top;

    the inital state is top and I want the Label->Caption to display "a to E"
    then when I click on a...
  19. Replies
    5
    Views
    4,607

    Problem sorted but....

    I used Edit1->Text = "whatever"; inside the:
    void __fastcall TForm1::ButtonZClick(TObject *Sender)
    {
    }

    however, it only reacts when I click on the button.
    I want to have an if loop outside the...
  20. Replies
    5
    Views
    4,607

    Forms in Borland C++ Builder

    Hi,

    I have written a small piece of code that output some text in the command window using 'cout<<whatever'. I'd like it to print out in the Form(e.g a Label or something) instead. What do I need...
Results 1 to 20 of 20