Jump to content

limelect

Members
  • Content Count

    924
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by limelect

  1. limelect

    LOCKED FILE

    OK guys thanks I did succeed BUT with some tricks Now how can I find the handle of a file,(locked file), not a process All CREATE do not help some give me errors others -1 I do not want to go through all the process or handles it take time
  2. limelect

    LOCKED FILE

    Does anyone know the mechanism behind the lock of a file? What happens between the process and the file? I do not know. Any theory? I could not find
  3. limelect

    LOCKED FILE

    I have it I need software not applications as I know them all I need something very specific about the link (locked file ) between the process and the file
  4. limelect

    LOCKED FILE

    P.S To us professionals clear the lock condition is important as we know what we are doing 50 years in the business !!!!!!!!!!!!!!!! actually lost count
  5. limelect

    LOCKED FILE

    FD and SQLite But this is not important as it is one example of many. I have to close programs often as they lock files needed to change I use the above program to do that so I can keep working on a program locking a file The above program Unlocker by Cedrick Collomb is excellent but is not that friendly so I wanted to do my own P.S/ some time the lock condition stay even if you close the application associated wit the file
  6. limelect

    LOCKED FILE

    @FPiette P.S. How many times you had to close the IDE to release the LOCKED database? I had to do this many times while in development. This is a small example.
  7. limelect

    LOCKED FILE

    @FPiette It is all known but still for the answer? any idea? I cannot find the handle of a file, not a process then maybe I will be able to fix my source
  8. limelect

    debug message

    D10.2.3 window 7 I have had this problem for many years I wonder if there is a solution The program does not break on message in the IDE However, running the execution it works. P.S I see the + sign on the form when dragging a file wile in the IDE Drag and Drop do not work either I saw David Heffernan solution, but it did not help. https://stackoverflow.com/questions/14244325/drag-and-drop-files-to-delphi-form-not-working Any help? . unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.ExtCtrls, ProCtrls, Vcl.StdCtrls; type TForm1 = class(TForm) procedure FormDestroy(Sender: TObject); procedure FormCreate(Sender: TObject); private { Private declarations } procedure WMDropFiles(var Msg: TWMDropFiles); message WM_DROPFILES; public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} uses ShellAPI; procedure TForm1.WMDropFiles(var Msg: TWMDropFiles); begin inherited; MessageDlg('dssdfsd', mtWarning, [mbOK], 0);<<<<<<<<<<<< does not break end; procedure TForm1.FormDestroy(Sender: TObject); begin DragAcceptFiles(Self.Handle, False); inherited; end; procedure TForm1.FormCreate(Sender: TObject); begin inherited; DragAcceptFiles(Self.Handle, True); end; end.
  9. limelect

    debug message

    I just found that drag-drop within a Delphi project will in the IDE works
  10. limelect

    debug message

    Thanks I know I have a huge problem here
  11. limelect

    debug message

    No they all work with this Windows 7. With no problems All I say is that Drag and Drop does not work under above conditions in the IDE. Neither the message problem work on D7 which mean that there is a System problem interacted with Delphi IDE
  12. limelect

    debug message

    I do not know if this help The problem of drag and drop (I did not check for messages) Persist with D7 too. Drage and Drop does not work on D7 either. Only outside of Delphi. So it is Windows 7 ported to ANY Delphi. Any idea how to check this? \
  13. limelect

    debug message

    I disabled D&d it did not help I know my problem is someplace in the IDE
  14. limelect

    debug message

    P.S i tried my test shown above in release It did not help
  15. limelect

    debug message

    Could you plz elaborate I do not recognize this May be send me link so I know what it si
  16. 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
  17. 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.
  18. 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
  19. 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.
  20. 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.
  21. limelect

    SSL connection

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

    SSL connection

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

    SSL connection

    Thanks, I will try it immediately
  24. limelect

    SSL connection

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

    SSL connection

    D10.2.3 Indy 10 AND NO DLL
×