How to Clear Multiple Edits Without Refering to Them One by One

Posted December 15th @ 9:23 pm by m3Rlin

Let’s say you have a data entry form or a MP3 ID3 tag editor form. The user clicks the “Clear” button. The more edit controls you have the less you want to write the code to clear them Well, here’s a better idea:

procedure TMainForm.btnClear(Sender: TObject);
var
iI: Integer;
begin
for iI := 0 to [...]

How to Dynamically Change DNS Servers

Posted December 15th @ 4:15 pm by m3Rlin

When you connect to the Internet (any kind of connection) you use DNS (Domain Name Server) servers to resolve domain names. To put that in plain English - you know Borland’s site is www.borland.com, but that name is for humans to better remember it. The address that your computer would connect to if you wanted [...]

« Previous Entries