当前位置:网站首页>A File Online Query Display and Download Function Realized by Delphi
A File Online Query Display and Download Function Realized by Delphi
2022-08-10 08:11:00 【joman5】
I have always wanted to make an online file retrieval and download function similar to 360. The PC side is also the winform side. Today I have time to simply implement this function. Part of the code:
Create a frame:
Set related parameter information:
procedure TfMain.getdata;varitem: TfrFileItem;i: Integer;begin//Just set the corresponding data structure herecleardata;for i := 0 to 10 dobeginitem := TfrFileItem.Create(self);item.Name := 'item_' + i.ToString;// item.Image1.Picture.LoadFromFile()//Load image informationitem.Title.Caption := 'file name' + i.ToString;item.info.Caption := 'This is used for file information description';item.pnSize.Caption := '20M';item.url := 'http://xxxxxx:8002/ver/testUpdate.zip';item.Parent := pnContent;item.Top := item.Height * (i + 1) + 1;item.Align := alTop;end;end;
边栏推荐
猜你喜欢
第十六天&charles的基本操作
2022-08-01 网工进阶(二十三) VLAN高级技术-VLAN聚合、MUX VLAN
iwemeta元宇宙:阿里首任COO:如何打造销售铁军
Add spark related dependencies and packaging plugins (sixth bullet)
NPU架构与算力分析
CV+Deep Learning - network architecture Pytorch recurrence series - classification (3: MobileNet, ShuffleNet)
Binary tree --- heap
Introduction to the delta method
探索神经网络架构教程视频,设计神经网络的步骤
Synchronization lock synchronized traces the source
随机推荐
Complex AB experiment
神经网络样本太少怎么办,神经网络训练样本太少
详解构建mock服务最方便的神器——Moco
【Unity入门计划】2D游戏实现敌人来回移动控制脚本
JS reduce
同步锁synchronized追本溯源
Using the color picker
编程老手如何在autojs和冰狐智能辅助之间选择?
AFNetworking概述和4.0的实践
.NET-7.WPF学习经验总结
DGIOT支持工业设备租赁以及远程管控
VS2013-调试汇编代码-生成asm文件-结构体内存布局-函数参数压栈-调用约定
34. Talk about why you want to split the database?What methods are there?
Rust学习:6.3_复合类型之元组
2022-08-01 网工进阶(二十三) VLAN高级技术-VLAN聚合、MUX VLAN
阿里云数据库 RDS SQL Server 版的服务器绑定域名www.cxsdkt.cn.的呢?
[In-depth study of 4G/5G/6G topic-56]: L3 signaling control-5-radio bearer management
卷积神经网络卷积层公式,卷积神经网络运算公式
模糊查询除了like+ % 还能用什么方式
raid5的写性能,是不的比raid10快一些?