随笔 - 809  文章 - 0 评论 - 144 阅读 - 770万

复制代码
procedure TfrmFilterTopTidByTopOutSidList.Button1Click(Sender: TObject);
var
  I: Integer;
  top_out_sid_list_str: string;
begin
  top_out_sid_list_str := '';
  ShowMessage(IntToStr(TopOutSidList_mmo.Lines.Count));
  for I := 0 to TopOutSidList_mmo.Lines.Count - 1 do
  begin
    if I <> 0 then
    begin
      top_out_sid_list_str := top_out_sid_list_str + ',' + TopOutSidList_mmo.Lines.Strings[I];
    end else begin
      top_out_sid_list_str := TopOutSidList_mmo.Lines.Strings[I];
    end;
  end;
  ShowMessage(top_out_sid_list_str);
end;
复制代码

TopOutSidList_mmo.Lines.Strings[I];

posted on   del88  阅读(9)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· AI与.NET技术实操系列(五):向量存储与相似性搜索在 .NET 中的实现
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
历史上的今天:
2011-12-10 checklistbox1--小梨子
2011-12-10 CheckListBox1
2011-12-10 时间转换例子
点击右上角即可分享
微信分享提示