Samples for C++ Builder XE ?
Pawel L.
Poland
Hi All,
Where are the Samples for C++ Builder XE ?
I find for Delphi only.
Pawel L.
Where are the Samples for C++ Builder XE ?
I find for Delphi only.
Pawel L.
Comments
I need sample of C++script code in fr3 file.
I have few variables like KLIENT1_NAZWA1, KLIENT1_NAZWA2, ...
and few memo objects like NAME , ADRESS ...
I set variables in c++ code form:
Form1->FR->Variables->Variables["KLIENT1_NAZWA1"] ="\"" + Form1->Table_f_kli->FieldValues["NAZWA1"] + "\"";
Form1->FR->Variables->Variables["KLIENT1_NAZWA2"] ="\"" + Form1->Table_f_kli->FieldValues["NAZWA2"] + "\"";
I need to join two variables "KLIENT1_NAZWA1" and "KLIENT1_NAZWA2" in one memo NAME:
How can I do it in event
void NAMEOnBeforePrint(TfrxComponent Sender)
Pawel L.
void NAMEOnBeforePrint(TfrxComponent Sender)
{
NAME.Text = trim(<KLIENT1_NAZWA1>+#10+<KLIENT1_NAZWA2>);
}