Jump to content

Shrinavat

Members
  • Content Count

    60
  • Joined

  • Last visited

  • Days Won

    3

Shrinavat last won the day on December 27 2023

Shrinavat had the most liked content!

Community Reputation

14 Good

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Shrinavat

    The GetIt server is back online - With the 12.0 Patch 1

    (deletia)R120.patch1-20240131.zip
  2. Shrinavat

    Delphi 12 Component Palette Panel Shift Issue

    Yes, I have different Desktops. *.DST files do not have component palette properties. Deleting both your own Desktops and the default ones did not affect the offset position of the component palette :-(
  3. Shrinavat

    Delphi 12 Component Palette Panel Shift Issue

    Uninstalling CnPack had no effect, the panel appeared to be offset as well.
  4. Upon each launch of IDE, the Component Palette panel consistently shifts to the right by a specific distance. This behavior requires me to manually drag the panel back to its original position on the left side every time I start Delphi 12. Additionally, I have observed that the "Lock Controls" icon from the "View" toolbar disappears. I have manually added this icon to the toolbar, but it vanishes. It reappears only after selecting the same action through the "Edit|Lock Controls" menu. I have attached a screenshot illustrating the issue. I would like to inquire if there is a solution or workaround to address this problem. Is there a way to lock or fix the position of the Component Palette panel, so it remains in place across Delphi 12 sessions? Additionally, I am curious about where the configuration data for the panel's position is stored. Does Delphi 12 save this information in the registry, a configuration file, or elsewhere?
  5. Shrinavat

    Advise the component for editing tables

    Steema TeeGrid The grid component for Delphi VCL & FMX offers a very fast grid for your RAD Studio projects
  6. I've found the source of the problem. It turned out to be third-party components - ESBPCS for VCL. If they are disabled, then the problem disappears. As @balabuev rightly pointed out, here's what's to blame: "Non-standard property editors are installed. More technically, this happens when a property editor implements the ICustomPropertyDrawing interface but does not implement the more recently introduced ICustomPropertyDrawing80 interface." The developer of these components has already been notified.
  7. Shrinavat

    Object Inspector issue in 10.4.2??

    @maloboDid you find a solution? I have the same issue
  8. Hmmm... a similar problem is described here But there is no solution how to fix it.
  9. I'm encountering a problem with the color names in freshly installed Delphi 12, and this issue also existed in Delphi 11.x. The problem is observed as a text "overlay" in any Object Inspector field related to color, as illustrated in the attached animation. It seems to occur regardless of whether any experts or updates are installed. How can I address this issue?
  10. Shrinavat

    Delphi 12 and *.dsv

    I recently installed RAD Studio 12 Pro with Delphi. Now a ProjectName.dsv file is being created in the project folder. What is this, and how can I disable the creation of this file? Here's what its contents look like for example: [ClosedView_RDpcRGVscGhpX3Byb2plY3RzXENhbGxDZW50ZXJcQ2FsbENlbnRlci5kcHI=] Module=D:\Delphi_projects\CallCenter\CallCenter.dpr CursorX=1 CursorY=18 TopLine=1 LeftCol=1 Elisions= Bookmarks= EditViewName=D:\Delphi_projects\CallCenter\CallCenter.dpr [ClosedView_RDpcRGVscGhpX3Byb2plY3RzXENhbGxDZW50ZXJcX3VuaXRzXGZyYW1lc1xmclJlcG9ydF9UcmFu c2ZlcnJlZFRvQW5vdGhlckRlcGFydG1lbnQucGFz] Module=D:\Delphi_projects\CallCenter\_units\frames\frReport_TransferredToAnotherDepartment.pas CursorX=1 CursorY=1 TopLine=1 LeftCol=1 Elisions= Bookmarks= EditViewName= [ClosedView_RDpcRGVscGhpX3Byb2plY3RzXENhbGxDZW50ZXJcX3VuaXRzXGZvcm1zXGZybVJlZmVyZW5jZS5w YXM=] ...
  11. Shrinavat

    .exe File not outputting

    @Remy Lebeau Could you please explain what is the point of using UniqueString (sCommand)?
  12. Shrinavat

    Delphi 11.3 is available now!

    Yes, I also turned off this feature because of the spontaneous jumps of the text. It's very annoying. Is there any RSP about this?
  13. Thanks to the author of the library we were able to find a solution: https://github.com/CleverComponents/Clever-Internet-Suite-Tutorials/tree/master/vcl/SendTelegramPhoto
  14. Hello, I know there are advanced Clever Internet Suite users here who might be able to help me with advice. To send an image to a Telegram channel, I use the following code: const urlTGSendPhoto = 'https://api.telegram.org/bot%s/sendPhoto'; BOT_API_KEY = 'xxxxxxxxxxxxxx'; CHANNEL_NAME = 'xxxxxxxxxxxxxx'; ... clHttpRequest.AddFormField('chat_id', CHANNEL_NAME); clHttpRequest.AddSubmitFile('photo', 'chart.png'); var s := clHttpTG.Post(Format(urlTGSendPhoto, [BOT_API_KEY]), clHttpRequest); where 'chart.png' is the name of the image file on disk. It works great. Can someone please tell me how to use a stream (TMemoryStream/TFileStream) or TPngImage/TJPEGImage/TBitmap instead of a file (that is, without the need to save the file to disk)?
  15. Shrinavat

    Format uses clause

    Exactly right! I'm sorry, my bad.
×