Entry point for uninstall
-
Hi all, i need to edit file on the target folder and this editing must run in Uninstalling this program what exaclty shall I do?
-
In your setup project open up the Custom Actions Editor. Here you can specify other actions to do during installation or uninstallation. You'll have to make a new .exe to edit the file and place that .exe it in the Uninstall folder here.
i create new class that display warning message if he find string in text file and this code inside Sub of the class so how can i call this function from the dll in the setup project while uninstall Code :
Imports System.IO Imports System.Windows.Forms Public Class Uninstall Dim str As String Public Sub FixDynamics() str = System.IO.File.ReadAllText("Test.txt") If str.Contains("Auto") = True Then MessageBox.Show("Exist txt") End If End Sub
-- modified at 3:26 Thursday 25th May, 2006 -
i create new class that display warning message if he find string in text file and this code inside Sub of the class so how can i call this function from the dll in the setup project while uninstall Code :
Imports System.IO Imports System.Windows.Forms Public Class Uninstall Dim str As String Public Sub FixDynamics() str = System.IO.File.ReadAllText("Test.txt") If str.Contains("Auto") = True Then MessageBox.Show("Exist txt") End If End Sub
-- modified at 3:26 Thursday 25th May, 2006