Hi all,
I have a third party ActiveX control which as a property ACStyle. I was under the impression that I could refence the properties of ACStyle like this:
: ac is the name given to the control on the form.
var
acColor : TColor;
begin
ACColor := ac.Style.BackColor;
end;
However...
Hi all,
In C/C++ the following theory is correct, but does it apply for delphi?
--------------
var
i : integer;
a : array[0..10] of char;
begin
for i:=0 to High(a) do
begin
// some code
end
for i:=High(a) downto 0 do
begin
// some code.
end;
end;
The second...
Hi all,
I have a type definition;
type
AdfPatterns = TOleEnum;
const
FPNone = $00000000;
FPGray6 = $00000001;
FPGray12 = $00000002;
FPGray25 = $00000003;
FPGray50 = $00000004;
FPGray75 = $00000005;
.....
If all I had was 'FPGray75' stored in a string, what would be an...
Hello,
I'm relatively new to using Delphi here and having a small problem with ciruclar referencs. In a component that I've developed I'm using a file [consts.pas] that is a central file used by all developers. On installing the component on my co-workers machine, he gets a compile error...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.