02-23-2013, 08:19 PM 
		
	
	
		This is occurring because the "Process" object is actually located within the "System.Diagnostics" library. Therefore, in order to actually call
[code2=vbnet]Process.Start("C:\")[/code2]
You must first put this on top of all your code:
[code2=vbnet]Imports System.Diagnostics[/code2]
	
	
	
	
[code2=vbnet]Process.Start("C:\")[/code2]
You must first put this on top of all your code:
[code2=vbnet]Imports System.Diagnostics[/code2]

