Ray Konopka

Forum Replies Created

Viewing 15 posts - 211 through 225 (of 348 total)
  • Author
    Posts
  • in reply to: Sydney 10.4.2. “Updated Konopka Comp” #2379
    Ray Konopka
    Keymaster

      The update addresses the critical issues that affected the components from working/displaying properly in Sydney. Specifically, the changes to VCL Styles and StyleServices. In addition, where applicable, the components support the StyleElements property. The new StyleName property added in 10.4 is also supported. There were some other issues addressed as well (e.g. issues in TRzCheckList, display issues in TRzDBGRid, TRzStringGrid, TRzProgressBar, TRzPageControl, TRzTabControl, etc.)

      Ray

      in reply to: Konopka Signature VCL Controls Problems on Delphi Sydney 10.4 #2378
      Ray Konopka
      Keymaster

        Hi Martijn,

        Unfortunately, it was not a “simple” fix, and as a result, really needed to be address in a new release. Fortunately, that is finally coming.

        Ray

        in reply to: Writing plugins for CodeSite viewers #2358
        Ray Konopka
        Keymaster

          Hi,

          Yes, it is technically possible to write a custom plug-in for the CodeSite Viewers. The Compare Objects and Compare MemStatus plug-ins are built as separate packages that are loaded into the Viewers on startup.

          What type of plug-in are you looking to create?

          Ray

          in reply to: ScratchPad on high-resolution monitors #2357
          Ray Konopka
          Keymaster

            Hi Navid

            ScratchPad does not include a manifest to tell Windows that it supports High DPI. As a result, when you run ScratchPad on a high resolution monitor, Windows automatically scales the display up to fit. Therefore, you are certainly able to use the application. All the menus, toolbar buttons, dialogs all appear the correct size. However, since Windows is scaling the bitmap rendering of the app, the menu fonts and toolbar button images are a little pixelated.

            Ray

            in reply to: problem with TRzPageControl #2320
            Ray Konopka
            Keymaster

              Hi Steve,

              For a TRzTabSheet in a TRzPageControl, there is a TabIndex and a PageIndex. If all the tabs are visible, then the two values will be the same. However, if any of the tab sheets have their TabVisible property set to False, the TabIndex and PageIndex for a specific TRzTabSheet may indeed be different. The PageIndex always represents the “index” of the particular tab sheet in relation to the other pages in the page control. The TabIndex represents the index of the physical tab displayed that is associated with that tab sheet.

              You are getting odd results because you are indexing into the Pages collection using a TabIndex instead of a PageIndex. But the OnPaintTabBackground event does not provide a PageIndex, just a TabIndex. Fortunately, there is a PageForTab method available to handle that. If you change your method to the following, you will get the behavior you are expecting:

              procedure TForm14.RzPageControl1PaintTabBackground(Sender: TObject; ACanvas: TCanvas; ATabIndex: Integer;
                const ARect: TRect; var Handled: Boolean);
              begin
                with (Sender As TRzPageControl).PageForTab( ATabIndex ) do
                begin
                  if (tag = 0) then // if tab is set to tag = 0
                    ACanvas.Brush.Color := clYELLOW // color yellow
                  else // else
                    ACanvas.Brush.Color := clWhite; // color white
                end;
              
                ACanvas.FillRect(ARect); // paint the tab
                Handled := True; // show its handled
              end;
              

              Ray

              in reply to: TRzSplitter #2305
              Ray Konopka
              Keymaster

                Hi Barry,

                You can use the Position property to change the splitter bar programatically.

                Ray

                in reply to: Help with Installer and Service #2291
                Ray Konopka
                Keymaster

                  Hi Anderson,
                  I’m glad to hear that you are enjoying CodeSite Express.

                  The CodeSiteToolsSetup.txt file (included in the Tools directory along with the CS5_Tools.exe) provides details about customizing the CodeSite Tools install. Specifically, there are parameters that you can set to control which tools get installed.

                  By default the CodeSite Dispatcher does not run as a service. To run the Dispatcher as a service, the Dispatcher needs to be registered with Windows. Please read the “Running as a Service” topic in the CodeSite Help file for details about running the Dispatcher as a service. When the Dispatcher is run as a service, it appears in the Services list as CodeSiteDispatcher.

                  Ray

                  in reply to: TRzListBox Add Item to Group #2279
                  Ray Konopka
                  Keymaster

                    Hi Barry,

                    You can use the AddItemToGroup method. For example, the following code adds a couple groups and items to the list. Then in the button click event handler, a new player is added to the first group. Changing the first parameter to a 1 will add Ian to the Reserves group.

                    Ray

                    procedure TForm8.FormCreate(Sender: TObject);
                    begin
                      RzListBox1.ShowGroups := True;
                      RzListBox1.AddGroup( 'Players' );
                      RzListBox1.Add( 'Anthony Rizzo' );
                      RzListBox1.Add( 'Kris Bryant' );
                      RzListBox1.Add( 'Javier Baez' );
                      RzListBox1.AddGroup( 'Reserves' );
                      RzListBox1.Add( 'Albert Almora Jr.' );
                    end;
                    
                    procedure TForm8.RzButton1Click(Sender: TObject);
                    begin
                      RzListBox1.AddItemToGroup( 0, 'Ian Happ' );
                    end;
                    in reply to: CodeSite Studio in the 10.4.1 IDE #2278
                    Ray Konopka
                    Keymaster

                      Hi Olivier,

                      The CodeSite menu is added to the RAD Studio Tools menu by the CodeSite RAD Studio Expert that is located in the CSRadStudioTools270.dll. The DLL is registered with the IDE during installation. Assuming your CodeSite installation worked properly, you should have a CodeSite menu item under the RAD Studio Tools menu.

                      Ray

                      in reply to: TrzPageControl suggestion #2262
                      Ray Konopka
                      Keymaster

                        Hi Morten,

                        Great suggestion. Please send me an email to the Raize Support email (support at raize.com) and we can discuss.

                        Ray

                        in reply to: TrzPageControl Tab colors #2261
                        Ray Konopka
                        Keymaster

                          Hi,

                          I apologize for the long delay. Because of the custom styles of tabs that are supported by the TRzPageControl and TRzTabControl, the style entries cannot be used directly. As such, the controls use “style appropriate” colors. In the case of the Auric style, the difference is more pronounced.

                          However, the TRzPageControl does give you lots of flexibility when it comes to the display. For example, even with VCL Styles active, you can write event handlers for the various OnPaint*** events of TRzPageControl and TRzTabSheet to customize the appearance.

                          For example, write the following event handlers for the TRzPageControl:

                          OnPaintCardBackground:

                          procedure TForm2.RzPageControl1PaintCardBackground(Sender: TObject; ACanvas: TCanvas; ARow: Integer; const ARect: TRect;
                            var Handled: Boolean);
                          begin
                            ACanvas.Brush.Color := cl3DDkShadow;
                            ACanvas.FillRect( ARect );
                            Handled := True;
                          end;

                          OnPaintTabBackground:

                          procedure TForm2.RzPageControl1PaintTabBackground(Sender: TObject; ACanvas: TCanvas; ATabIndex: Integer;
                            const ARect: TRect; var Handled: Boolean);
                          begin
                            ACanvas.Brush.Color := cl3DDkShadow;
                            ACanvas.FillRect( ARect );
                            Handled := True;
                          end;

                          And create a new event handler for the OnPaintBackground even for each TRzTabSheet instance in the page control. You can assign all tab sheets to use the same event handler.

                          OnPaintBackground:

                          procedure TForm2.TabSheetPaintBackground(Sender: TObject; ACanvas: TCanvas; const ARect: TRect; var Handled: Boolean);
                          begin
                            ACanvas.Brush.Color := cl3DDkShadow;
                            ACanvas.FillRect( ARect );
                            Handled := True;
                          end;

                          This will give you an appearance that will be very close to the standard TPageControl and still let you use all the tab styles of TRzPageControl.

                          Ray

                          in reply to: Konopka Signature VCL Controls Problems on Delphi Sydney 10.4 #2260
                          Ray Konopka
                          Keymaster

                            Hi Martijn,

                            I apologize for the long delay in responding. This whole situation have been extremely frustrating and I’m tired of posting messages where I simply do not have any good answers. I know what needs to be done to the library. The problem is that Embarcadero owns the code. All I can offer at this point is for everyone to reach out to Embarcadero and let them know how important the KSVC is to your work.

                            Ray

                            in reply to: A Component Named xxxxx Already Exists. #2252
                            Ray Konopka
                            Keymaster

                              Hi Steve,

                              I apologize for the late response. Apparently, the forum software marked your post as needing approval, and of course, did not send a notification that approval was needed. I just happened to be browsing the settings when I discovered your pending message.
                              Unfortunately, I have not received any other reports of what you describe, and I have not experienced it either. I agree with you that the other message regarding DotNetForm is very odd. The fact that the MessageTracerForm and this DotNetForm are raising the same error suggests that there is indeed a problem with the IDE. If I had to guess, I would say that perhaps there is a DLL or package issue with your installation.

                              Again, I apologize for the mix-up with the post approval.

                              Ray

                              Ray Konopka
                              Keymaster

                                Hi Warren,

                                I apologize for the late response. Apparently, the forum software marked your post as needing approval, and of course, did not send a notification that approval was needed. I just happened to be browsing the settings when I discovered your pending messages.
                                Thank you for posting the detailed information. Unfortunately, I have not heard of any other reports like this, and I have not experienced it myself. However, I have made a note of it to keep an eye on this situation.

                                Again, I apologize for the mix-up with the post.

                                Ray

                                in reply to: TrzPageControl Tab colors #2234
                                Ray Konopka
                                Keymaster

                                  Hi,

                                  What VCL Style are you using?

                                  Ray

                                Viewing 15 posts - 211 through 225 (of 348 total)