CARREGAR GAME NO EMULADOR PELO VB

NICOLLAS2 22/05/2012 13:24:28
#402469
galera, conclui um projeto e agora gostaria de colocar um [Ô]ovo de pascoa[Ô] nele.
tem como carregar um emulador ja com um game junto?

o emulador que vou usar é o gens 2.14
e o game é o sonic

pra chamar o emulador uso o shell, blz... mas como trazer o game ja carregado junto?

tem como?

att,

nicolas
MARCELO.TREZE 22/05/2012 13:38:05
#402471
em um módulo cole

#If Win32 Then
Public Declare Function ShellExecute Lib _
[Ô]shell32.dll[Ô] Alias [Ô]ShellExecuteA[Ô] _
(ByVal hwnd As Long, _
ByVal lpOperation As String, _
ByVal lpFile As String, _
ByVal lpParameters As String, _
ByVal lpDirectory As String, _
ByVal nShowCmd As Long) As Long
#Else
Public Declare Function ShellExecute Lib _
[Ô]shell.dll[Ô] _
(ByVal hwnd As Integer, _
ByVal lpOperation As String, _
ByVal lpFile As String, _
ByVal lpParameters As String, _
ByVal lpDirectory As String, _
ByVal nShowCmd As Integer) As Integer
#End If
Public Const SW_SHOWNORMAL = 1


e depois basta chamar o jogo, que ele abrirá com o rpograma de origem, no caso o emulador


Private Sub Command1_Click()
Dim iret As Long
iret = ShellExecute(Me.hwnd, vbNullString, [Ô]C:\comunicado.docx[Ô], vbNullString, [Ô]C:[Ô], SW_SHOWNORMAL)
End Sub


no exemplo acima abro um documento com o word, mude para o nome do jogo e teste

Tópico encerrado , respostas não são mais permitidas