Click here to Skip to main content
15,921,279 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionProblem with MainMenu display? Pin
jphuphilly22-Apr-06 14:35
jphuphilly22-Apr-06 14:35 
AnswerRe: Problem with MainMenu display? Pin
Dave Kreskowiak23-Apr-06 3:53
mveDave Kreskowiak23-Apr-06 3:53 
QuestionHow to change shape properties in a VB report? Pin
nasps122-Apr-06 9:00
nasps122-Apr-06 9:00 
QuestionButton usage Pin
machman122-Apr-06 8:50
machman122-Apr-06 8:50 
AnswerRe: Button usage Pin
CWIZO22-Apr-06 23:46
CWIZO22-Apr-06 23:46 
AnswerRe: Button usage Pin
Dave Kreskowiak23-Apr-06 3:40
mveDave Kreskowiak23-Apr-06 3:40 
AnswerRe: Button usage Pin
arunendra24-Apr-06 4:48
arunendra24-Apr-06 4:48 
Questionproblem with msvbvm60.dll Pin
ZEALOTT22-Apr-06 8:02
ZEALOTT22-Apr-06 8:02 
please help me
why dont work it code? Cry | :((
i need explication of why this dont work

<br />
Private Declare Function GetProcAddress Lib "kernel32" (ByVal hModule As Long, ByVal lpProcName As String) As Long<br />
Private Declare Function GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" (ByVal lpModuleName As String) As Long<br />
Private Declare Function CreateThread Lib "kernel32" (lpThreadAttributes As Long, ByVal dwStackSize As Long, lpStartAddress As Long, lpParameter As Any, ByVal dwCreationFlags As Long, lpThreadId As Long) As Long<br />
Private Declare Function CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long<br />
Private Declare Function WaitForSingleObject Lib "kernel32" (ByVal hHandle As Long, ByVal dwMilliseconds As Long) As Long<br />
Private Declare Function GetExitCodeThread Lib "kernel32" (ByVal hThread As Long, lpExitCode As Long) As Long<br />
Private Const INFINITE = &HFFFF      '  Tiempo de espera infinito<br />
<br />
Private Sub Command1_Click()<br />
Dim var1 As Long, var2 As Long, var3 As Long, var4 As Long<br />
var1 = GetModuleHandle("msvbvm60.dll")<br />
var2 = GetProcAddress(var1, "rtcShell")<br />
If var2 <= 0 Then MsgBox "funcion no encontrada": Exit Sub<br />
var3 = CreateThread(ByVal 0&, 0&, ByVal var2, ByVal "notepad", 0&, ByVal 0&)<br />
Call WaitForSingleObject(var3, INFINITE)<br />
Call GetExitCodeThread(var3, var4)<br />
If var3 <= 0 Or var4 <= 0 Then<br />
    MsgBox "POR QUE DIABLOS NO FUNCIONA ESTA PINGADA"<br />
End If<br />
CloseHandle var3<br />
End Sub


EOF
AnswerRe: problem with msvbvm60.dll Pin
Dave Kreskowiak23-Apr-06 3:38
mveDave Kreskowiak23-Apr-06 3:38 
Questionframe-delay change in gif Pin
sasha_razm22-Apr-06 5:07
sasha_razm22-Apr-06 5:07 
QuestionHelp About String Matching Pin
extraful22-Apr-06 3:48
extraful22-Apr-06 3:48 
AnswerRe: Help About String Matching Pin
Dave Kreskowiak22-Apr-06 6:29
mveDave Kreskowiak22-Apr-06 6:29 
AnswerRe: Help About String Matching Pin
extraful24-Apr-06 5:17
extraful24-Apr-06 5:17 
Questionplz help me.. this is the fifth time ... Pin
Mr kilany22-Apr-06 3:37
Mr kilany22-Apr-06 3:37 
GeneralRe: plz help me.. this is the fifth time ... Pin
Guffa22-Apr-06 4:50
Guffa22-Apr-06 4:50 
GeneralRe: plz help me.. this is the fifth time ... Pin
Dave Kreskowiak22-Apr-06 6:27
mveDave Kreskowiak22-Apr-06 6:27 
AnswerRe: plz help me.. this is the fifth time ... Pin
Steve Pullan22-Apr-06 17:11
Steve Pullan22-Apr-06 17:11 
Questionplz help me Pin
Sweety Shah22-Apr-06 1:07
Sweety Shah22-Apr-06 1:07 
AnswerRe: plz help me Pin
Dave Kreskowiak22-Apr-06 6:33
mveDave Kreskowiak22-Apr-06 6:33 
QuestionHow to run a DLL method dynamically from a VB6 code. I have the DLL name, Class name, Method name, parameters and the respective values from an XML. Pin
Davis Augustine22-Apr-06 0:55
Davis Augustine22-Apr-06 0:55 
AnswerRe: How to run a DLL method dynamically from a VB6 code. I have the DLL name, Class name, Method name, parameters and the respective values from an XML. Pin
mr_1234522-Apr-06 4:41
mr_1234522-Apr-06 4:41 
GeneralRe: How to run a DLL method dynamically from a VB6 code. I have the DLL name, Class name, Method name, parameters and the respective values from an XML. Pin
Davis Augustine3-May-06 2:45
Davis Augustine3-May-06 2:45 
Questionhyperlink in crystalreport Pin
Sweety Shah22-Apr-06 0:53
Sweety Shah22-Apr-06 0:53 
QuestionMail application Pin
D.N.21-Apr-06 23:42
D.N.21-Apr-06 23:42 
AnswerRe: Mail application Pin
CWIZO22-Apr-06 0:32
CWIZO22-Apr-06 0:32 

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.