Sounds kinda like Windows 98 is the problem with reliable writing. As long
as I dont do too much, the disks are OK.
> NT 4.0 Service pack 5
Maybe it will have to be NT for Christmas here.

BTW anyone got any advice re the parameter passing I asked b4? I have a
message handler (below) and if a file is clicked the message handler doesnt
give a toss cause its for internal messages eh. Paramstr works fine on the
first instance of initialize the program, but after that, no dice. So if
TPlayerForm is already running, windows handles the parameter passing a
different way or what?
All I can find on the subject under messages is this:Kernel.360 OpenFileEx
Al+

procedure TPlayerForm.wmHandleMessages(var Msg: TMsg; var Handled: Boolean);
var
  Item: TMenuItem;
begin
  if (Msg.message = WM_SYSCOMMAND) then
  begin
    Item := PlayerMenu.FindItem(Msg.wParam, fkCommand);
    if Item <> nil then Item.Click;
  end;
end;

---------------------------------------------------------------------------
  New Zealand Delphi Users group - Offtopic List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz

Reply via email to