

eivindbakkestuen
Members-
Content Count
122 -
Joined
-
Last visited
-
Days Won
7
eivindbakkestuen last won the day on March 22
eivindbakkestuen had the most liked content!
Community Reputation
58 ExcellentRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Delphi 13 FMX applications not responding to mouse clicks on Win10 multimonitor
eivindbakkestuen replied to Lachlan Gemmell's topic in FMX
Cool indeed! -
The first rule of asking "what does this mean" is ... drumroll... quote the *actual message*
-
Delphi 13 FMX applications not responding to mouse clicks on Win10 multimonitor
eivindbakkestuen replied to Lachlan Gemmell's topic in FMX
Now, there's a prime candidate for "a picture, or it never happened"!!! LOL -
Int64 and other ints conflict
eivindbakkestuen replied to direktor05's topic in Algorithms, Data Structures and Class Design
Why don't you show us the fix? 🙂 -
I'm on the Dark Side... no, really!
eivindbakkestuen replied to eivindbakkestuen's topic in GExperts
To get back on topic, I bit the bullet and "darkened" the grep results pane. @Achim Kalwa did you have any luck with the larger task you were working on? -
Late to the party, but NexusDB would be a good alternative for a pure Delphi database.
-
However, due to beta secrecy, don't expect any "fixed" notifications until the issue is fixed *and* a public release containing it exists.
-
xaml island Ask if Embarcadero will integrate UWP & WinUI in comming Version of Radstudio
eivindbakkestuen replied to bravesofts's topic in Windows API
The above posts make a perfect case for why Ctrl+B should be used sparingly. -
NexusDB components are now available in the new 64 bit IDE 👍 v4.7514 adds - 64 bit Designtime Support - Replication (Beta) Find the best Delphi Database at NexusDB
-
function declarations without ; at the end
eivindbakkestuen replied to Günther Schoch's topic in RTL and Delphi Object Pascal
Best guess, with a bug report, Emb will fix the pascal unit, but not change the compiler. But it needs to be logged first, no need to ask anybody 🙂 -
function declarations without ; at the end
eivindbakkestuen replied to Günther Schoch's topic in RTL and Delphi Object Pascal
Good question 🙂 There exists no official language definition, the closest you get if you ask is "whatever the compiler accepts". However, examples in "function" declaration documentation all end with ";" so the above missing semicolons would be a compiler anomaly. Report it, and Emb can at least fix the missing characters. 🙂 -
Google OAuth2, "username and password not accepted" when sending
eivindbakkestuen replied to emileverh's topic in Network, Cloud and Web
We can't see your screen, or your code... -
Probably the printer was offline or unreachable before; and then it was reachable. This happens every day here when trying to print from many, even well known applications; they take forever to time out if the default printer wasn't turned on. You could try using a worker thread for printing, then your application doesn't freeze and you have some control over what happens
-
It is a documentation omission, the help on the link states "You can only rely on the final value of a for loop control variable if the loop is left with a goto or exit statement. " In https://docwiki.embarcadero.com/RADStudio/Athens/en/Declarations_and_Statements_(Delphi)#For_Statements it says "After the for statement terminates (provided this was not forced by a Break or an Exit procedure), the value of counter is undefined. " The value should be defined, as the loop here exits with a Break,
-
Use a separate "master" thread to call WaitForAll. Are you already using TThread.Synchronize for the memo updates?