RC7 components with RC6 demo in Alexandria

Home Forums Konopka Signature VCL Controls (formerly Raize Components) RC7 components with RC6 demo in Alexandria

Viewing 1 reply thread
  • Author
    Posts
    • #3175
      Dave Fobare
      Participant

        Downloaded via GetIt but can’t get the demo to compile because it’s expecting v6 components – actual version is 7.0.

        I’ve reached out to Embarcadero.

      • #3176
        Ray Konopka
        Keymaster

          Hi Dave,

          I believe you are getting “Not enough actual parameters errors”.

          Yes, Embarcadero needs to update the demo code that comes with the components. In the meantime, you can fix the missing parameter errors with the demo by adding Self as the first parameter to the method calls.

          For example,

          if UsingSystemStyle then
          becomes
          if UsingSystemStyle( Self ) then

          C := GetGradientPanelFrameColor( FCurrentGCS )
          becomes
          C := GetGradientPanelFrameColor( Self, FCurrentGCS )

          Ray

      Viewing 1 reply thread
      • You must be logged in to reply to this topic.