Hai th1984,
ersteinmal: "Herzlich Willkommen in der Delphi-PRAXIS".
Das Problem ist das deine Funktion keine Methode deiner Form1 ist. Am einfachsten wäre
Delphi-Quellcode:
type
TForm1 = class(TForm)
.
.
.
private
{ Private declarations }
aktVersion: String;
function CheckVersion(): String;
.
.
function TForm1.CheckVersion(): String;
var IntVersion: TStringList;
begin
Internet.get_url('http://update.tictactom.com/version.txt');
IntVersion := Internet.result_sl;
result := IntVersion[0];
end;
.
.
Stephan B.
"Lasst den Gänsen ihre Füßchen"