#421
|
||||
|
||||
![]() Quote:
|
The Following User Says Thank You to crachlow For This Useful Post: | ||
audiofeel (18-08-2023) |
Sponsored Links |
#422
|
||||
|
||||
![]()
FMXInno SlideShow Example using:
|
The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (18-08-2023) |
#423
|
||||
|
||||
Scale
what example do you use for the test? I'm fine with this example.
__________________
https://t.me/FMXInno Last edited by audiofeel; 27-12-2023 at 11:07. |
#424
|
||||
|
||||
![]() Quote:
![]() Code:
var SSImg: String; i: Integer; begin for i:= 1 to 20 do begin FMXITEM[i].FCreateEx(FMXTAB.Handle); FMXRECT[i].FCreate(FMXITEM[i].Handle); FMXRECT[i].Align(Client); SSImg:= 'Background' + IntToStr(i) + '.jpg'; FMXRECT[i].FillPicture(ExtractAndLoad(SSImg), wmTileStretch); end; ![]()
__________________
https://t.me/FMXInno Last edited by audiofeel; 19-08-2023 at 00:20. |
The Following User Says Thank You to audiofeel For This Useful Post: | ||
hitman797 (19-08-2023) |
#425
|
||||
|
||||
Quote:
and Handle TabControl2 in FMXForm. and add objects to TabControl2. Last edited by hitman797; 19-08-2023 at 01:34. |
The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (19-08-2023) |
#426
|
||||
|
||||
![]()
FMXInno Viewport 3D Example using:
@BLACKFIRE69 HI, BLACKFIRE69 Thank you for the update. Can you add BringToFront to "FLayer3D". Last edited by hitman797; 19-08-2023 at 14:06. |
The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (19-08-2023) |
#427
|
||||
|
||||
Quote:
Thanks for the work. Much better than I did. It turned out a little not what was expected. We took a wrong turn somewhere. We are waiting for the guru to clarify the situation. ![]() ![]()
__________________
https://t.me/FMXInno |
The Following User Says Thank You to audiofeel For This Useful Post: | ||
hitman797 (19-08-2023) |
#428
|
||||
|
||||
3d delphi
Code:
Form1: TForm; Viewport3D1: TViewport3D; Layer3D1: TLayer3D; FloatAnimation1: TFloatAnimation; Layer3D2: TLayer3D; FloatAnimation2: TFloatAnimation; Code:
object FloatAnimation1: TFloatAnimation Enabled = True Duration = 1 Loop = True PropertyName = 'RotationAngle.X' StartValue = 0 StopValue = 180 OnProcess = FloatAnimation1Process end object FloatAnimation2: TFloatAnimation Enabled = True Duration = 1 Loop = True PropertyName = 'RotationAngle.X' StartValue = 180 StopValue = 360 OnProcess = FloatAnimation2Process end Code:
procedure TForm3.FloatAnimation1Process(Sender: TObject); begin Layer3D2.BringToFront; end; procedure TForm3.FloatAnimation2Process(Sender: TObject); begin Layer3D1.BringToFront; end; Last edited by hitman797; 21-08-2023 at 18:26. |
The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (20-08-2023) |
#429
|
||||
|
||||
![]()
Example-DiskList.iss
Code:
var FMXLabel : FLabel; procedure FMXInnoInit; begin FMXLabel := InitLabelHandle; end; procedure FMXDesigning; begin FMXLabel.FCreate(FMXForm.Handle, ''); if wGetDriveMediaType('D') = 1 then begin FMXLabel.Text('UNKNOWN'); end; if wGetDriveMediaType('D') = 2 then begin FMXLabel.Text('HDD'); end; if wGetDriveMediaType('D') = 3 then begin FMXLabel.Text('SSD'); end; if wGetDriveMediaType('D') = 4 then begin FMXLabel.Text('SCM'); end; FMXLabel.Left(50); FMXLabel.Top(50); FMXLabel.FontSetting('Segoe UI', 16, ALBlack); end; |
The Following 2 Users Say Thank You to hitman797 For This Useful Post: | ||
audiofeel (24-08-2023), BLACKFIRE69 (26-08-2023) |
#430
|
||||
|
||||
Quote:
__________________
https://t.me/FMXInno |
The Following User Says Thank You to audiofeel For This Useful Post: | ||
hitman797 (24-08-2023) |
#431
|
||||
|
||||
![]()
You didn't look at the constants.
const HDD_MEDIA_TYPE_UNKNOWN = $0000; HDD_MEDIA_TYPE_HDD = $0003; HDD_MEDIA_TYPE_SSD = $0004; HDD_MEDIA_TYPE_SCM = $0005; [IMG] https://i.ibb.co/HC1cpzn/2023-08-24-202555.png [/IMG] |
The Following 2 Users Say Thank You to crachlow For This Useful Post: | ||
audiofeel (24-08-2023), BLACKFIRE69 (26-08-2023) |
#432
|
||||
|
||||
And in general, you are not going to manually register the disks that may be in the system?
|
#433
|
||||
|
||||
Quote:
Code:
var FMXLabel : FLabel; procedure FMXInnoInit; begin FMXLabel := InitLabelHandle; end; procedure FMXDesigning; begin FMXLabel.FCreate(FMXForm.Handle, ''); if wGetDriveMediaType('D') = 0 then begin FMXLabel.Text('UNKNOWN'); end; if wGetDriveMediaType('D') = 3 then begin FMXLabel.Text('HDD'); end; if wGetDriveMediaType('D') = 4 then begin FMXLabel.Text('SSD'); end; if wGetDriveMediaType('D') = 5 then begin FMXLabel.Text('SCM'); end; FMXLabel.Left(50); FMXLabel.Top(50); FMXLabel.FontSetting('Segoe UI', 16, ALBlack); end; Code:
var FMXLabel : FLabel; procedure FMXInnoInit; begin FMXLabel := InitLabelHandle; end; procedure FMXDesigning; begin FMXLabel.FCreate(FMXForm.Handle, ''); case wGetDriveMediaType('D') of 0: FMXLabel.Text('UNKNOWN'); 3: FMXLabel.Text('HDD'); 4: FMXLabel.Text('SSD'); 5: FMXLabel.Text('SCM'); end; FMXLabel.Left(50); FMXLabel.Top(50); FMXLabel.FontSetting('Segoe UI', 16, ALBlack); end; |
The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (24-08-2023) |
#434
|
||||
|
||||
Quote:
Code:
procedure DiskListOnChange(Sender: TObject); var S: String; begin S := DirEdt.GetText; StringChange(S, ExtractFileDrive(S), DiskList.GetSelectedDisk); DirEdt.Text(S); case wGetDriveMediaType(S) of 0: FMXLabel.Text('Unknown'); 3: FMXLabel.Text('HDD'); 4: FMXLabel.Text('SSD'); 5: FMXLabel.Text('SCM'); end; end;
__________________
https://t.me/FMXInno |
The Following 3 Users Say Thank You to audiofeel For This Useful Post: | ||
#435
|
||||
|
||||
Quote:
|
![]() |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Windows Fluent Effects Standalone API - InnoSetup / VCL / FXM | BLACKFIRE69 | Conversion Tutorials | 0 | 15-11-2023 18:35 |
Windows Phone Installer similar to razor12911's original design? | Kitsune1982 | Conversion Tutorials | 0 | 02-07-2020 14:04 |
INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 03:05 |
Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 10:48 |