1

我使用服务器客户端组件,当在该组件的 TransferFile 事件中接收到文件时,我使用警报消息组件。所以我希望,如果用户单击警报消息,程序继续执行 TransferFile 事件中的代码,以在单击按钮的情况下接受文件传输,或者在未单击按钮时退出程序。请看下面的代码:

procedure TfrmReadFile.ServerReceiveEvent(Sender: TObject;
  Client: TSimpleTCPClient; Event: TTOOCSEvent);
begin
  if (Event is TTOOCSEventFileTransfert) then
  begin
    Alert.Show;
      if Alert.OnAlertClick then
      begin
        with (Event as TTOOCSEventFileTransfert) do
        if (dlgSaveFile.Execute) then
          with TMemoryStream.Create do
            try
              Write(Content[1], Length(Content));
              SaveToFile(dlgSaveFile.FileName);
            finally
              Free;
            end;
      end;
  end;
end;

但是“如果 Alert.OnAlertClick then”是错误的

procedure TfrmReadFile.AlertAlertClick(Sender: TObject);
begin

end;

请帮助我获取这些代码。

AlertMessage 是 TMS 组件之一,它没有 ShowModal,但它有我使用的 Alert.Show 程序。我想暂停执行代码,直到警报显示时间结束,如果用户没有单击警报,则执行代码中止并且没有文件保存。

4

1 回答 1

3

从您的代码中很明显,当您显示警报时,文件传输已经发生:这只是“我是否保存到文件”“我是否丢弃我已经收到的内容”的问题。我从您对 - 该函数的使用中推断出此信息TMemoryStream.Write()- 该函数将缓冲区作为参数,因此我假设Content[1]为您提供了缓冲区。这也意味着Content已经填充了您需要的数据。不转移它已经太晚了,它已经在内存中,你所能做的就是将它保存到磁盘或丢弃它。

我也不知道 TMS 的警报是如何工作的,但我会假设在任何给定时间只能显示一个警报,并且我会假设您将您Alert的警报放在一个组件上(即:只有一个警报在整个程序)。

您应该首先更改“接收到的事件”的代码,以立即将内容移动到TMemoryStream. 还要确保您不会遇到递归重入的麻烦。在表单中添加一个私有字段,调用它FLastContentReceived: TMemoryStream;现在将您的代码更改为如下所示:

procedure TfrmReadFile.ServerReceiveEvent(Sender: TObject;
  Client: TSimpleTCPClient; Event: TTOOCSEvent);
begin
  if (Event is TTOOCSEventFileTransfert) then
  begin
    // Re-entry before we managed to handle the previous received file?
    if Assigned(FLastContentReceived) then
      raise Exception.Create('Recursive re-entry not supported.');

    // No re-entry, let's save the content we received so we can save it to file
    // if the user clicks the Alert button.
    FLastContentReceived := TMemoryStream.Create;

    // I don't know what Content is, but you've got that in your code so I
    // assume this will work:
    FLastContentReceived.Write(Content[1], Length(Content); 

    // Show the alert; If the OnAlertClick event fires we'll have the received file content
    // in the FLastContentRecevied and we'll use that to save the file.
    Alert.Show;
  end;
end;

您正在尝试执行 if on Alert.OnAlertClick- 所以我假设您的Alert组件中有一个名为OnAlertClick. 把它写在它的事件处理程序中:

procedure TfrmReadFile.AlertAlertClick(Sender: TObject);
begin
  if not Assigned(FLastContentReceived) then raise Exception.Create('Bug');
  try
    if dlgSaveFile.Execute then
      FLastContentReceived.SaveToFile(dlgSaveFile.FileName);
  finally FreeAndNil(FLastContentReceived);
  end;
end;

您还需要一种方法来丢弃FLastContentReceived如果在单击警报按钮之前关闭表单或出现超时(警报在用户单击它的情况下消失)。表单关闭时的第一项工作(摆脱 FLastContentReceived)很简单:将其添加到表单的OnDestroy

FLastContentRecevid;Free;

处理超时可能有点困难。如果Alert有一个在警报超时时调用的事件并且气球在没有被单击的情况下消失,则使用该事件处理程序来执行此操作:

FreeAndNil(FLastContentRecevid);

如果它没有提供这样的东西,您可以设置一个TTimer等于警报超时的时间间隔(或稍长一些以确保安全),在显示警报之前启用它并从它执行此操作OnTimer

procedure TFrmReadFile.Timer1Timer(Sender: TObject);
begin
  Timer1.Enabled := False;
  FreeAndNil(FLastContentRecevid);
end;
于 2013-01-15T10:30:30.870 回答