Using wrong files?

This is my delphi code
procedure TInkaUserMainForm.WebPanel_StartClick(Sender: TObject);
begin
XDataWebConnection1.Connected := TRUE;
WebPanel_Start.Visible := FALSE;
WebPanel_Start.SendToBack;
WebLoginPanel.Visible := TRUE;
WebLoginPanel.BringToFront;
WebPanel_DOLogIn.Visible:= TRUE;

//testrad
end;
After compiling and running I look what I ger in the browser
PROCEDURE TInkaUserMainForm.WebButton_StartClick(Sender: TObject);
BEGIN
XDataWebConnection1.Connected := TRUE;
WebPanel_Start.Visible := FALSE;
WebPanel_Start.SendToBack;
WebLoginPanel.Visible := TRUE;
WebLoginPanel.BringToFront;
WebPanel_DOLogIn.Visible:= TRUE;
END;

As You see without the comment // TestRad
And the same happens when changing code

Until 2 days ago it worked fine and all changes were there

the fault has gone away
Now everything works after 2 days of not working
I don tknow why

1 Like