Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: sanka69
  • Content: Threads
  • Order by date
  1. sanka69

    accessing properties through com

    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...
  2. sanka69

    Loop Optimisation

    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...
  3. sanka69

    String to a constant?

    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...
  4. sanka69

    Ciruclar Reference

    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...

Part and Inventory Search

Back
Top