

Lajos Juhász
Members-
Content Count
1078 -
Joined
-
Last visited
-
Days Won
15
Everything posted by Lajos Juhász
-
Data source name not found and no default driver specified.
Lajos Juhász replied to bazzer747's topic in Databases
The text on the image that you've attached is not readable. As far as I can see you're using ODBC connection that is not configured on that PC. Be aware that windows have a 32 bit and 64 bit version of the ODBC Data Source Administrator and you have to create the data source in the one that matches your application. A 32 bit application cannot connect to 64 bit data source. -
Turn on smart tab.
-
Keep func/proc declaration in sync with implementation
Lajos Juhász replied to Diego Simonini's topic in Delphi IDE and APIs
You should write which version of the Delphi you're using. For methods you can use Sync prototypes with the shortcut Shift+Ctrl+Alt+P. https://docwiki.embarcadero.com/RADStudio/Sydney/en/Code_Editor#:~:text=The Sync Prototypes feature is,name or the function modifiers. -
Football Championship Group Stage Order
Lajos Juhász replied to PawelPepe's topic in Algorithms, Data Structures and Class Design
First you should share your data structure then we can start to discuss how to implement those rules. -
Now I get the same error while trying to debug Synedit 2. Just change something in source for SynEditDR.dproj to trigger compile as Break point stopped working and got an internal error.
-
Unfortunately that doesn't help for a VCL bpl. I have another common internal error: [dcc32 Fatal Error] core.dpk(358): F2084 Internal Error: AV11A8360D(11A60000)-R00FC101E-0 For this it was enough to add a period after the unit name: unit csv.; Try Compile the package (compilation failed as it should be), remove the period and when I tried to compile it I got this error. Of course I cannot reproduce this with a "hello world package".
-
A basic debugging or search in source code would be enough to find an answer. The application was unable to load the skia library - sk4d.dll.
-
Fast File search like Everything and Glary's Quick search
Lajos Juhász replied to Arksma1990's topic in Algorithms, Data Structures and Class Design
You can use https://docs.microsoft.com/en-us/windows/win32/fileio/obtaining-directory-change-notifications. -
Unlike fmx Skia is developed by Google. They have more resources and ..... (I cannot write here that unlike Embarcadero most probably they will keep it stable).
-
No. With two opened documents task manager show a single PID.
-
Google thinks you should use the Position property. https://docwiki.embarcadero.com/Libraries/Sydney/en/Vcl.MPlayer.TMediaPlayer.Position
-
Parnassus Bookmarks for Delphi 11 Alexandria?
Lajos Juhász replied to PeterPanettone's topic in Delphi IDE and APIs
There is no lack of communication in this case. Every time someone asks this question in a Q&A session they give some answer. -
Detect if WebView2 Runtime is installed
Lajos Juhász replied to softtouch's topic in Network, Cloud and Web
You can inspect the registry as documented here: https://docs.microsoft.com/en-us/microsoft-edge/webview2/concepts/distribution#detect-if-a-suitable-webview2-runtime-is-already-installed -
Parnassus Bookmarks for Delphi 11 Alexandria?
Lajos Juhász replied to PeterPanettone's topic in Delphi IDE and APIs
The newest idea is that the delay has nothing to do with HighDPI but some code integration change. I have no idea why would that delay the release as they still plan to provide it through GetIt. -
How to increase the Delphi Editor line spacing
Lajos Juhász replied to wuwuxin's topic in Delphi IDE and APIs
File a QP report. -
Looking for photography enthusiasts for continuing a camera calibrator project (CoCa)
Lajos Juhász replied to hurodal's topic in I made this
Source code management Source code management (SCM) is used to track modifications to a source code repository. SCM tracks a running history of changes to a code base and helps resolve conflicts when merging updates from multiple contributors. -
Most probably something wrong with JasotComponents.res or JasotComponentsResource.rc. Unfortunately we have no access to those files to inspect.
-
Class not instantiated ... but method executed
Lajos Juhász replied to DelphiUdIT's topic in Algorithms, Data Structures and Class Design
Languages that use manual memory management requires from the developers to take care about pointers. You have manually to initialize and also to free them. A bit more interesting result is with local variable: program Project1; {$APPTYPE CONSOLE} {$R *.res} uses System.SysUtils; type TDoSomething = class Danger: string; constructor create; function Ghost: boolean; end; var DoSomething2: TDoSomething; procedure MainProc; var DoSomething: TDoSomething; begin WriteLn('DoSomething = ',NativeInt(DoSomething)); if Assigned(DoSomething) then WriteLn('DoSomething is not nil'); WriteLn('DoSomething2 = ',NativeInt(DoSomething2)); DoSomething.Ghost; end; { TDoSomething } constructor TDoSomething.create; begin //FROM HERE I NEVER GO THERE .... AND IF I GO THERE BY WRONG, CLOSE THE PROGRAM !!! writeLn('TDoSomething.create'); end; function TDoSomething.Ghost: boolean; begin try result := true; WriteLn('Here I am, I am a ghost'); except result := false; end; end; begin try { TODO -oUser -cConsole Main : Insert code here } MainProc; ReadLn; except on E: Exception do Writeln(E.ClassName, ': ', E.Message); end; end. DoSomething = 4318856 DoSomething is not nil DoSomething2 = 0 Here I am, I am a ghost -
If you have a source code for QR 6 you can build it with Delphi 11.1. Unfortunately it doesn't support High-DPI.
-
Several F2084 Internal Error on Delphi 10.4.2
Lajos Juhász replied to Davide Angeli's topic in Delphi IDE and APIs
Now with D11.1 I get: [dcc32 Fatal Error] SVGIconImageList.dpk(65): F2084 Internal Error: D33566 -
EULA declined installing 11.1 with Network Named license
Lajos Juhász replied to Lachlan Gemmell's topic in General Help
It's not required for D11 (at least for me it was smart enough to set gitit to the online mode after installing from the ISO). -
DScintilla is a VCL wrapper (maybe there is also an fmx one?)
-
Most probably the IDE is still using the old packages. Try to locate them and replace with the new one.
-
Several F2084 Internal Error on Delphi 10.4.2
Lajos Juhász replied to Davide Angeli's topic in Delphi IDE and APIs
The only way to find out is to open a QC with this screen shot.