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.
Questions tagged [jedi]
177 questions
0
votes
0 answers
Soyder (Anaconda3) "Missing dependencies"
When I start the I gette a pop up about missing dependencies which can be seen in the picture below . How can I fix this problem?
Thanks in advance!
Have not tried anything yet
0
votes
0 answers
LSP server doesn't suggest in-module entitieis
I've installed neovim with some lsp-servers and setup them. But when I try to get in-module objects, completion suggest almost nothing (module has a lot of functions, but completion doesn't show it).
I have tried a lot of LSP servers (pylance,…

Shinji Matsumoto
- 1
- 3
0
votes
0 answers
Exception has occurred: AttributeError module 'speech_recognition' has no attribute 'Microphhone'
import speech_recognition as sr
import datetime
engine = pyttsx3.init('sapi5')
voices = engine.getProperty('voices')
#print(voices[1].id)
engine.setProperty('voice', voices[1].id)
def speak(audio):
engine.say(audio)
engine.runAndWait()
def…

KONKPIT
- 19
- 2
0
votes
0 answers
Exception has occurred: PlaysoundException Error 275 for command: open "welcome.mp3" alias playsound_0.0076682983304099395
I AM FACING THE PROBLEM IN THIS PROJECT. THIS PROJECT WAS PROGRAMMED BY MY FRIEND BUT I NEED IT SO, HE GAVE ME BY SAVING THE FILE AND HE SEND THAT FILE FROM MAIL.
IT WAS RUNNING IN HIS PC WITHOUT ANY ERRORS BUT WHEN RUN THE PROGRAM IT DOSE'NT WORK…

KONKPIT
- 19
- 2
0
votes
1 answer
How call static method from .NET DLL from Delphi using jedi/jcl
i do not want create a tlb, update the references, etc, so i am load .net dll in runtime, i can call and use class and methods non static like that:
procedure TForm1.Button1Click(Sender: TObject);
var
Host: TJclClrHost;
Obj:…

Marcos
- 57
- 6
0
votes
1 answer
Error after with compiling an existing program using JVCL HID device
I have just installed JEDI Library and VCL on Delphi 10.4.2. When attempting to compile an existing working program which uses Jedi HIDCtrl I get the error...
[dcc32 Fatal Error] Hid.pas(896): F2051 Unit JvHidControllerClass was compiled with a…

John Barrat
- 810
- 4
- 15
0
votes
1 answer
Why do TJvHidDeviceController throw "Device cannot be identified" when I drag the component on the form?
I have the community edition 10.3 of Delphi on Windows 10 and trying to use the JEDI (JVCL v3.50) TJvHidDeviceControllerClass (v 1.0.35) to control my HID device in a VCL form application.
This exception also gets thrown when I start up Delphi and…

Captain-sq
- 1
- 3
0
votes
1 answer
How can flycheck give warning if the object's function does not exist?
I am using lsp for Python. I was wondering for an object's function, if there is no definition for it, can lsp give an error/warning or underline using flycheck or jedi? I know this is challenging I just wonder that's possible or not.
example…

alper
- 2,919
- 9
- 53
- 102
0
votes
0 answers
jedi:goto-definition overjumping the import section
I am using jedi:goto-definition to jump to function definitions.
If the function has a definiton under import it first jumps into that and I have to do second jump to the module again. Can it directly jump to the module by over passing the import…

alper
- 2,919
- 9
- 53
- 102
0
votes
1 answer
Is there a way to get ipython autocompletion when piping a pandas dataframe to a function?
For example, if I have a pipe function:
def process_data(weighting, period, threshold):
# do stuff
Can I get autocompletion on the process data arguments?
There are a lot of arguments to remember and I would like to make sure they get passed in…

Maxim
- 725
- 1
- 8
- 24
0
votes
0 answers
JEDI JVScheduleEvents Usage
Can anyone help me with JEDI JCL jvscheduleevent object?
I have an event that I want to change the date and time when it starts / fire.
The change I want to do according to some user settings, when starting the application.
The event is a mountly…

Emanuel Antics
- 3
- 3
0
votes
1 answer
Indy 10 TIdUDPclient - detect wrong/no Answer
Using delphi 10.3 and JEDI VCL.
I have a communication with a device, which responds to UDP data.
Now I want to be able to check if I got an answer from the right device, or if if I even got any answer.
Currently I am using the following:
function…

Eggi
- 170
- 1
- 15
0
votes
2 answers
RAD Studio 10.2.3 Jedi JVCL Install Problem
I've uninstalled my RAD Studio 10.2.2 and installed 10.2.3 in my Win10 development VM. Along the way I uninstalled all the previous 3rd-party libs, including the Jedi GetIt packages, and per the instructions got rid of all the old Jedi source and…

SteveS
- 335
- 1
- 13
0
votes
1 answer
Trying to create a ShellLink Shortcut with JclShell in a console app fails
I try to create a ShellLink Shortcut with JclShell in a simple console app in Delphi Rio 10.3.3:
program ShellLinkShortcutHashTest;
{$APPTYPE CONSOLE}
{$R *.res}
uses
JclShell,
System.SysUtils;
const
ShortcutFile = 'R:\myshortcut.lnk';
…

user1580348
- 5,721
- 4
- 43
- 105
0
votes
1 answer
python jedi auto-complete print() problem
I just installed jedi auto-completion from sublimetext 3 in python because I wanted to make code write easier.
after everythings done.. when i write string. and all the statements and class names pops up. great
but problem comes here:
after i type…

Adarsh Todi
- 1
- 1