Помогите пожалуйста
project project1.exe raised exception class EDatabaseError wih message 'dbcheckbox1: Field 'mobilnik' not found'
- Помогите пожалуйста от princess, 16 апреля 2013 года
Поле с именем "mobilnik" не найдено. Посмотри в коде, где ты обращаешься к нему.
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, DBCtrls, Mask, ExtCtrls,db;
type
TEditRecordForm = class(TForm)
Panel1: TPanel;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Label6: TLabel;
DBCheckBox1: TDBCheckBox;
Label7: TLabel;
familiya: TDBEdit;
imiya: TDBEdit;
telefon: TDBEdit;
email: TDBEdit;
data: TDBEdit;
gorod: TDBLookupComboBox;
Button1: TButton;
Button2: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
EditRecordForm: TEditRecordForm;
implementation
uses Datamodule, TownBookUnit, MainUnit;
{$R *.dfm}
procedure TEditRecordForm.Button1Click(Sender: TObject);
begin
if datamodule2.booktable.modified then
datamodule2.booktable.Post;
close;
end;
procedure TEditRecordForm.Button2Click(Sender: TObject);
begin
datamodule2.BookTable.Cancel;
end;
что ни как с моим кодом?
По коду понять не возможно, где ошибка. Скорее всего вы обновили базу данных, а DataSet и чем вы там пользуетесь не обновили.