-
Content Count
560 -
Joined
-
Last visited
-
Days Won
6
Everything posted by Vandrovnik
-
Structure Panel empty - how to get Embarcadero support?
Vandrovnik replied to PeterPanettone's topic in Delphi IDE and APIs
Probably the same problem as in Project Window https://quality.embarcadero.com/browse/RSP-27182 It is reported, but when it will be fixed... -
What about DirectWrite? It should support OpenType fonts.
-
Does AV happen on one computer, or all? Every query, or just some (with parameters? with string result? with only integer result? etc.)?
-
But he wrote that error happens in external .dll when he opens a query, not in his code.
-
Build and install all designtime packages - Feature request
Vandrovnik replied to Tommi Prami's topic in Delphi IDE and APIs
Installing components after each IDE update is a pain for me, so I created a .bat script, which recompiles all components (Win32 runtime, Win64 runtime, Win32 design time). It writes a list of created .bpl files to a text file. The only manual part then is to add them to the IDE: Component, Install packages, Add, paste the path to the .bpls. I still did not try to add all bpls in one step, may be it works :-), but I enter them one by one. -
Delphi 10.3.3 Problems with x64-Debugger
Vandrovnik replied to johnnydp's topic in Delphi IDE and APIs
I have not seen this problem, but I also almost do not debug Win 64 apps, because it is much slower on my PC. So I debug 32 bit versions and just occasionally test 64 bit versions. -
Smaller custom component between design & Running mode
Vandrovnik replied to Damien Leveugle's topic in VCL
I guess in the IDE, you draw for example 12 px box, but whole IDE is scaled by Windows, so that it is displayed as 24 px (example). In running application, if your application is HDPI enabled, than Windows does not do the scaling. So original checkbox is drawn 24 px, because it is able to do it by itself, but your component is drawn 12 px, because it does not calculate proper size. -
Delphi Rio IDE hangs again and again
Vandrovnik replied to microtronx's topic in Delphi IDE and APIs
Can you compile to one big .exe for debugging and to packages only for release? -
I think till now they store database password in plain text in a config file and now they want something better, so that their users cannot read password from it. If they store password xored with a secret key, it would help against "normal" users. If they do not want to store that secret key in .exe, they can generate it on the fly - for example, using a random number generator set to a specific seed and obtaining generated values. It will not be hacker-proof, but it will be curious-user-proof, which is probably good enough for a legacy application.
-
Soji wrote "legacy application", I think it is not a mobile app, but a desktop one, which connects directly to a database.
-
Hmm, and this API service will have to store password for the database somewhere... And his original application will have to store password for the API service somewhere, so now he has to store two passwords 🙂
-
Delphi Rio IDE hangs again and again
Vandrovnik replied to microtronx's topic in Delphi IDE and APIs
If you had to power off the computer, I would suspect hardware. While I do see frozen IDE +- two times a week, I have never to reboot PC - it is enough to run Task Manager and kill BDS there. Did you move some components from the old PC to the new one? Harddisk? Network card...? -
Automatically make your PC wake up at a given time
Vandrovnik replied to dummzeuch's topic in Tips / Blogs / Tutorials / Videos
I have usually seen a WOL-related checkbox also on the tab "Power Management", but when it works now, it probably does not need to be touched 🙂 -
Automatically make your PC wake up at a given time
Vandrovnik replied to dummzeuch's topic in Tips / Blogs / Tutorials / Videos
About Wake on LAN: I have not seen PC without WOL support for at least 15 years... But as far as I know, in Windows, WOL must be enabled in network adapter's properties. -
I use IBX components to connect to Firebird. In 64-bit version of my application, it loads client library from ibclient64.dll (it is defined in IBX.IBHeader.pas). Client library must be 64-bit. Client library may need other DLLs (such as MSVCR100.dll...).
-
Exception.CreateFmt vs. CreateResFmt
Vandrovnik replied to dummzeuch's topic in RTL and Delphi Object Pascal
"fairly easy" 🙂 In VirtualProtect calls, hard-coded value "4" - isn't it better to use sizeof(pointer) instead, so that it is safe in 64-bits too? Or this code is for 32-bits only? -
There is a switch in Option - you can try, whether it makes any difference: "Optimization in source code file access for large projects through a unit cache, particularly when residing on remote drives. The feature is controlled by a new IDE option at Tools > Options > IDE > Compiling and Running > Enable unit directory cache, and is on by default. " What about an antivirus? Years ago at school sometimes antivirus started to scan a file, locked it, and some applications complained about the file being inaccessible... It was always on a network drive.
-
Does OpenSSL DLL depend on some other DLL(s)?
-
I remember how long it took me to change the old "MS something" to "Tahoma", because all bold/colored labels had ParentFont=false. So yes, I think this would be useful.
-
Stop IDE from writing unit names all by itself ?
Vandrovnik replied to A.M. Hoornweg's topic in Delphi IDE and APIs
May be it will be easier to define empty System.Actions unit for Delphi XE than to fight with Delphi RIO (put it in a directory, where XE will search, but RIO will not). -
New versions of compiler may use new functions in Windows API, that are not present in Windows 2000. So application will start and then complain about missing something (or start and immediatelly die silently).
-
Set a PC environment based on a Country name..
Vandrovnik replied to Ian Branch's topic in General Help
And what data type do you use? https://en.wikipedia.org/wiki/Year_2038_problem -
Is there a way how to obtain all defined symbols (like ANDROID, DEBUG etc.) and have them displayed during compilation? It would be nice if we put something like {$ShowDefinedSymbols} in source file and defined symbols would appear in messages from the compiler...
-
Hello, see https://community.idera.com/developer-tools/b/blog/posts/new-in-rad-studio-10-3-high-dpi-image-list-for-windows K.
-
Squint and read: CreateFormFromStings
Vandrovnik replied to Darian Miller's topic in RTL and Delphi Object Pascal
They could create method with correct name and for some time keep the bad one in place too, just marked as deprecated... Just if there were a will to fix things.