#721
|
||||
|
||||
Quote:
yes it seems like it's working without spaces, (hey Google, what the f*ck? ), but we cannot use it that way. i just updated the Google API, and now it works. . Last edited by BLACKFIRE69; 14-07-2024 at 02:16. |
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
Sponsored Links |
#722
|
||||
|
||||
Quote:
Code:
function GetUILanguage: Integer; function wGetUserCountryName: WideString; external 'wGetUserCountryName@files:FMXInno.dll stdcall delayload'; |
The Following User Says Thank You to audiofeel For This Useful Post: | ||
hitman797 (08-01-2024) |
#723
|
||||
|
||||
How did I understand that it is better to write the source text in UTF 8, that is, only Latin characters? Does he not understand ANSI , that is, the Cyrillic alphabet, for example?
|
The Following User Says Thank You to audiofeel For This Useful Post: | ||
hitman797 (08-01-2024) |
#724
|
||||
|
||||
Quote:
Code:
function wGetUserUILanguageISO639: WideString; Last edited by BLACKFIRE69; 22-01-2024 at 21:48. |
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
#725
|
||||
|
||||
Everything is just fine. now you need to figure out the special characters, if they come across in the text, then it will all look like in this table
Code:
' %27 ( %28 ) %29 * %2A + %2B , %2C - %2D . %2E / %2F |
The Following 3 Users Say Thank You to audiofeel For This Useful Post: | ||
#726
|
||||
|
||||
@Tihiy_Don,
Code:
- Updated FToggleCheckBox.FontColor method. Last edited by BLACKFIRE69; 22-01-2024 at 21:49. |
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
#727
|
|||
|
|||
Thanks, everything is working as it should now.
|
The Following User Says Thank You to Tihiy_Don For This Useful Post: | ||
BLACKFIRE69 (10-01-2024) |
#728
|
||||
|
||||
FMXInno Dev crazy stuff
Quote:
1. Desktop Widgets: Code:
* Similar to MacOS Sonoma, these widgets will be positioned on the active desktop, not on the installer interface. -- Includes CPU / RAM / DISK / Network / Battery usage. -- Temperature. -- (The weather widget is currently in the development stage, not fully finished) -- Clock (available in both Digital and Analog). -- Image gallery slideshow. -- Installation status: Remaining / Elapsed time, Installing speed, etc. -- Users can create custom widgets as desired. -- Fully customizable. 2. Co-Pilot sidebar Panel: Code:
* Similar to Windows Co-pilot, Co-pilot sidebar will be shown in an extended space of the installer on the left or right. meaning, the installer will automatically be resized (expanded/collapsed) when the Co-pilot side-bar is activated/deactivated. -- Powered by GPT-3.5 Turbo (paid users can use GPT-4 +). -- DALL-E is not yet available (even for paid users). -- Ability to define custom error codes or grammar queries for the corresponding installer. so, the Co-pilot will describe these errors or specific statuses and recommend suggestions when the user asks about them. -- By default, an animated image/button (like Apple's Siri) will indicate the Co-pilot on the installer until the user changes it. -- Fully customizable. . Last edited by BLACKFIRE69; 14-07-2024 at 02:16. |
The Following 5 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (12-01-2024), Harsh ojha (12-01-2024), hitman797 (12-01-2024), Lord.Freddy (12-01-2024), Masquerade (12-01-2024) |
#729
|
||||
|
||||
@Blackfire69
They look AWESOME. Such modern style features. |
The Following 3 Users Say Thank You to Masquerade For This Useful Post: | ||
#730
|
||||
|
||||
Quote:
|
The Following User Says Thank You to audiofeel For This Useful Post: | ||
hitman797 (12-01-2024) |
#731
|
||||
|
||||
I found it on a flash drive. but the date is old. April 23rd.
|
The Following 2 Users Say Thank You to audiofeel For This Useful Post: | ||
Behnam2018 (16-01-2024), hitman797 (12-01-2024) |
#732
|
||||
|
||||
Windows 8
A small example of the GUPTA script is stylized for Windows 8. Everything is as usual, the selection of components, folders, comparison of system requirements, a custom form of deletion.
Last edited by audiofeel; 22-07-2024 at 12:04. |
The Following 6 Users Say Thank You to audiofeel For This Useful Post: | ||
ADMIRAL (20-01-2024), Behnam2018 (18-01-2024), BLACKFIRE69 (18-01-2024), hitman797 (18-01-2024), Jahan1373 (18-01-2024), Lord.Freddy (18-01-2024) |
#734
|
||||
|
||||
FMXInno - Installer Template
FMXInno - Installer template Quote:
Quote:
. |
The Following 10 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
ADMIRAL (22-01-2024), audiofeel (22-01-2024), Behnam2018 (22-01-2024), Ele (22-01-2024), hitman797 (22-01-2024), Jahan1373 (22-01-2024), Lord.Freddy (22-01-2024), nordi (12-02-2024), pcblizzard (27-01-2024), Tihiy_Don (22-01-2024) |
#735
|
||||
|
||||
FMXInno v1.0.0.2 - Extra
i've added two new functions to retrieve the build date of the FMXInno library. i hope they'll be helpful in some cases.
Code:
function wGetFMXInnoBuildDate: Integer; procedure wGetFMXInnoBuildDateEx(var YearW, MonthW, DayW: Word); 1. Method - 01 Code:
function FMXInnoBuildDate_1: String; var YearW, MonthW, DayW: Word; begin wGetFMXInnoBuildDateEx(YearW, MonthW, DayW); Result := Format('Build Date: %d-%d-%d', [YearW, MonthW, DayW]); end; 2. Method - 02 Code:
function FMXInnoBuildDate_2: String; var YearW, MonthW, DayW: Word; EncodedDate: Integer; begin EncodedDate := wGetFMXInnoBuildDate; YearW := EncodedDate shr 9; MonthW := (EncodedDate shr 5) and $0F; DayW := EncodedDate and $1F; Result := Format('Build Date: %d-%d-%d', [YearW, MonthW, DayW]); end; . Last edited by BLACKFIRE69; 11-05-2024 at 09:04. |
The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (23-01-2024), Behnam2018 (23-01-2024), Cesar82 (13-02-2024), hitman797 (23-01-2024), Lord.Freddy (24-01-2024), Tihiy_Don (23-01-2024) |
Thread Tools | |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Windows Fluent Effects Standalone API - InnoSetup / VCL / FXM | BLACKFIRE69 | Conversion Tutorials | 0 | 15-11-2023 17:35 |
Windows Phone Installer similar to razor12911's original design? | Kitsune1982 | Conversion Tutorials | 0 | 02-07-2020 13:04 |
INDEX - Conversion Tutorial Index | Razor12911 | Conversion Tutorials | 5 | 11-06-2020 02:05 |
Frequently Asked Questions | Joe Forster/STA | PC Games - Frequently Asked Questions | 0 | 29-11-2005 09:48 |