So, now I tried everything and I must say I'm very disappointed.
We have changed to new version of UniDac and our programs are not working.
I'm staying in Vietnam and think about to shout out the component and change to a working one.
What the hell is the system doing on my c:\windows\temp ?
I have a client/server SQL Database. I don't want to let a component working on my c:\windows\temp.
Now it's the 9' of March and we are not able to pay our workers!!!
Is it not possible to help us?
The problem is the same in XP and Vista, I have disabled all Antivirus and everything to get the salary working. I'm now programming over 25 years and I never had a trouble like this...
Is it possible to buy the sourcecode, to find myself a solution ????
I call after every
execute and
open this procedure with 10 or 20...
Code: Select all
procedure Delay(Milliseconds: Integer);
var
Tick: DWord;
Event: THandle;
begin
Event := CreateEvent(nil, False, False, nil);
try
Tick := GetTickCount + DWord(Milliseconds);
while (Milliseconds > 0) and
(MsgWaitForMultipleObjects(1, Event, False, Milliseconds, QS_ALLINPUT) WAIT_TIMEOUT) do
begin
Application.ProcessMessages;
if Application.Terminated then Exit;
Milliseconds := Tick - GetTickcount;
end;
finally
CloseHandle(Event);
end;
end;
Thanks
Uwe Beyer, Rieker Shoe AG