Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 5 of 5
  1. #1
    Join Date
    Apr 2003
    Posts
    6

    Microsoft .NET Framework

    It would be AWESOME to have a MS .NET Framework 1.1 (latest) runtime module. As more and more applications are written for / using .NET, this would help greatly...

  2. #2
    Join Date
    Jul 2001
    Location
    Indigo Rose Software
    Posts
    1,834

    Re: Microsoft .NET Framework

    Thank you for your suggestion, it's currently in our database for future consideration.
    Darryl
    Indigo Rose Corporation

    Product Guides: AMS80 | SUF9 | TU30 | VP30 |MSIFACT |DeltaMAX

  3. #3
    Join Date
    Oct 2003
    Posts
    1

    Re: Microsoft .NET Framework

    How about a way to detect if the runtime is installed already and send the user to a page to download it if it is not? I have been asking Microsoft for the registry entries to check, but no response yet... I think that would be better, because of the 23MB size of the runtime I know I don't want to have to email it to someone!

  4. #4
    Join Date
    Jul 2001
    Location
    Indigo Rose Software
    Posts
    1,834
    I came across some information at the following link about how to detect if the .NET Framework is installed:

    Click Here

    In that article it explains that a Registry key that can be read is:

    HKLM\SOFTWARE\Microsoft\.NETFramework\policy\v1.0

    Hope that helps.

  5. #5
    Join Date
    Nov 2004
    Posts
    9

    IsDotNetInstalled

    I use

    function IsDotNetInstalled()
    local v10 = Registry.DoesKeyExist(HKEY_LOCAL_MACHINE, "SOFTWARE\Microsoft\.NETFramework\policy\v1.0" );
    local v11 = Registry.DoesKeyExist(HKEY_LOCAL_MACHINE, "SOFTWARE\Microsoft\.NETFramework\policy\v1.1" );
    local v20 = Registry.DoesKeyExist(HKEY_LOCAL_MACHINE, "SOFTWARE\Microsoft\.NETFramework\policy\v2.0" );

    if (v20 == true ) then
    result = "2.0";
    elseif (v11 == true) then
    result = "1.1";
    elseif (v10 == true) then
    result = "1.0";
    else
    result = "none";
    end
    return result;
    end

Posting Permissions

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