On Fri, 2006-01-27 at 13:51 -0700, SIX-S wrote:
> I am running XP PRO for windows, Lazarus version#9.10 beta. I am entering 
> the first program in the Lazarus Tutorial  that  put a button on the screen. 
> I did not see any error messages.
Do you see in the caption of lazarus that the program is running? That
means, does the caption say: 'debugging'? If it is, then you might try
adding a method to the OnCreate event:

procedure TForm1.FormCreate(Sender: TObject);
begin
  Top := 1;
  Left := 1;
end;

At least we know for sure that the form is not placed somewhere outside
your screen. :)

If the caption does not say debugging, you might try the following:
Go to Environment -> Debugger Options and on the general tab say (none)
for debugger type.

Matthijs.

-- 
Matthijs Willemstein <[EMAIL PROTECTED]>

_________________________________________________________________
     To unsubscribe: mail [EMAIL PROTECTED] with
                "unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives

Reply via email to