安装XDS110驱动时系统找不到指定文件-附件资源
2023-01-09 09:58:12 106B
1
在Qt Creator环境下实现①打开指定目录下的txt文件②将txt内的字符串文件处理③将处理完的数据通过串口用HEX格式发送出去;
2023-01-08 22:00:45 43KB qt c++ 串口通信 文件处理
1
信息产业IT技术培训指定教材--网页设计实用教程.pptx
2023-01-05 17:21:36 284KB
1
bat脚本 读取目录下所有文件(递归读取),并复制到指定目录 使用时:先编辑修改读取目录和写入目录
2023-01-05 13:03:51 289B bat
1
Delphi将Stringgrid指定行添加到Memo控件中,选中StringGrid中的行,点击右下角的“添加”按钮,即可将选中的StringGrid行数据添加到下边的Memo控件中显示。部分源代码如下:   procedure TForm1.FormCreate(Sender: TObject);   begin    StringGrid1.Cells[0,0] := '商品编号';    StringGrid1.Cells[0,1] := 'cc10011';    StringGrid1.Cells[0,2] := 'cc10012';    StringGrid1.Cells[0,3] := 'cc10013';    StringGrid1.Cells[0,4] := 'cc10014';    StringGrid1.Cells[1,0] := '商品名称';    StringGrid1.Cells[1,1] := '苹果';    StringGrid1.Cells[1,2] := '香蕉';    StringGrid1.Cells[1,3] := '西红柿';    StringGrid1.Cells[1,4] := '西瓜';    StringGrid1.Cells[2,0] := '商品数量';    StringGrid1.Cells[2,1] := '200';    StringGrid1.Cells[2,2] := '150';    StringGrid1.Cells[2,3] := '300';    StringGrid1.Cells[2,4] := '130';    StringGrid1.Cells[3,0] := '商品金额';    StringGrid1.Cells[3,1] := '$5.00';    StringGrid1.Cells[3,2] := '$4.50';    StringGrid1.Cells[3,3] := '$1.50';    StringGrid1.Cells[3,4] := '$6.00';   end;   procedure TForm1.Button1Click(Sender: TObject);   var    i,col,row: Integer;   begin    row := StringGrid1.Row;    for col := 0 to StringGrid1.ColCount - 1 do    Memo1.Lines.Add(StringGrid1.Cells[col,row]);   end;
2023-01-03 19:53:57 6KB Delphi源码-控件组件
1
可以编辑要启动的程序列表(包括程序名称和路径,可以添加和删除),一键启动编辑好的指定的外部程序,一键关闭指定的外部程序。只是工具, 不是源码
2023-01-03 13:04:02 12.71MB 一键启动 桌面程序
1
本文实例讲述了C#获取项目指定目录下文件的方法。分享给大家供大家参考。具体如下: public List GetFiles() { string path = string.Concat(System.AppDomain.CurrentDomain.BaseDirectory,Files\\); //获取项目物理路径 string[] fileType=new string[]{pdf\\,pps\\,xls\\}; string[] directoryFiles = new string[] { }; List f
2023-01-03 09:48:09 27KB string 文件目录 方法
1
这个代码可以指定日期网站变灰色页面,网站调用JS代码文件就可以实现或者在后台放置代码块。
1
批处理可以删除指定目录下按照修改时间计算超时的文件,然后删除空文件夹。 可以结合操作系统的计划任务定期执行。
2022-12-29 22:03:40 214B 批处理 删除文件 计划任务
1