I have been trying to open an external application from VB using the following code:

Dim shellProgram As String
Dim res
shellProgram = “c:\put file name in here"
res = Shell(shellProgram,vbNormalFocus)
End Sub

It keeps saying "No file found"... my application is not an exe extention, it is ICO (whatever that is). Does anyone know what I can do... please help!