Forum: Pascal and Delphi Jan 12th, 2009 |
| Replies: 5 Views: 2,418 In my program I did the following:
begin
if not OpenDialog1.Execute then Exit;
Memo1.Clear;
AssignFile(MyFile,OpenDialog1.FileName);
Reset(MyFile);
while not EOLN(MyFile) do
... |
Forum: Community Introductions Jan 11th, 2009 |
| Replies: 1 Views: 290 Hi all,
My name is NOna, and I'm a universcity student and this is my graduation year in Information Technology degree.
English language is my second language, so please accept my weak writing... |
Forum: Pascal and Delphi Jan 9th, 2009 |
| Replies: 9 Views: 1,032 Dear jsosnowski,
Thank you very much for help, I knew about the directory of Delphi but as my final exam after a week I don't have time to find it, any way thanks for help again.
Regards,
NOna |
Forum: Pascal and Delphi Jan 9th, 2009 |
| Replies: 9 Views: 1,032 Dear friend,
"The unit sysUtil.pas has a number of string routines including several that can be used to search through the string to find the spaces between words and allow you to extract the... |
Forum: Pascal and Delphi Jan 9th, 2009 |
| Replies: 9 Views: 1,032 Till No I did the following:
type
TForm2 = class(TForm)
ExitButton: TButton;
Memo1: TMemo;
OpenButton: TButton;
OpenDialog1: TOpenDialog; |
Forum: Pascal and Delphi Jan 9th, 2009 |
| Replies: 9 Views: 1,032 The Version that I use is Delphi 2007 |
Forum: Pascal and Delphi Jan 9th, 2009 |
| Replies: 9 Views: 1,032 Dear All,
I need help to do the interface delphi program as the following:
1. Allow the use to select a text file from a storage media.
2. Open the text file and read it line by line.
3.... |