Home of Gamehacking - Archiv
How to connect process game to VB.net - Druckversion

+- Home of Gamehacking - Archiv (http://archiv-homeofgamehacking.de)
+-- Forum: Gamehacking (http://archiv-homeofgamehacking.de/forumdisplay.php?fid=3)
+--- Forum: Gamehacking (http://archiv-homeofgamehacking.de/forumdisplay.php?fid=6)
+--- Thema: How to connect process game to VB.net (/showthread.php?tid=2192)



How to connect process game to VB.net - seahongheng - 24.09.2013

Dear All!

who can help me what the code VB.net connect to Game online process to VB 2010

thank


RE: How to connect process game to VB.net - Acubra - 24.09.2013

Hey,
please rethink what you want and ask your question again. Don't use a translator.


RE: How to connect process game to VB.net - seahongheng - 29.09.2013

I want to make one program from VB auto key press and I want it work only on game only even I hide the game. I don't want it work for active windows.
thank



RE: How to connect process game to VB.net - 3DGamer - 03.10.2013

It should work with the postmessage API

Code:
<DllImport("User32.dll")> _
    Public Function PostMessage(ByVal hwnd As Integer, ByVal wMsg As Integer, ByVal wParam As Integer, ByVal lParam As String) As Int32
    End Function