I'm trying to add a dialog message to this when it does not find the file but not having much luck .
I'm not real good yet with the functions so that maybe my problem.
Code:-- Callback function, used when a match is found function found (filename) -- Display a dialog to the user Dialog.Message("FOUND!!", filename .. " was found!!\r\nNow terminating find . . ."); filename = File.Run("notepad.exe", "", "", SW_SHOWNORMAL, false); -- return false (end the find action) return false; end -- Show the status dialog StatusDlg.Show(); -- Find any filename containing 'iccvid.dll'. Call function 'found' whenever a match is found File.Find("c:\\", "iccvid.dll", true, false, nil, found); -- Hide the status dialog StatusDlg.Hide();

