View Full Version : need help
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;
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.