Ray Konopka

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 306 total)
  • Author
    Posts
  • in reply to: support Drag from New Outlook App #4012
    Ray Konopka
    Keymaster

      Hi Paola,

      The 2.6.0 release specifically adds support for the Modern C++ 64-bit compiler added to RAD Studio 12.2. No other changes were made to the components, so the 2.5.3 version is current. When dragging does not work correctly, that usually means that the format of the drag object has been changed by the vendor. DropMaster includes many demos to provide guidance on how to handle various drag formats from a variety of sources, but the core functionality of the DropMaster components is to provide the framework in which to conduct inter-application drag and drop. I would suggest running the FormatViewer demo program and then drag the information/object that you are interested in onto the FormatViewer window. The demo will then show the various formats that are served but by the other application in the drag operation.

      Ray

      Ray Konopka
      Keymaster

        Hi Andrew,
        I apologize for the delay in releasing DropMaster 2.6.0, but it is now available. Please note that you should also update to RAD Studio 12.2.1 (the newly released inline patch) for proper package compatibility.

        If you need the download link for the DropMaster installer, please send an email to support@raize.com

        Ray

        in reply to: Codesite will not send messages in C# #3996
        Ray Konopka
        Keymaster

          Hi Maarten,

          It sounds like you are building a Windows Forms App as opposed to a Windows Forms App (.NET Framework). The former uses .NET (formerly .NET Core), while the later uses the .NET Framework. Unfortunately, at this time, the Raize.CodeSiteLogging assembly is built on the .NET Framework.

          Ray

          Ray Konopka
          Keymaster

            Hi Andrew,
            I apologize for the delay in responding. I’ve been waiting for from concrete information from Embarcadero before responding. We have the support for the Modern C++ compiler in 12.2. However, we were informed by Embarcadero that any packages that are created with 12.2 cannot be used with 12.0 or 12.1. We have been told that a hotfix is in the works, and we have been waiting for that hotfix to be released. Once it is, we will be releasing a new DropMaster version.
            Again, I apologize for the lack of response.
            Ray

            in reply to: Support for C++Builder 12.2 Athens Windows 64-bit Modern platform #3976
            Ray Konopka
            Keymaster

              Hi Andrew,
              We’ll be releasing a new version of DropMaster 2.x that includes the necessary files to support the modern 64-bit C++ compiler soon.
              Ray

              Ray Konopka
              Keymaster

                Hi Chris,
                Thanks for the report. Unfortunately, I am unable to duplicate the issue, but that could be because I’ve made other changes to the TRzSpinEdit and those affected this particular behavior. However, I would like to confirm that. Are you able to duplicate the issue in a test project? If so, please the source to the test project (no exe) to our support email and I’ll take a look. Also, what version of Delphi are you using?

                Ray

                Ray Konopka
                Keymaster

                  Hi Chris,
                  It is best to submit them on Embarcadero’s Quality Portal for tracking. When you do, be sure to put KSVC in the subject line for easier identification. Embarcadero does not have a field to specify this library.
                  Also, I don’t mind if you also post a heads up here to any reports submitted.
                  Ray

                  in reply to: No TRzRegIniFile #3915
                  Ray Konopka
                  Keymaster

                    Hi Nat,

                    Thank you for providing more information about what you are trying to do–that is, compiling the RCDemo.

                    Yes, because of some of the changes that Embarcadero introduced into the PROJ file and the fact that RCDemo supports older versions of Delphi, the prompt to select an SDK is presented when you first open the project in Delphi 11. Typically, the built in SDK is automatically selected and the user just clicks the OK button to continue. However, it appears from the screenshot, that you opted to create a new SDK. That is why you were prompted to download other items from Microsoft’s website.

                    From the remaining issues you describe it sounds like you created an SDK for creating a UWP app and not a standard Win32 (or Win64) app.

                    I just loaded the RCDemo project (in Delphi 11) on a new VM and I was prompted to select an SDK, but I just selected the default Win32 SDK that was presented. The project loaded, however, when I tried to compile the demo, I did get an error, but it is a known error. Embarcadero did not update a couple of the source files in the demo with the Delphi 11 release. Fortunately, the fixes are straight-forward.

                    TabsFrame.pas
                    In: procedure TFmeTabs.Init;
                    Replace:
                    if UsingSystemStyle then
                    With:
                    if UsingSystemStyle( Self ) then

                    CustomFramingFrame.pas
                    In: procedure TFmeCustomFraming.Init;
                    Replace
                    if UsingSystemStyle then
                    With:
                    if UsingSystemStyle( Self ) then

                    MainForm.pas
                    In: procedure TfrmMain.VisualStyleClick(Sender: TObject);
                    Replace:
                    C := GetGradientPanelFrameColor( FCurrentGCS )
                    With:
                    C := GetGradientPanelFrameColor( Self, FCurrentGCS )

                    Then you’ll be able to build the RCDemo project successfully.

                    As for the TRzRegIniFile component, you are correct, that component does not save data for all components. In fact, the TRzRegIniFile is just a conduit to a data store, as I described in a previous post. The TRzFormState component is designed to save certain properties of a form to the data store referenced by the TRzRegIniFile component. To persist the properties of other components in your application, please take a look at the TRzPropertyStore component.

                    Ray

                    in reply to: WMI error #3914
                    Ray Konopka
                    Keymaster

                      Hi Venkatesan,

                      Version 5.4.3 of CodeSite has been released. The new version includes the updated CS Tools installer (also with new version number) and a minor update to the CodeSite Viewers.

                      Ray

                      in reply to: No TRzRegIniFile #3906
                      Ray Konopka
                      Keymaster

                        The KSVC controls have no dependencies on Windows Kits. So, I’m not sure what caused Windows Kits to be installed.

                        As for the TRzRegIniFile, it is designed to use either an INI or the Registry. That is the point of the control. You control where the actual data store is located. The default is an INI file.

                        “I don’t understand why Embarcadero needed to buy the rights to KSVC if there were problems?”

                        I’m sorry, but I’m not sure I understand your question.

                        Ray

                        in reply to: No TRzRegIniFile #3902
                        Ray Konopka
                        Keymaster

                          Hi Nat,

                          That exception is coming from the TRzFormState component. The TRzFormState component utilizes a connected TRzRegIniFile component to control where the form state information is actually stored.

                          If you select the TRzFormState component in the Form Designer and then press F1, you should see the help for TRzFormState that talks about assigning a TRzRegIniFile component to the RegIniFile property. You can then click on the TRzRegIniFile link to learn more about the components property.

                          Ray

                          in reply to: Error in CustomFramingFrame #3901
                          Ray Konopka
                          Keymaster

                            Hi Nat,

                            That appears to be an error that is not related to the KSVC components.

                            Ray

                            in reply to: WMI error #3900
                            Ray Konopka
                            Keymaster

                              Hi Venkatesan,

                              I understand your request, I will do my best to squeeze this in as soon as possible.

                              Ray

                              in reply to: Custom Images for TRzCheckBox and TRzRadioGroup. #3885
                              Ray Konopka
                              Keymaster

                                Hi Steve,

                                I apologize for the delay in approving your post to appear in the forum. Unfortunately, the changes that Embarcadero made to the TRzCheckBox and TRzRadioButton components to better support High DPI also broke the functionality of custom glyphs. I am trying to get this issue fixed. I will keep you posted.

                                Ray

                                in reply to: WMI error #3871
                                Ray Konopka
                                Keymaster

                                  Hi,
                                  I have modified the CodeSite Tools installer to no longer use WMI and have uploaded the new CS5_Tools installer to the Raize Software website. You can download the new version here: https://raize.com/wp-content/uploads/CS5_Tools.zip

                                  To be clear, the version of the tools is still 5.4.2, it is just the installer that has been updated.

                                  Ray

                                Viewing 15 posts - 1 through 15 (of 306 total)