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 Mike Lewis 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: *

  1. sanka69

    accessing properties through com

    Shortly after posting, I realised that the ac.Style was a pointer, however taking that into account I still get GPFs when trying to read or write back to individual elements of the record. Can anyone advise me please? Thank you, Richard
  2. 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...
  3. sanka69

    Loop Optimisation

    Okay, thank you for your responses. Regards, Richard
  4. 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...
  5. 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...
  6. 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