Subject | Error Reading IB_Edit1.AutoLabel.Color - D7/IBO455 |
---|---|
Author | fcodat |
Post date | 2005-01-21T19:07:20Z |
Hi All,
I am running Delphi7 and recenlty I upgraded IBO 4.5.5.
After that I received an error running some of the applications like:
"Error Reading IB_Edit1.autolabel.Color" or
"Error Reading IB_Edit1.autolabel.Font"
.......etc.......
Here is a short example: Open a project, drop an IB_Edit1 component
(without any connection to a DataSet), and change some of the
autolabel properties. Then, while we run, we get the error.
To make things clear, here is a simple ex (Project1 with Unit1):
(**************unit1.dfm**************)
object Form1: TForm1
Left = 234
Top = 107
Width = 870
Height = 600
Caption = 'Form1'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object IB_Edit1: TIB_Edit
Left = 180
Top = 88
Width = 121
Height = 31
AutoLabel.Caption = 'autolabel'
AutoLabel.Color = clBlue
AutoLabel.Font.Charset = EASTEUROPE_CHARSET
AutoLabel.Font.Color = 4227072
AutoLabel.Font.Height = -13
AutoLabel.Font.Name = 'MS Sans Serif'
AutoLabel.Font.Style = [fsBold]
AutoLabel.Kind = albLeft
Font.Charset = BALTIC_CHARSET
Font.Color = clWindowText
Font.Height = -20
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
end
end
(************** Project:**************)
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
(**************unit1.pas:*************)
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls,
Forms,
Dialogs, StdCtrls, Mask, IB_Controls;
type
TForm1 = class(TForm)
IB_Edit1: TIB_Edit;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
end.
********************** E N D SOurce code********)
In my opinion, somehow Color and Font properties (of Autolabel !!!)
are not visible at runtime. There is no error when we compile the
project; only when we run the program.
Any ideas?
Felix
I am running Delphi7 and recenlty I upgraded IBO 4.5.5.
After that I received an error running some of the applications like:
"Error Reading IB_Edit1.autolabel.Color" or
"Error Reading IB_Edit1.autolabel.Font"
.......etc.......
Here is a short example: Open a project, drop an IB_Edit1 component
(without any connection to a DataSet), and change some of the
autolabel properties. Then, while we run, we get the error.
To make things clear, here is a simple ex (Project1 with Unit1):
(**************unit1.dfm**************)
object Form1: TForm1
Left = 234
Top = 107
Width = 870
Height = 600
Caption = 'Form1'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object IB_Edit1: TIB_Edit
Left = 180
Top = 88
Width = 121
Height = 31
AutoLabel.Caption = 'autolabel'
AutoLabel.Color = clBlue
AutoLabel.Font.Charset = EASTEUROPE_CHARSET
AutoLabel.Font.Color = 4227072
AutoLabel.Font.Height = -13
AutoLabel.Font.Name = 'MS Sans Serif'
AutoLabel.Font.Style = [fsBold]
AutoLabel.Kind = albLeft
Font.Charset = BALTIC_CHARSET
Font.Color = clWindowText
Font.Height = -20
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentFont = False
TabOrder = 0
end
end
(************** Project:**************)
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
(**************unit1.pas:*************)
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls,
Forms,
Dialogs, StdCtrls, Mask, IB_Controls;
type
TForm1 = class(TForm)
IB_Edit1: TIB_Edit;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
end.
********************** E N D SOurce code********)
In my opinion, somehow Color and Font properties (of Autolabel !!!)
are not visible at runtime. There is no error when we compile the
project; only when we run the program.
Any ideas?
Felix