-
Content Count
575 -
Joined
-
Last visited
-
Days Won
6
Everything posted by Vandrovnik
-
Loading of translated resourcestrings broken in 10.4.2
Vandrovnik replied to Vandrovnik's topic in RTL and Delphi Object Pascal
I am attaching test project, it contains prepared .DEU file but no .exe file. In PSC.pas in TPSCForm.FormShow, resourcestring is assigned to button's caption, which is not working for me. Test66.zip -
Keyboard shortcut to move current line up or down?
Vandrovnik replied to RaelB's topic in Delphi IDE and APIs
Install it 🙂 Or install AutoHotKey 🙂 -
Several F2084 Internal Error on Delphi 10.4.2
Vandrovnik replied to Davide Angeli's topic in Delphi IDE and APIs
Could you make a copy of the project and then try to shrink the project to find out, which unit is causing it? -
Delphi 10.4.2 Right Click over a word -> Find Declaration, Not working.
Vandrovnik replied to Juan C.Cilleruelo's topic in Delphi IDE and APIs
For me it works poorly - often it takes really long time (5-10 s between Ctrl+click and moving to the declaration, but there is no indication that "Delphi is thinking about it"), or it does not work at all.- 45 replies
-
- 10.4.2
- find declaration
-
(and 1 more)
Tagged with:
-
Several F2084 Internal Error on Delphi 10.4.2
Vandrovnik replied to Davide Angeli's topic in Delphi IDE and APIs
If you do not find a real solution/reason and changing items in Library path works, you can use an app such as AutoHotKey and automatize changing these paths in Delphi dialog, so that you just press a keyboard shortcut and wait a while, while keyboard/mouse strokes are replayed. -
Good Key/Hash for SQL string
Vandrovnik replied to chkaufmann's topic in Algorithms, Data Structures and Class Design
If memory taken by whole strings is not a problem, I would use whole strings. (Or lossless compression of this string.) Do you include parameters into this hash? Because SELECT a.Value FROM Table a WHERE (a.Id=:Id) can produce different results for different parameters. -
"Variable Required" compiler error only in Delphi 10.4.2
Vandrovnik replied to Dave Novo's topic in Delphi IDE and APIs
Till yesterday I did not notice there is WriteBuffer/ReadBuffer - I started to use Write/Read long long time ago... Well, time to change old bad habbits 🙂 -
"Variable Required" compiler error only in Delphi 10.4.2
Vandrovnik replied to Dave Novo's topic in Delphi IDE and APIs
When tMemoryStream is not able to allocate more memory during a write, it raises an exception by itself in TMemoryStream.Realloc. With other streams, I think it would be easier to have another class, say tCheckedStream, which would override .Read and .Write methods and raise an exception, when it cannot write data or read enough data (you can pass another stream to its constructor, so it can be used with any other stream). -
Several F2084 Internal Error on Delphi 10.4.2
Vandrovnik replied to Davide Angeli's topic in Delphi IDE and APIs
Have you tried without MMX, GExperts etc.? -
It is already reported: https://quality.embarcadero.com/browse/RSP-33140
-
Annoying IDE behavior changes in 10.4.2
Vandrovnik replied to Wagner Landgraf's topic in Delphi IDE and APIs
I can confirm both 1 a) and 1 b). 10.4.2 installed as update over 10.4.1 (uninstall automatically done by installer), keeping settings, did not use Migration Tool. -
I have seen it too (monitor @ 125 %).
-
Can Delphi randomize string 'Delphi'?
Vandrovnik replied to Mike Torrettinni's topic in Tips / Blogs / Tutorials / Videos
No, you cannot assume this. -
Try - except - finally generates no debug-breakpoint in Exception scope
Vandrovnik replied to Rollo62's topic in RTL and Delphi Object Pascal
Can you create a reproducible small example? I have tried similar code and blue dots are present and debugger stops on them on breakpoint. -
Can Delphi randomize string 'Delphi'?
Vandrovnik replied to Mike Torrettinni's topic in Tips / Blogs / Tutorials / Videos
Maybe the reason is that you are using (probably 32bit) pseudo-random numbers, not true random numbers. These 32 bits create 4.29e9 seeds for random number generator, while 6 letters from your 52 letters is 19.77e9 combinations. In fact you could try to set the seed to all numbers from 0 to 255^4-1 and see, whether it creates desired result. If you have 64bit random number generator, it could reach the goal, I guess. -
You can use: TDummyDict = class(TDictionary<String, TDummy>); Then Ctrl+click works as expected. Content of tList<> - I have tried and it seems it works, or is it something else?
-
In Windows 7, TLS 1.2 must be enabled (do not know how, but there was a note about it for Windows 7).
-
atomic setting of a double variable
Vandrovnik replied to dummzeuch's topic in Algorithms, Data Structures and Class Design
type tTest=packed record b: byte; d: double; // not aligned end; var t: tTest; Sometimes I have to use packed record to read old data from files. -
FirebirdSQL client library parameter in INI
Vandrovnik replied to ertank's topic in MARS-Curiosity REST Library
Sorry, I did not see it.- 7 replies
-
- mars-curiosity
- firebird
-
(and 1 more)
Tagged with:
-
FirebirdSQL client library parameter in INI
Vandrovnik replied to ertank's topic in MARS-Curiosity REST Library
I am not sure - in the directory C:\Program Files\Firebird\Firebird_2_5\WOW64, I do not have msvcp80.dll and msvcr80.dll (these were used in 2.5.9). I would try to put them there (32bits). Also, the application which tries to load fbclient.dll - is it 32bit? That is my "favourite" mistake, mismatch between 32 and 64 bits.- 7 replies
-
- mars-curiosity
- firebird
-
(and 1 more)
Tagged with:
-
FirebirdSQL client library parameter in INI
Vandrovnik replied to ertank's topic in MARS-Curiosity REST Library
fbclient.dll usually depends on other dlls (like msvcp100.dll, msvcr100.dll in FB 3.0), are they present?- 7 replies
-
- mars-curiosity
- firebird
-
(and 1 more)
Tagged with:
-
Splitting existing components to run- and design time packages
Vandrovnik replied to aehimself's topic in General Help
From 18 GB RAM, 0,5 GB is dedicated to RAM disk, so this is negligible... I prefer to write .dcus there, so that it does not write again and again to SSD, it is faster and .dcus are always fresh. -
Splitting existing components to run- and design time packages
Vandrovnik replied to aehimself's topic in General Help
I use ramdisk for .dcu. Really fast and it is clear after reboot, so I do not have problems with outdated .dcus found somewhere. -
There are also directives for these warnings: {$WARN UNIT_PLATFORM OFF} {$WARN SYMBOL_PLATFORM OFF}
-
You can create a method (of that record) for reading data from a stream, for example. In that method, you use Stream.Read(flags, sizeof(flags))... To read the string, you probably have to read byte by byte and check, whether it is zero. Do not forget that size of the char is 2 bytes (in Unicode Delphi).