-
ACSuite2.2
delphi audio 处理控件,包括wave格式的转换,音频控制,录音,播放等功能。(Audio Components Suite
Copyright [c] 2002, 2003 Andrei Borovsky.
You can contact me at aborovsky@mtu-net.ru
You can get the package sources at
Audio Components Suite home page
http://www.mtu-net.ru/aborovsky/acs/
See "installation" file on how to install ACS.
See "license" file for licesing information.)
- 2009-02-23 09:13:33下载
- 积分:1
-
Delphi 获取两个子字符串之间的字符个数
Delphi 获取两个子字符串之间的字符个数,也就是这个字符串由A/B/C三个字符组成,本例子是求A/C中间的所有字符串的个数,空格同样也包括在内。定义两个函数即可实现本功能:
Function TForm1.Strcount( s, s1, s2 : string ): integer;
var
i,j,slen : integer;
begin
i := pos( s1, s );
j := pos( s2, s );
slen := Length(s1);
if j >= i then
Result := j - i - slen
else
Result := 0;
end;
procedure TForm1.Button1Click(Sender: TObject);
var
n : integer;
begin
n := Strcount(Edit1.Text,Edit2.Text,Edit3.Text);
showmessage(IntToStr(n));
end;
- 2022-01-26 07:45:23下载
- 积分:1
-
RLBoleto_115
Rlboleto its a component for booleto
- 2019-05-24 02:24:17下载
- 积分:1
-
r2d2
wp recent phpbb delphi dource
- 2019-05-28 10:07:56下载
- 积分:1
-
anjoman
ba salam in file input and output karbaran
- 2012-05-16 01:27:13下载
- 积分:1
-
FastReport Professtional 6.1.10 full source
说明: 著名的 Delphi 打印控件。含全部源码。支持 Delphi 10.2.3 Tokyo(The famous Delphi print control. Contains all source code. Support Delphi 10.2.3 Tokyo)
- 2019-04-25 13:39:19下载
- 积分:1
-
FSL VideoFilter
Rohde&Schvarz FSL VideoFilter
- 2020-06-22 10:20:02下载
- 积分:1
-
Delphi 目录操作范例:改变当前目录
Delphi 目录操作范例:改变当前目录,先获取当前的目录路径,然后改变这个目录路径,文件当前在此目录,那么如何修改文件路径呢?
procedure TForm1.Button1Click(Sender: TObject);
begin
try
chdir(Edit2.Text);
finally
getdir(0,result);
Edit2.Text := result;
end;
end;
源代码仅供参考。
- 2022-11-19 16:05:03下载
- 积分:1
-
TMS组件包支持超过200的生产率的VCL组件,包括网格平台。
TMS Component Pack Pro Over 200 productivity VCL components, including grids, planning, scheduling, calendars, advanced edit controls, web update, enhanced listbox, treeview, combos, CAB file handling, and so much more
- 2023-04-12 14:55:04下载
- 积分:1
-
system
this is a word test!
- 2009-12-24 15:52:18下载
- 积分:1