Jump to content

limelect

Members
  • Content Count

    835
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by limelect

  1. limelect

    debug message

    @Remy Lebeau @Anders Melander as i said on my D10.2.3 IDE nothing works as for drop As for my basic demo, I did exactly the suggestion no !!!! breakpoint in ide how ever message works with exe as for the analyzer I cannot drop either in ide or exe I doubt that I can be helped. it has something to do with my d10.2.3 and my Windows 7 system I guess. One more option is that a component I install does the problem But since I have large amount it is impossible to find which. OR an expert? Thanks
  2. limelect

    debug message

    @Anders MelanderI am I to drop a file onto the main pan? In my ide it does not work. it has an impossible sign.
  3. limelect

    debug message

    @PeterBelow can you plz give me a few lines of code thanks p.s do not forget official drag and drop do not work either in the ide
  4. limelect

    SSL connection

    I cannot communicate with my SSL site I cannot communicate to any HTTPS:// What am I doing wrong? function GetUpDate(Link: string): string; var S: string; IdHTTP: TIdHTTP; SSL: TIdSSLIOHandlerSocketOpenSSL; begin IdHTTP := TIdHTTP.Create(form1); try SSL := TIdSSLIOHandlerSocketOpenSSL.Create(IdHTTP); with SSL.SSLOptions do begin Method := sslvTLSv1_1; <<<< I tried them all Mode := sslmBoth; SSLVersions := [sslvSSLv2, sslvSSLv23, sslvSSLv3, sslvTLSv1, sslvTLSv1_1, sslvTLSv1_2]; end; IdHTTP.IO.Handler := SSL; // S := IdHTTP.Get(Link); S := IdHTTP.Get('https://limelect.com/UpDate/document-projects.txt'); result := S; except result := ''; ShowMessage('Could not get VERSION information from the INTERNET'); end; IdHTTP.Free; SSL.Free; end; I do not want to use any DLL plz.
  5. limelect

    SSL connection

    Thanks, everybody I incorporated Indy.SChannel into my software and it works great And why not dll because what for if there is an option without them? I like to make my software without dll as much as possible.
  6. limelect

    SSL connection

    Thanks a lot this did it Great NO DLL
  7. limelect

    SSL connection

    Tried that too allready Tried all out of frustration
  8. limelect

    SSL connection

    Thanks, I will try it immediately
  9. limelect

    SSL connection

    I know there is a way without DLL. Am I wrong? Any suggestion?
  10. limelect

    SSL connection

    D10.2.3 Indy 10 AND NO DLL
  11. limelect

    Is there a way to create a photo capture toobar?

    Just an idea. If this is a Chrome page use https://www.printfriendly.com/ to convert all HTML pages to PDF. I have an addon for Chrome which I use all the time
  12. limelect

    D4P_export_demo

    I wonder if someone can help. I made this Python to EXE with Delphi https://limelect.com/downloads/python-2-execute/ It works BUT when I use it on Delphi Py the first line does not find it. from delphifmx import * from parent_window import Parent_Form def main(): Running this script on GUIPY with no problem The line I am using is pyinstaller.exe --windowed D4P_export_demo.py --onefile --paths=C:\Users\LimElect\anaconda3\Lib\site-packages\delphifmx --name D4P_export_demo I have tried all combinations and could not find something. -paths=C:\Users\LimElect\anaconda3\Lib\site-packages\delphifmx is the path to the library. But GUIPY finds it with no problem P.S. I have asked this question on the Python platform with no answer. StackOverflow rejected my question I do not understand why so you are left. One more thing pip list shows the package
  13. limelect

    D4P_export_demo

    It is fixed here https://github.com/Embarcadero/DelphiFMX4Python/issues/94
  14. limelect

    D4P_export_demo

    OK guys I got this suggestion in HEBREW "https://www.facebook.com/groups/306586986847428/" pip install auto-py-to-exe==2.42.0 which I did and got the same problem So I guess I am left with Embarcadero helllllllllp
  15. limelect

    D4P_export_demo

    Sorry guys to bother .I came to a conclusion that it is Embarcadero's problem or mine. as it is in __init__.py if 'DelphiVCL' in fname: return os.path.join(sdir, os.path.basename(fname)) raise ValueError("DelphiVCL module not found. Try to reinstall the delphivcl package.") why ? i do not know. so I hop one of thos Delphi guys will see this All the package portions are there and in GUIPY it finds it but not as an execution. I single step to see this. Thanks
  16. limelect

    D4P_export_demo

    I tried a VCL project same problem
  17. limelect

    webcam settings

    I just want to open webcam setting with Delphi window 7 just code plz
  18. limelect

    webcam settings

    Ok I did it for how see the last section of the page https://en.delphipraxis.net/topic/10649-dspack/?tab=comments#comment-84694
  19. limelect

    dspack

    D10.2.3 Does anyone have a link/source to DPACK component that compiles and used perfect on my Delphi All the links I have have problems
  20. limelect

    dspack

    Ok I did it This is why I needed it for that https://en.delphipraxis.net/topic/10628-webcam-settings/ I am using ShowFilterPropertyPage(Form1.Handle, Filter as IBaseFilter, ppDefault); where the filter gets in the base filter the video
  21. limelect

    dspack

    Merci Thanks old BPL mix Why I did not find that component link I wonder
  22. limelect

    dspack

    All compile well my last installation problem Dspack_2010 and DXE2
  23. limelect

    dspack

    @FPiettea Now i have compilation version problems I have to clean up things GDIPAPI was compiled with a different version of DirectDraw.IDirectDrawSurface7 I am trying to find my DirectDraw.dcu that does the problem
  24. limelect

    dspack

    @FPiette i Missed it but it also gives me an error Hr := MPC.GetOverlaySurfaceColorControls(Tmp); [dcc32 Error] DSPack.pas(3967): E2033 Types of actual and formal var parameters must be identical tmp is supposed to be TDDColorControl which is Tmp : TDDColorControl; I fixed 1 now I have another hr := FMediaEventEx.GetEvent(Event, Param1, Param2, 0); Now I have a different problem of compile ver
  25. limelect

    2 new programs

    The programs are made with Delphi. But are for Python https://limelect.com/downloads/compile-ui-to-py-files/ https://limelect.com/downloads/python-2-execute/ Have fun
×