Jump to content

Kurt G

Members
  • Content Count

    20
  • Joined

  • Last visited

Everything posted by Kurt G

  1. Kurt G

    Use FlashFiler 2 in RAD 11.3

    I don't know if this is the right forum, but I try: I have used TurboPower FlashFiler 2 before (with Delphi 5) for a property registration program. TurboPower FlashFiler 2 is chosen as the database is integrated in the exe file! Now I would like to redesign the project, but am in doubt whether TurboPower FlashFiler 2 can be used together with Delphi 11.3 Community Edition. Does anyone know it?
  2. Kurt G

    Use FlashFiler 2 in RAD 11.3

    Stupid question, forget it. I found the answer myself: of course it cannot be done.
  3. My Delphi 10.4 Sydney Community Edition has expired and I would like a new license. When I tried to install 11.2 I got 12.0 Finally, I manually deleted everything in the dir where RAD was installed. Now when I want to install Delphi Community Edition 11.2, it says that there is already a version on the PC that it wants to remove. But instead it comes back to the same place and I can't uninstall. What can I do?
  4. Thank you for the answer.
  5. Now I've managed to get 11.2 installed. Sorry for the trouble I've caused. Is there something about giving points for the answers?
  6. It occurred to me that I might be able to retrieve the program folder from the trash. I found it and recreated it. But I still have problem installing 11.2. I must be doing something wrong somewhere. Should I create a new question with those issues?
  7. I have used the installer probably 10 times, but each time it ended up installing ver. 12, or it ran cleanly without installing anything. OK, I have to get down to removing the remnants of the old installation. :-)
  8. OK. But my problem now is that the installer says there is a version that needs to be removed first. Then when I tell the installer to remove the old program, the program shuts down. This repeats itself every time! Since I manually deleted the entire dir of the old program, the installer must find information somewhere that makes it think the program still exists. Where do I find this information and how do I remove it?
  9. When I place a form in the IDE on the screen and e.g. sets the width to 600pix, it takes up much more on the screen. I have posted a screenshot of RAD10 at: http://kg2.dk/RAD2/index.htm The shape is set in the Object Inspector to 1055 x 1080 px. I make a screencopy and paste into IrfanView. When I measure the size of the shape on the screenshot with IrfanView, it is 1701 x 957 px. And IrfanView gives the resolution of the image as 49 dpi. Another thing, which may be related to the above, I am wondering: The form and the Object Inspector seem to be related. I cannot separate the left edge of the shape and the right edge of the Object Inspector. When I move the mouse to the bar at the top of the shape, I can't move the shape! If, on the other hand, I move the right edge of the Object Inspector, the shape follows. Where in the IDE can you set up so that the form on the screen takes up the same amount as I specify?
  10. I have installed Delphi RAD 10.4. I want to install a component to rotate images and have found various guides, but can't get any of them to work. Is there anyone who can help?
  11. Kurt G

    Install rotating component in RAD 10.4

    I have now 'played' with the RotateBitmaps procedure and got it to work as I want. So now I don't need to install the new component. Thanks for the help.
  12. I an totally new to RAD, and have installed RAD 11.2. I want to convert a project from Delphi5 to RAD 11.2 in Multi-Device App. as it can rotate an Image. I therefor started a new app. but I can not find anything like ListBox or FileListBox. Is there no procedure or function in RAD 11.2 to do the job? Is there another way i FMX to do it?
  13. I don't know what "AFRO" and "(ouf)" in "Thanks, but this AFRO thing is now obsolete because IDE force it when you close designer (ouf)" mean. Can anyone help?
  14. Kurt G

    Install rotating component in RAD 10.4

    Yes, but then the corners are cut off. I'll see if I can find Ansus Johnson's Image32 and try it!
  15. Kurt G

    Install rotating component in RAD 10.4

    I have tried the shown program and it works with rotation. I set it to rotate 45 degrees for each press of the button but then the image moves further down to the right with each press. Can the routine only be called once? I show images for four consecutive taps.
  16. Kurt G

    Install rotating component in RAD 10.4

    Yes, but it's in FMX and I have a hard time doing without the VCL panel at the top, as I don't understand how to find the components in FMX. And I haven't been able to find Rotate in any of the packages for VCL. Therefore, I would like to have the rotate component installed in the VCL.
  17. Thanks for your help, it's starting to come through. I am having problems with the components disappearing from the Frame. I must have found a tutorial about the IDE, but it shouldn't be YOU TUBE, I prefer to read.
  18. unit Unit1; interface uses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Controls.Presentation, FMX.StdCtrls, FMX.Layouts, System.IOUtils, FMX.ListBox; type TForm1 = class(TForm) Button1: TButton; ListBox1: TListBox; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.fmx} procedure TForm1.Button1Click(Sender: TObject); var Lvi : TListViewItem; I : Integer; DirArray : TStringDynArray; begin Lvi := ListView1.Items.Add; Lvi.Text := 'Hello'; Lvi := ListView1.Items.Add; Lvi.Text := 'FMX'; Lvi := ListView1.Items.Add; Lvi.Text := Tdirectory.GetCurrentDirectory; DirArray := TDirectory.GetFiles(Lvi.Text); var Filename: string; for I := 0 to High(DirArray) do begin Filename := DirArray; Lvi := ListView1.Items.Add; Lvi.Text := fileName; end; end; end. ----------------------------------------------------- A lot has happened since D5! 🙂 I started a new project and placed a Tbutton and a TListBox on the form. But the compiler give error: Undeclared identifier: TListviewItem in the line: Lvi : TListViewItem; See the code in Unit.pas. Unit1.pas
  19. I have given up the D5 code. I started from beginning by selecting Multi-Device Application. But I still nead the function to list directory and files, and I have not found any examples for that until now.
  20. Pardon, it is l"DirectoryListBox or FileListBox."
×