
02.10.2010, 21:42
|
Новичок
|
|
Регистрация: 21.09.2010
Сообщения: 94
Репутация: 16
|
|
Код:
unit Unit12;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, IniFiles, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
with TInifile.Create('11111111.ini')Do
begin
WriteString('Main','Edit','dfjdfjd');
free;
end;
end;
end.
вот создал с твоим кодом все равно он ничего не делает
|