Unable to obtain the interface of form module

All announcements, questions and issues related to the TsiLang Components Suite.
Post Reply
DavidD
Posts: 17
Joined: Wed Mar 07, 2007 9:19 pm
Location: United States

Unable to obtain the interface of form module

Post by DavidD »

I have one form that gives the above error when attempting to use the Wizard. The beginning of the file is:

unit StopsReportOptions;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, MiscUtils;
type
TfrmStopsReportOptions = class(TForm)
cbShipAddress: TCheckBox;
cbCustomerNotes: TCheckBox;
btnOK: TBitBtn;
btnCancel: TBitBtn;
gbDaysToPrint: TGroupBox;
cbMonday: TCheckBox;
cbTuesday: TCheckBox;
cbWednesday: TCheckBox;
cbThursday: TCheckBox;
cbFriday: TCheckBox;
cbSaturday: TCheckBox;
cbSunday: TCheckBox;
Label1: TLabel;
procedure btnOKClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmStopsReportOptions: TfrmStopsReportOptions;

implementation
{$R *.dfm}
uses StopScheduleRpt, WaitForm;
isiticov
Site Admin
Posts: 2383
Joined: Thu Nov 21, 2002 3:17 pm

Post by isiticov »

Please check your project's source unit to correctly list entry for this form. In most cases this caused by missing {FormName} after your unit name.
Best regards,
Igor Siticov.
DavidD
Posts: 17
Joined: Wed Mar 07, 2007 9:19 pm
Location: United States

Post by DavidD »

Splendid - actually it was mis-named in the project source.
Post Reply