Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2005
    Posts
    172

    Set a label without destination link.

    Hello all

    I want to set a label like this:

    Code:
    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:

    Code:
    its already downloaded C:\yourapp
    I just want to let is say: its already downloaded.


    Many thanks

  2. #2
    Join Date
    Oct 2005
    Location
    MI
    Posts
    524
    Try like this:

    Code:
    found = File.Find( _SourceFolder, "*yourfile.exe", true, false);
    if (found) then
        Label.SetText("Label11", "its already downloaded");
    end
    Yeah right. Who's the only one here who knows the illegal ninja moves from the government?

    ()))))))))o)))))))==============================================

  3. #3
    Join Date
    Apr 2005
    Posts
    172
    it works major thanks TJS

Similar Threads

  1. Label object's text being cut off issue
    By bule in forum AutoPlay Media Studio 6.0
    Replies: 0
    Last Post: 01-24-2006, 02:48 AM
  2. How to put a variabele in a WriteFromString
    By brianlesker in forum Setup Factory 7.0
    Replies: 11
    Last Post: 10-04-2004, 05:44 PM
  3. New to set up a link
    By Kenster18 in forum AutoPlay Media Studio 5.0
    Replies: 7
    Last Post: 08-18-2004, 12:02 PM
  4. INFO: How to Set the Default Application Directory
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 09-25-2002, 12:02 PM
  5. how set edit field and label not visible?
    By 6lickdrdunDchics in forum Setup Factory 6.0
    Replies: 0
    Last Post: 06-24-2002, 12:45 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts