Subject
Author davissammybr
Hi,
Im creating an multtiered application. I has been configured an
tibconnection in a remotedatamodule using the following steps:

In design time i Set the following properties:

Username := SYSDBA
Password := masterkey
Passwordremembered := true

After it i set the event beforeconnect to:


With IB_Connection do
Begin
Connected := false;
LoginPrompt := false;
Username:='';

with Params do
Begin
Clear;
Values['USER NAME'] := 'SYSDBA';
end;
Server:= '';
Path := 'C:\Mydatabase.gdb';
Protocol := cpLocal;
end;


Its works fine in win2000 where i has been compiled my project but in
WinMe
i receive the folowing message:

"Your user name and password are not defined.
Ask you database administrator to set up an Interbase login"


I don't undertand. The path is same for win2k and winMe.
My computer is not connect to a network.
My steps are correct? I need reinstall WinMe?

Thanks.