Click here to Skip to main content
15,885,782 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralIs it possible to hook into a running vb6 ide program after you hit <F5> and use an compiled vb6 exe external program to access the running ide program and manipulate it. Pin
soundminded13-Jun-17 14:31
soundminded13-Jun-17 14:31 
GeneralRe: Is it possible to hook into a running vb6 ide program after you hit <F5> and use an compiled vb6 exe external program to access the running ide program and manipulate it. Pin
Richard MacCutchan13-Jun-17 21:44
mveRichard MacCutchan13-Jun-17 21:44 
GeneralRe: Is it possible to hook into a running vb6 ide program after you hit <F5> and use an compiled vb6 exe external program to access the running ide program and manipulate it. Pin
soundminded14-Jun-17 8:50
soundminded14-Jun-17 8:50 
GeneralRe: Is it possible to hook into a running vb6 ide program after you hit <F5> and use an compiled vb6 exe external program to access the running ide program and manipulate it. Pin
Richard MacCutchan14-Jun-17 22:33
mveRichard MacCutchan14-Jun-17 22:33 
GeneralRe: Is it possible to hook into a running vb6 ide program after you hit <F5> and use an compiled vb6 exe external program to access the running ide program and manipulate it. Pin
soundminded17-Jun-17 6:05
soundminded17-Jun-17 6:05 
GeneralRe: Is it possible to hook into a running vb6 ide program after you hit <F5> and use an compiled vb6 exe external program to access the running ide program and manipulate it. Pin
Richard MacCutchan17-Jun-17 6:22
mveRichard MacCutchan17-Jun-17 6:22 
GeneralRe: Is it possible to hook into a running vb6 ide program after you hit <F5> and use an compiled vb6 exe external program to access the running ide program and manipulate it. Pin
soundminded17-Jun-17 6:52
soundminded17-Jun-17 6:52 
QuestionSort Desktop Icons by Name Pin
Member 1325666713-Jun-17 1:05
Member 1325666713-Jun-17 1:05 
Hello,

I use this code to try to sort my desktop icons, but noway...

'Declaration
'-------------
'API declarations
Public Declare Function SendMessage Lib "user32" _
   Alias "SendMessageA" _
  (ByVal hwnd As Long, _
   ByVal wMsg As Long, _
   ByVal wParam As Long, _
   LPARAM As Any) As Long

Public Const LVS_SORTASCENDING = &H10   

Public Const LVM_SORTITEMS = (LVM_FIRST + 48)

'and others declarations...


'code in sub procedure
'---------------------

Public Sub sortIconsByNameAsc()

   h = GetDesktopWindow() 'hwnd for desktop

   Call SendMessage(h, LVM_SORTITEMS, LVS_SORTASCENDING, h)

end sub

QuestionRe: Sort Desktop Icons by Name Pin
Richard MacCutchan13-Jun-17 5:06
mveRichard MacCutchan13-Jun-17 5:06 
QuestionHi ppl..short question! Pin
User 98970749-Jun-17 9:10
User 98970749-Jun-17 9:10 
GeneralRe: Hi ppl..short question! Pin
Ralf Meier9-Jun-17 10:50
mveRalf Meier9-Jun-17 10:50 
GeneralRe: Hi ppl..short question! Pin
User 98970749-Jun-17 22:27
User 98970749-Jun-17 22:27 
GeneralRe: Hi ppl..short question! Pin
Ralf Meier10-Jun-17 0:00
mveRalf Meier10-Jun-17 0:00 
GeneralRe: Hi ppl..short question! Pin
User 989707410-Jun-17 0:09
User 989707410-Jun-17 0:09 
GeneralRe: Hi ppl..short question! Pin
Ralf Meier10-Jun-17 0:29
mveRalf Meier10-Jun-17 0:29 
GeneralRe: Hi ppl..short question! Pin
User 989707410-Jun-17 0:43
User 989707410-Jun-17 0:43 
AnswerRe: Hi ppl..short question! Pin
Ralf Meier10-Jun-17 10:18
mveRalf Meier10-Jun-17 10:18 
GeneralRe: Hi ppl..short question! Pin
User 989707411-Jun-17 1:15
User 989707411-Jun-17 1:15 
GeneralRe: Hi ppl..short question! Pin
User 989707411-Jun-17 5:13
User 989707411-Jun-17 5:13 
GeneralRe: Hi ppl..short question! Pin
Ralf Meier11-Jun-17 8:43
mveRalf Meier11-Jun-17 8:43 
GeneralRe: Hi ppl..short question! Pin
User 989707411-Jun-17 8:47
User 989707411-Jun-17 8:47 
GeneralRe: Hi ppl..short question! Pin
Ralf Meier11-Jun-17 8:51
mveRalf Meier11-Jun-17 8:51 
GeneralRe: Hi ppl..short question! Pin
User 989707411-Jun-17 9:07
User 989707411-Jun-17 9:07 
GeneralRe: Hi ppl..short question! Pin
User 989707412-Jun-17 1:35
User 989707412-Jun-17 1:35 
GeneralRe: Hi ppl..short question! Pin
Ralf Meier12-Jun-17 1:41
mveRalf Meier12-Jun-17 1:41 

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.