GPRSNerd
Members-
Content Count
28 -
Joined
-
Last visited
-
Days Won
1
GPRSNerd last won the day on February 22 2020
GPRSNerd had the most liked content!
Community Reputation
12 GoodRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
In file CCR.Exif.BaseUtils.pas you have to change the following lines: From function Realloc(var NewCapacity: Longint): Pointer; override; To function Realloc(var NewCapacity: {$IF CompilerVersion >= 35}NativeInt{$ELSE}LongInt{$IFEND}): Pointer; override; {$IF CompilerVersion < 33} protected {$ELSE} public {$IFEND} And From function TMetadataBlock.TDataStream.Realloc(var NewCapacity: Longint): Pointer; To function TMetadataBlock.TDataStream.Realloc(var NewCapacity: {$IF CompilerVersion >= 35}NativeInt{$ELSE}LongInt{$IFEND}): Pointer;
-
Where did you put this additional code? In the component or in the program in the FormShow() or FormCreate() event?
-
Yeah, it was reproducible. I added a functionality to switch the embedded styles in my app on runtime. When I start the app and switch styles and in this procedure once the default Windows style was set, then the app throws the exception on close. It is not necessarily the "Windows" style which has to be set last before closing.
-
I can confirm that Delphi 11.3 has the issue fixed. No more exception on close when the default style "Windows" was used/changed during runtime.
-
Here are two bug reports that seem to describe the issue above: https://quality.embarcadero.com/browse/RSP-38114 https://quality.embarcadero.com/browse/RSP-39197 Both may have been fixed in Delphi 11.3 released today. I will check that after installation.
-
Hi, did you find a fix for your problem? I've exactly the same problem with one application, exception logged with madExcept: exception number : 1 exception class : EAccessViolation exception message : Zugriffsverletzung bei Adresse 004090BC in Modul 'NikonDecoder.exe'. Lesen von Adresse 0030FFF0. main thread ($4cd0): 004090bc +04 NikonDecoder.exe System 67 +0 TObject.InheritsFrom 00408fa6 +0e NikonDecoder.exe System 67 +0 @IsClass 007104bf +43 NikonDecoder.exe Vcl.Styles TStyleEngine.DoUnregisterStyleHook 00710716 +1a NikonDecoder.exe Vcl.Styles TStyleEngine.Notification 00667aef +f3 NikonDecoder.exe Vcl.Themes TCustomStyleEngine.UnRegisterStyleHook
-
Hi Angus, thanks for the heads-up, it's working now again. Thx, Stefan
-
Hi, seems that the svn servers (http://svn.overbyte.be/svn/ics/trunk) are down since 9 Apr. TortoiseSVN complains about "host unknown".
-
I'm using a tweaked version of ZipTV 2009.6.15, AFAIK that is from 2009. I've given up contacting the developers years ago, as they have gone out of business, also AFAIK. You should better use components that are currently developed, maintained and supported. AFAIR there was even a CVE on the components in the past.
-
Using it with Delphi X.4.1 Sydney, works fine, but just in 32bit apps, haven't tried 64bit.
-
Where is the Install command in the Project Manager of D10.3?
GPRSNerd replied to Silver Black's topic in VCL
Do the ShellControls come with two packages, one for runtime and one for designtime? Have you opened the runtime package instead of the designtime package and tried to install it? This works only for designtime packages. -
Probably nobody will help you with this by Teamviewer or similar. You better copy the errors into the thread here, so that we can help you. ccr.exif works like a charm here with Rio and all predecessors for years.
-
Check my older RSP, that has an easier workaround: https://quality.embarcadero.com/browse/RSP-24070 Just load the corresponding color again with StyleServices: be2.Color := StyleServices.GetSystemColor(be2.Color);
-
Delphi 10.3.3 - Indy - could not load root certificate
GPRSNerd replied to Vandrovnik's topic in Indy
Hi Remy, could you explain how to use the version from the git repo then?! As the Indy components are part of the Delphi standard installation, I guess they must be swapped somehow... Thanks, Stefan -
Problem with Form/Window Caption on HIGH DPI, Delphi 10.3 and VCLStyles SKIN
GPRSNerd replied to ivancx's topic in VCL
Here's one of many: https://quality.embarcadero.com/browse/RSP-22230