ok not sure where to change things around here is my original code im working at the bottom at OpenAll_click
not sure where your code goes in here tried a few times and failed everything opened at form start
right now with the code i have it opens everthing as soon as the button is clicked
Code:
Public Class Form1
Private Sub pakscape_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles pakscape.Click
System.Diagnostics.Process.Start("D:\MW2 Stuff\texture mods\Programs and tools\PakScape\PakScape")
End Sub
Private Sub Photoshop_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Photoshop.Click
System.Diagnostics.Process.Start("D:\MW2 Stuff\texture mods\Programs and tools\Adobe_Photoshop_CS5\Adobe Photoshop CS5\Photoshop")
End Sub
Private Sub Hxd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Hxd.Click
System.Diagnostics.Process.Start("D:\MW2 Stuff\texture mods\Modding Folder\HxD")
End Sub
Private Sub CRCFixer_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CRCFixer.Click
System.Diagnostics.Process.Start("D:\MW2 Stuff\texture mods\Programs and tools\CRC32 Fixer\CRCFixer")
End Sub
Private Sub ModdingFolder_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ModdingFolder.Click
System.Diagnostics.Process.Start("D:\MW2 Stuff\texture mods\Modding Folder")
End Sub
Private Sub NewFolder_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NewFolder.Click
System.Diagnostics.Process.Start("D:\MW2 Stuff\texture mods\Modding Folder\New")
End Sub
Private Sub OriginalFolder_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OriginalFolder.Click
System.Diagnostics.Process.Start("D:\MW2 Stuff\texture mods\Modding Folder\Original")
End Sub
Private Sub IwIxDDS_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles IwIxDDS.Click
System.Diagnostics.Process.Start("D:\MW2 Stuff\texture mods\Modding Folder\iwi x dds")
End Sub
Private Sub DDS2IwI_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DDS2IwI.Click
System.Diagnostics.Process.Start("D:\MW2 Stuff\texture mods\Modding Folder\dds2iwi")
End Sub
Private Sub MainFolder_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MainFolder.Click
System.Diagnostics.Process.Start("C:\Program Files (x86)\Steam\steamapps\common\Alternet\main")
End Sub
Private Sub OpenAll_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenAll.Click
Label1.Text = ("Loading Files")
ProgressBar1.Visible = True
ProgressBar1.Value = 10
Process.Start("D:\MW2 Stuff\texture mods\Programs and tools\Adobe_Photoshop_CS5\Adobe Photoshop CS5\Photoshop")
ProgressBar1.Value = 20
Process.Start("D:\MW2 Stuff\texture mods\Programs and tools\PakScape\PakScape")
ProgressBar1.Value = 30
Process.Start("D:\MW2 Stuff\texture mods\Modding Folder\HxD")
ProgressBar1.Value = 40
Process.Start("D:\MW2 Stuff\texture mods\Programs and tools\CRC32 Fixer\CRCFixer")
ProgressBar1.Value = 50
Process.Start("D:\MW2 Stuff\texture mods\Modding Folder")
ProgressBar1.Value = 60
Process.Start("D:\MW2 Stuff\texture mods\Modding Folder\New")
ProgressBar1.Value = 70
Process.Start("D:\MW2 Stuff\texture mods\Modding Folder\Original")
ProgressBar1.Value = 80
Process.Start("D:\MW2 Stuff\texture mods\Modding Folder\iwi x dds")
ProgressBar1.Value = 90
Process.Start("D:\MW2 Stuff\texture mods\Modding Folder\dds2iwi")
ProgressBar1.Value = 100
Process.Start("C:\Program Files (x86)\Steam\steamapps\common\Alternet\main")
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
ProgressBar1.Visible = False
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
ProgressBar1.Increment(5)
If ProgressBar1.Value = ProgressBar1.Maximum Then
Timer1.Stop()
Label1.Text = ("Done Mod On")
ProgressBar1.Visible = False
Else
Label1.Text = ("Click Start All")
End If
End Sub
End Class