Compilador vbc.exe me tiene harto!

Iniciado por DarkItachi, 8 Julio 2008, 20:01 PM

0 Miembros y 1 Visitante están viendo este tema.

DarkItachi

Tengo este code:

Module Module1

    Sub Main()
        Dim Proceso As New Process()
        Proceso.StartInfo.FileName = "www.ogame.com.es"
        Proceso.StartInfo.Arguments = ""
        Proceso.Start()

    End Sub

End Module


Y cuando lo compilo en vbc.exe me suelta este error.
X:\Documents and Settings\xxxx\Escritorio\xxxx.vb(4) : error BC30002: Type 'Pro
cess' is not defined.

        Dim Proceso As New Process()
                           ~~~~~~~

Las x las puse yo por seguridad

¿Que hago?
Estoy hasta los ******* del compilador este!
Come to me when you have these eyes...

By more that you try it, a feather never will achieve to fly.

MANULOMM

#1
si estas haciendo la referencia a System.Diagnostics , sino estoy mal en VB seria un Imports lo que en C# seria un using.


//en la parte mas alta arriba de Module pon.
Imports System.Diagnostics;


Atentamente,

Juan Manuel Lombana
Medellín - Colombia

PD: ejecuto tu code y a mi me funciona.


DarkItachi

ejecutas o compilas o las dos cosas?

Gracias por la respuesta
Come to me when you have these eyes...

By more that you try it, a feather never will achieve to fly.

MANULOMM

para porder ejecutar necesito compilar.

Atentamente,

Juan Manuel Lombana
Medellín - Colombia