The JEDI Code Library (JCL) is a set of utility functions and non-visual classes for re-use in Delphi and C++ Builder projects. See JEDI Code Library on SourceForge.
10
votes
1answer
397 views
JEDI JCL Compression library wont open spanned archive files
Summary:
I am having trouble to get the JCL compression library to open any spanned archives.
It presents the error "(0000001) Incorrect Function" as defined in borlands 'windows.pas';
scenerios:
A ...
6
votes
6answers
1k views
Need a way to periodically log the call stack/stack trace for EVERY method/procedure/function called
I'm working on a very large application where periodically I'd like to log the ENTIRE call stack up until the current execution point (not on an exception). The idea here is that I want a map of the ...
5
votes
1answer
542 views
Can Delphi JCL 7zCompression used to compress/decompress in-memory stream without file operations?
I had used TJcl7zCompressArchive / TJcl7zDecompressArchive to do Archive operation before.
Now I would like to compress / decompress in-memory streams directly without file operation. However, when ...
4
votes
1answer
169 views
Why use JCL UNITVERSIONING?
The JCL library have an conditional define UNITVERSIONING. I don't know why this option exists and don't know how to use this. I know that there are a unit called JclUnitVersioning.pas, but can't find ...
3
votes
1answer
330 views
How can I log the callstack with JCL without using raise exception
Background
We have a problem that sometimes the grid in Devexpress raise exception
"Raised EConvertError: Cannot assign a nil to a TFont".
But to trace the real cause of this we have changed Font ...
3
votes
1answer
305 views
delphi - watching for files changes in directories - implemented in JCL?
I need to notify my application in some way whenever any file in the given directory has been changed (its content has been modified) ... is there any JCL/JVCL routine for that?
Thanks in advance ...
...
3
votes
2answers
310 views
need help with interesting call to JCL's TEvaluator
i'm using JCL's expression evaluator TEvaluator (a marvelous creation donated by barry kelly). (THANK YOU barry!)
background
i've used the AddFunc method.
function MyFunc:double;
begin
// ...
3
votes
2answers
652 views
How to use JEDI TJCLHashMap classes?
I'm trying to use TJCLHashMap family of classes, but apparently this class has no useful public methods. All methods are "protected". How to use this class? Although JCL comes with some samples, I ...
2
votes
1answer
180 views
Returning complex types (Classes, Arrays of Classes) using JCL and CLR
I first referenced this question to get started, but reached a roadblock when trying to return a Class or Array of a Class using a .NET Assembly in Delphi XE.
Consider the following:
//C#
...
2
votes
2answers
150 views
Are there localized resource strings available for the JCL (JEDI Code Library)?
Is there a translation/localization sub-project for the JEDI Code Library?
I'm especially looking for German, French and Italian versions of JclResources.pas and JclVclResources.pas (and might be ...
1
vote
1answer
128 views
TJclCompressArchive (project Jedi). How to select a compression format?
Using Delphi XE on Win7 x64, have Jedi Class Library ver. 3.45, and 7z.dll ver. 9.20,
Uses .., jclcompression;
procedure TForm1.Button1Click(Sender: TObject);
const
an = 'C:\1.7z';
fn = ...
1
vote
1answer
175 views
Compress a file with JclCompression
I am trying to save (compress) a .zip file using JclCompression with the JCL Demo. When I press the Save button on the Read and Write Tab the demo calls:
procedure TFormMain.ActionSaveExecute(Sender: ...
1
vote
3answers
366 views
Access JCL Debug information contained in executable?
Is there a way to access the Jedi Debug Information (JDBG) contained in an executable?
Microsoft debugging tools have pointed me to a stack chain in my binary, and i want to know what ...
1
vote
1answer
289 views
C++ Builder XE and JEDI JCL
Has anybody successfully compiled the JCL for C++ Builder XE? I have tried on XP and Win7 with no luck. I have filed a bug but this is a show stopper for me right now, so though I would ask here. I ...
0
votes
0answers
60 views
JCL: What to use instead of UnicodeIsWord?
Sometime between revision 3256 and 3594, UnicodeIsWord() was removed from JCL's jclUnicode.pas. Is there a substitute method or alternate approach we should be using instead?
0
votes
1answer
143 views
Using DwmIsCompositionEnabled (JwaDwmApi) on pre-vista causes error
Been trying to use the following code in order to check if Windows Aero is enabled:
function AeroEnabled: boolean;
var
enabled: bool;
begin
// Function from the JwaDwmapi unit (JEDI Windows Api ...
0
votes
1answer
216 views
No Stack Trace using JCL in Delphi XE
We have a project which we converted from Delphi 2007 to Delphi XE. In the 2007 version we used the JCL's debugging features to have a stack trace when an Exception appears. In fact we used the JCL's ...
0
votes
2answers
203 views
Prevent a unit to be automatically added to the Uses clause?
I am using TJvTransparentForm (from Project JEDI) on one of my forms. I am also using AlphaControls for my entire project. The problem is, TJvTransparentForm does not work well with the unit "acPNG" ...
0
votes
2answers
277 views
JclLastExceptStackListToStrings produces an empty string list
I've installed JCL into Delphi 2010. In the following code
try
raise Exception.Create('Error Message');
except
on E: Exception do
begin
ResultStatus := JclLastExceptStackListToStrings(sl, ...
0
votes
1answer
158 views
JEDI Code Library line number for exception
I have a codegear C++ builder project and added the JCL library to get a stackdump when an exception occurs. I get the stackdump, but the most important thing is missing, the line number where the ...