用Delphi编写一个小程序

用Delphi编写一个小程序,第1张

以Delphi7为例

1、运行Delphi

默认会创建一个名为Project1的Application,并且有一个默认的主窗口Form1

2、从控件面板的Standard页中拖一个按钮控件到Form1上,会默认命名为Button1

3、双击Button1,写上

ShowMessage('hello,world!')

4、点击Debug工具栏上的Run按钮,或按F9功能键

5、点击Button1按钮 代码如下:unit

Unit1interfaceuses

Windows,

Messages,

SysUtils,

Variants,

Classes,

Graphics,

Controls,

Forms,

Dialogs,

StdCtrlstype

TForm1

=

class(TForm)

Button1:

TButton

procedure

Button1Click(Sender:

TObject)

private

{

Private

declarations

}

public

{

Public

declarations

}

endvar

Form1:

TForm1implementation{$R

*.dfm}procedure

TForm1.Button1Click(Sender:

TObject)

begin

ShowMessage('Hello,world!')

endend.

//加个opendialog,代码不难,应该看得明白

var

p :PChar

i,n :Integer

list :TStringList

str :string

begin

if opendialog1.execute then

begin

list := TStringList.Create

list.LoadFromFile(opendialog1.FileName)

str := list.Text

p := PChar(str)

while p^ <>#0 do

begin

case p^ of

'0'..'9':

else p^ := #32

end

Inc(p)

end

list.clear

list.Delimiter := #32

list.DelimitedText := str

n := 0

str := ''

for i := 0 to list.Count - 1 do

begin

n := n+strtoint(list.Strings[i])

if str = '' then

str := list.Strings[i]

else

str := str+'+'+list.Strings[i]

end

list.Free

showmessage(inttostr(n)+'='+str)

end

end

就是因为加了VCL,你可以用类似ASPACK的软件,可以把你的程序压缩到原来的1/2左右。要想是程序变小也可以直接利用API来写程序,不过那就没什么意义了。再有就是假定,客户有VCL,你可以在编译的时候不把控件编进去。除了以上方法,估计没别的方法了


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/7886742.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-11
下一篇 2023-04-11

发表评论

登录后才能评论

评论列表(0条)

保存