![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I know it seams stupid but i have to do this because many people don't have .net framework 2.0 in portugal and this is an aplication to launch from cd |
#3
| |||
| |||
|
|
I know it seams stupid but i have to do this because many people don't have .net framework 2.0 in portugal and this is an aplication to launch from cd I have this code i'd like to reproduce in VB6 i tried the shell() command but it's not enough, could anyone help me? " Dim MyProgName As String = "pangar.exe" Dim p As New Process p.StartInfo.FileName = "cmd.exe" p.StartInfo.WorkingDirectory = ("") p.StartInfo.Arguments = "/k " & MyProgName p.Start() System.Threading.Thread.Sleep(265) p.Kill() " |
#4
| |||
| |||
|
|
Hello jduarte, You could include the .NET 2.0 framework installer on the CD. You could even write a small bootstrap program (in VB6 or Delphi or C/++) to determine if the framework is available, and if not, install it.. if it is available, launch the app instead. -Boo I know it seams stupid but i have to do this because many people don't have .net framework 2.0 in portugal and this is an aplication to launch from cd I have this code i'd like to reproduce in VB6 i tried the shell() command but it's not enough, could anyone help me? " Dim MyProgName As String = "pangar.exe" Dim p As New Process p.StartInfo.FileName = "cmd.exe" p.StartInfo.WorkingDirectory = ("") p.StartInfo.Arguments = "/k " & MyProgName p.Start() System.Threading.Thread.Sleep(265) p.Kill() " |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |