Answer the question
In order to leave comments, you need to log in
Problems when running a compiled application in Delphi (does not run in 0.1% of cases), where can I see the logs?
Wrote in Delphi ХЕ2. A certain amount of software has been written, it stands on several computers with different OS, and you have XP and 7 and Windows Server 2003; 32 and 64 bit. Everything is fine. But once one of the managers needed to install my software on a computer, before that he had not used my software. And it started... In short, none of my programs run on his computer. Even test, the most simple.
About the program:
unit Unit2;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TForm2 = class(TForm)
txt1: TStaticText;
btn1: TButton;
mmo1: TMemo;
procedure btn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form2: TForm2;
implementation
{$R *.dfm}
procedure TForm2.btn1Click(Sender: TObject);
var s:TStringList;i:Integer;
begin
s:=TStringList.Create;
for i := 0 to 9 do begin
s.Append('test-' + IntToStr(i + 100000) + ' ');
end;
mmo1.Clear;
mmo1.Lines.Assign (s);
s.Free;
end;
end.
Answer the question
In order to leave comments, you need to log in
Here periodically there are questions like Preventing the launch of .exe in Windows 10? . On that computer, didn’t the admins tell something that only allowed programs are launched?
But the symptoms are still strange, what are these three unkillable processes? Does the same test program run successfully on other computers in the usual way?
Logs here: Computer Management - Event Viewer - Windows Logs
It seems to me that most likely some kind of dll libraries are missing.
Try running Dependency walker. www.dependencywalker.com
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question