Click here to Skip to main content
15,922,574 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Questionhow can i get back comumn data from Data Set Pin
Naveed7275-Oct-07 0:39
Naveed7275-Oct-07 0:39 
AnswerRe: how can i get back comumn data from Data Set Pin
pmarfleet5-Oct-07 1:15
pmarfleet5-Oct-07 1:15 
QuestionI want to create an Attendance Register for My Company using VB.net Pin
skullz_softwares5-Oct-07 0:10
skullz_softwares5-Oct-07 0:10 
AnswerRe: I want to create an Attendance Register for My Company using VB.net Pin
Christian Graus5-Oct-07 1:11
protectorChristian Graus5-Oct-07 1:11 
AnswerRe: I want to create an Attendance Register for My Company using VB.net Pin
GuyThiebaut5-Oct-07 4:41
professionalGuyThiebaut5-Oct-07 4:41 
QuestionFilling a typed dataset Pin
steve_rm4-Oct-07 22:16
steve_rm4-Oct-07 22:16 
AnswerRe: Filling a typed dataset Pin
Johan Hakkesteegt5-Oct-07 0:06
Johan Hakkesteegt5-Oct-07 0:06 
QuestionVB DLL Question Pin
yoya03034-Oct-07 22:08
yoya03034-Oct-07 22:08 
How to inject a dll to exe process
The dll is compiled by vb (stand dll use Create in Visual Basic version 2)
Now i succeed inject it to a process ,but the code in the dll dont execute

my code in dll:

Public Declare Function MessageBox Lib "user32" Alias "MessageBoxA" (ByVal hwnd As Long, ByVal lpText As String, ByVal lpCaption As String, ByVal wType As Long) As Long
Public Declare Function GetCurrentProcessId Lib "kernel32" () As Long
Public Const DLL_PROCESS_DETACH = 0
Public Const DLL_PROCESS_ATTACH = 1
Public Const DLL_THREAD_ATTACH = 2
Public Const DLL_THREAD_DETACH = 3
Public Const MB_OK = &H0&
Public Function DllMain(hInst As Long, fdwReason As Long, lpvReserved As Long) As Boolean
Select Case fdwReason
Case DLL_PROCESS_DETACH
Case DLL_PROCESS_ATTACH
DllMain = True
MessageBox 0, CStr(GetCurrentProcessId()), "aaa", MB_OK
Case DLL_THREAD_ATTACH
Case DLL_THREAD_DETACH
End Select
End Function

AnswerRe: VB DLL Question Pin
Dave Kreskowiak5-Oct-07 1:52
mveDave Kreskowiak5-Oct-07 1:52 
GeneralRe: VB DLL Question Pin
yoya03035-Oct-07 2:15
yoya03035-Oct-07 2:15 
GeneralRe: VB DLL Question Pin
Dave Kreskowiak5-Oct-07 3:50
mveDave Kreskowiak5-Oct-07 3:50 
GeneralRe: VB DLL Question Pin
yoya03035-Oct-07 4:06
yoya03035-Oct-07 4:06 
QuestionData reader (need your help guys) Pin
dienadel4-Oct-07 15:43
dienadel4-Oct-07 15:43 
AnswerRe: Data reader (need your help guys) Pin
Christian Graus4-Oct-07 19:10
protectorChristian Graus4-Oct-07 19:10 
AnswerRe: Data reader (need your help guys) Pin
Dave Kreskowiak5-Oct-07 1:49
mveDave Kreskowiak5-Oct-07 1:49 
GeneralRe: Data reader (need your help guys) Pin
dienadel7-Oct-07 19:51
dienadel7-Oct-07 19:51 
QuestionForms Handling Issue Pin
nlarson114-Oct-07 11:18
nlarson114-Oct-07 11:18 
AnswerRe: Forms Handling Issue Pin
Johan Hakkesteegt5-Oct-07 0:13
Johan Hakkesteegt5-Oct-07 0:13 
GeneralRe: Forms Handling Issue Pin
nlarson115-Oct-07 3:04
nlarson115-Oct-07 3:04 
GeneralRe: Forms Handling Issue Pin
Johan Hakkesteegt5-Oct-07 3:14
Johan Hakkesteegt5-Oct-07 3:14 
QuestionReport from SQL Server with Vb.NET Pin
mhaneefa4-Oct-07 9:41
mhaneefa4-Oct-07 9:41 
AnswerRe: Report from SQL Server with Vb.NET Pin
Johan Hakkesteegt5-Oct-07 0:16
Johan Hakkesteegt5-Oct-07 0:16 
GeneralRe: Report from SQL Server with Vb.NET Pin
mhaneefa5-Oct-07 9:53
mhaneefa5-Oct-07 9:53 
QuestionGet Access() [modified] Pin
zchwllms4-Oct-07 9:28
zchwllms4-Oct-07 9:28 
AnswerRe: Get Access() Pin
balaji baskar4-Oct-07 13:24
balaji baskar4-Oct-07 13:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.