Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #44.2K
~7K People Reached
Favorite Tags

4 Posted Topics

Member Avatar for satasonic

[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 …

Member Avatar for JameB
0
6K
Member Avatar for Reliable

[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 …

Member Avatar for chrishea
0
111
Member Avatar for bigmike9449

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; …

Member Avatar for espSquall
0
343
Member Avatar for webzz

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 …

Member Avatar for ExplainThat
0
665

The End.