- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
4 Posted Topics
Re: [QUOTE=TeejMonster;938086]If a number is less than the value in MIN, set MIN to that number. If a number is greater than MAX, set MAX to that number.[/QUOTE] And it will look like this (for getting the minimum value): [code=pascal] var MinValue, I: Integer; for I:= Low(MyArray) to High(MyArray) do begin … | |
Re: [QUOTE=Reliable;938277]Hey everyone, Just seeking opinions as to whether or not you think it's wise to tackle learning more than one programming language simultaneously [/QUOTE] I think that when you have skills with a programming language, it is much easier to learn another one. But probably it is hard to learn … | |
Re: Hello, Opening an ANSI TXT file is easy as you can load it to TStringList, memory stream, TMemo component, etc. But everything depends on a particular task. If you need to just display a TXT file in a TMemo component, the code may look like: if not OpenDialog1.Execute then Exit; … | |
Re: Hi, I used to participate in developing a unicode app. using Delphi 2007 at my previous job and can say that this is not a simple area, really. But the company's programmers implemented their own ansi2unicode/unicode2ansi engine and own VCL components such as labels, buttons, and so on. if you … |
The End.