Questions tagged [jedi]

The JEDI (Joint Endeavour of Delphi Innovators) project is a large open-source library of Windows API translations, visual and non-visual components, and other useful classes and libraries.

163 questions
3
votes
2 answers

JEDI controls always recompile

I've just noticed that whenever I do an incremental compile (ctrl-F9) of any of my Delphi 2010 projects, all JEDI units referenced in my project are recompiling although they have not been changed in any way. In fact, if I create a new project,…
Larry Lustig
  • 46,058
  • 13
  • 95
  • 143
3
votes
2 answers

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 seem to miss something. A basic example would be…
delphist
  • 275
  • 5
  • 8
3
votes
3 answers

Emacs & Anaconda. Linking problems

I have a problem where: In order to run Anaconda, I need to unset LD_LIBRARY_PATH In order to run Emacs (as well as other programs), I need to set LD_LIBRARY_PATH If I try to run Emacs while unsetting LD_LIBRARY_PATH I run into linking problems,…
Josh
  • 9,149
  • 16
  • 48
  • 81
3
votes
1 answer

How to make the auto-complete information more compact in emacs-jedi?

I have been learning python about a month and I used emacs24.3 with jedi to write python code. The jedi works very well, I like it very much. However, I would like to make the auto-complete menu more compact: We can see that the auto-complete…
Eastsun
  • 17,358
  • 4
  • 50
  • 76
3
votes
1 answer

Delphi - .bpl plugins for application - problem while loading > 1 plugin

I'm using TJvPluginManager to build simple application with ability to load .bpl plugins. I have common interfaces declaration in "uIntfs.pas" file, which is kind of SDK ;) The problem is, that if I try to load more than one plugin, the app throws…
michal
3
votes
0 answers

How to install JCL html2 help in Delphi XE2?

I tried to use the JCL installer to install the html2 help from the latest-and-greatest JCL, picking the option to integrate it with the DXE2 help, and it broke the DXE2 help: i.e. when I started the help viewer in the IDE, it told me that there was…
wades
  • 897
  • 9
  • 23
2
votes
1 answer

How to integrate Jedi's help files with Delphi's IDE?

There are a lot of help files at SourceForge for Jedi but none in the HxS format. Is there a way to integrate it into Delphi's help system? I'm using Delphi 2010.
ivarec
  • 2,414
  • 2
  • 28
  • 50
2
votes
2 answers

autocompletion for own gobject derived library in python using jedi-vim using gobject introspection

I'm trying to create a shared C library that uses the gobject library as foundation. So my object inherits in GObject speak from GObject. GObject allows bindings to all different scripting languages such as Python via GObject introspection. Then…
hetepeperfan
  • 3,787
  • 1
  • 23
  • 42
2
votes
2 answers

compiling delphi-pi

After Downloading the source, tried to compile the code. The first bump was missing Jedi components, so downloaded jcl-2.2.1.3817-partnerdvd Next step was installing , which was fine. Now After Compiling , the error message is : [DCC Fatal Error]…
none
  • 4,256
  • 13
  • 54
  • 96
2
votes
1 answer

TJvCsvDataSet and filter

I have a problem when it comes to filter a .csv file uploaded in TJvCsvDataSet. The following is a MCVE to explain program Project3; {$APPTYPE CONSOLE} {$R *.res} uses System.SysUtils, JvCsvData, data.DB; var FJvCsvDataSet:…
pio pio
  • 512
  • 4
  • 22
2
votes
1 answer

TJclStringList crashes on Free

Create a simple VCL application: interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs; type TForm1 = class(TForm) procedure…
user1580348
  • 4,654
  • 2
  • 27
  • 73
2
votes
1 answer

Target IDE disabled when installing JCL/JVCL with Delphi 10.2.3

I am going through the process of installing JCL/JVCL on my machine for Delphi (10.2.3). I got the latest Jedi libraries from GitHub. I installed JCL first. When it asked if I wanted to "install the selected features" and "Do you want to keep JCL…
Ronnie W
  • 103
  • 1
  • 11
2
votes
1 answer

Delphi : How to call the .Net 4.0 version of StrongNameSignatureVerificationEx

I am trying to call StrongNameSignatureVerificationEx on IClrStrongName from Delphi (using Rad Studio Berlin) My first attempt just used the definition function StrongNameSignatureVerificationEx( wszFilePath : LPCWSTR; fForceVerification :…
AlanT
  • 3,249
  • 16
  • 27
2
votes
1 answer

How can I delete (with a trick) projects in JEDI VCS?

I have to split a JEDI VCS server. I have 4 Delphi projects on it, and I have to give 2 projects to a company and 2 to the other company. The idea is to restore 2 JEDI VCS backups (2 database backups), and remove the projects of the other customer.…
LaBracca
  • 13,941
  • 34
  • 129
  • 224
2
votes
1 answer

JvCsvDataset Error

Using Delphi XE, I have a JvCsvDataset component that is loading a CSV file which has 27 fields. When the component tries to load the file I get the following error : Too many fields, or too many long string fields in this record. You must increase…
ChuckO
  • 2,435
  • 6
  • 33
  • 41
1 2
3
10 11