PDA

View Full Version : Set a label without destination link.


Ham
05-25-2006, 02:32 PM
Hello all

I want to set a label like this:

found = File.Find( _SourceFolder, "*yourfile.exe", true, false);
if (found) then
Label.SetText("Label11", "its already downloaded" .. found[1]);

it chekes if the file is already downloaded.

Problem is that it add more lines like:

its already downloaded C:\yourapp

I just want to let is say: its already downloaded.


Many thanks:yes

TJS
05-25-2006, 02:39 PM
Try like this:


found = File.Find( _SourceFolder, "*yourfile.exe", true, false);
if (found) then
Label.SetText("Label11", "its already downloaded");
end

Ham
05-25-2006, 02:42 PM
:yes it works major thanks TJS