Log in

View Full Version : need help



7 89
10-26-2012, 05:50 PM
Message0=();
how do i fix this so it works?

Brandon
10-26-2012, 06:06 PM
What is Message0?

If it's a constant, it uses a single equal sign whereas a variable will use a semi-colon and equals sign:


const
SomeConstant = 10;

var
SomeVariable: VariableType; //Where Variable Type can be integer, char, string, etc..
begin
SomeVariable := 10;
end;