i use borland c++ 6,
i already made an application with a text editor which is a memo field, and some buttons,
the problem is that when a write something in the editor(think it seems like a notepad,workpad) i cannot print the words i inserted there,
i want to write a code for:
void __fastcall TForm1::FilePrintBtnClick(TObject *Sender)
{
if PrintDialog->Execute();
{//CODE
}
}
i want to print the words as text, this is the problem
if someone can help me..