[Solved] code to run magnifier vb


You simply just need to open the process from the System32 folder.

Here’s how you can open the magnifier:

Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
    Dim MagnifyPath As String = IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.System), "Magnify.exe")
    Process.Start(MagnifyPath)
End Sub

1

solved code to run magnifier vb