我正在做一个必须通过 tcp / ip 进行通信的应用程序。本程序有一个参数模态形式,获取服务器的IP,需要的数据,以及测试连接的测试按钮。该测试按钮调用一个检查服务器是否处于活动状态的函数,我想显示一个带有典型进度条的表单,带有 pbstMarquee 样式,表明您正在尝试建立连接。这是测试按钮的代码:
procedure TFormConfiguracion.ButtonTestClienteClick(Sender: TObject);
begin
if TestTCPClient(EdIPCliente.Text, EdPasswordProtocolo.Text, EdPuertoCliente.Value,
self) then
begin
MensajeInformacion('Conexión con el Servidor Establecida con Exito!',''); //Ok
else
begin
MensajeError('Error al Conectar con el Servidor!',''); //Error
end;
end;
函数TestTCP的代码:
function TestTCPClient(Host,Password: String; Puerto: Integer; AOwner: TComponent):
Boolean;
var
TCPCliente: TIdTCPClient;
textoEnvio: String;
begin
TCPCliente := TIdTCPClient.Create(nil);
Result := False;
TCPCliente.Host := Host;
TCPCliente.Port := Puerto;
TCPCliente.ConnectTimeout := 20000;
textoEnvio := Trim(Password)+'|TEST|#';
try
ShowFormCompConexion(AOwner, 'Intentando establecer conexión con el equipo
'+Host+'...'); //Trying to connect
TCPCliente.Connect;
TCPCliente.Socket.ReadTimeout := 10000;
TCPCliente.Socket.WriteLn(textoEnvio, TEncoding.ANSI);
if (TCPCliente.Socket.ReadLn(TEncoding.ANSI) = 'OK#') then
Result := True;
CloseFormCompConexion;
except
on E : Exception do
begin
CloseFormCompConexion;
Exit;
end;
end;
end;
以及显示带有进度条的表单的函数代码:
procedure ShowFormCompConexion(AOwner: TComponent; Dato: String);
begin
Form_CompConexion := TFormCompConexion.Create(AOwner);
Form_CompConexion.LbDato.Caption := Dato;
Form_CompConexion.Show;
Form_CompConexion.Repaint;
end;
问题是这个表格保持不动,我的意思是不移动进度条,就像等待她完成这个过程一样。我试图放一个 gif,但没有人让我编辑 Tedit ....
对不起我的英语不好