Click here to Skip to main content
15,895,606 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to Antivirus check the .EXE Pin
Anubhava Dimri7-Jun-09 21:40
Anubhava Dimri7-Jun-09 21:40 
GeneralRe: How to Antivirus check the .EXE Pin
Christian Graus7-Jun-09 21:42
protectorChristian Graus7-Jun-09 21:42 
GeneralRe: How to Antivirus check the .EXE Pin
EliottA8-Jun-09 5:32
EliottA8-Jun-09 5:32 
GeneralRe: How to Antivirus check the .EXE Pin
Anubhava Dimri8-Jun-09 18:15
Anubhava Dimri8-Jun-09 18:15 
AnswerRe: How to Antivirus check the .EXE Pin
Jon_Boy8-Jun-09 5:41
Jon_Boy8-Jun-09 5:41 
GeneralRe: How to Antivirus check the .EXE Pin
Anubhava Dimri8-Jun-09 18:13
Anubhava Dimri8-Jun-09 18:13 
AnswerRe: How to Antivirus check the .EXE Pin
chilinhhacker13-Jul-09 20:59
chilinhhacker13-Jul-09 20:59 
QuestionVb6_ Open windows explorer and select MULTIPLE files by path Pin
Specialist_Dave7-Jun-09 9:50
Specialist_Dave7-Jun-09 9:50 
'how to select 1 file
'--------------------------
Private Sub CmdOpenFolderOneSelected_Click()

Dim i As Long, SelectedFilePath As String, SelectedFileName As String ', SelectedIndex As Index
Dim SearchStringSelect As String
For i = 1 To Listview1.ListItems.Count

If Listview1.ListItems(i).Selected = True Then

SelectedFileName = Listview1.ListItems(i).SubItems(1)
SelectedFilePath = Listview1.ListItems(i).SubItems(4)
If Right$(SelectedFilePath, 1) <> "\" Then SelectedFilePath = SelectedFilePath & "\"

If FileExists(SelectedFilePath & SelectedFileName) Then
SearchStringSelect = SelectedFilePath & SelectedFileName
Shell "explorer /select," & Chr(34) & SearchStringSelect & Chr(34), vbNormalFocus '& Chr(34) = focus to file
Else: MsgBox "file doesn't exists any more."
End If
End If
Next i
End Sub


'-------------------------------------------------------------------------------------------

This works to select 1 file in the windows explorer. Multiple doesn't work. Why? I m almost gived up. Butt i have energy back. Windows medea player can do it. So why not me? I try arrays, create object=windows explorer= not info found,...

'-------------------------------------------------------------------------------------------
AnswerRe: Vb6_ Open windows explorer and select MULTIPLE files by path Pin
DidiKunz7-Jun-09 10:07
DidiKunz7-Jun-09 10:07 
RantRe: Vb6_ Open windows explorer and select MULTIPLE files by path [modified] Pin
Specialist_Dave7-Jun-09 10:13
Specialist_Dave7-Jun-09 10:13 
GeneralRe: Vb6_ Open windows explorer and select MULTIPLE files by path Pin
DidiKunz7-Jun-09 10:44
DidiKunz7-Jun-09 10:44 
GeneralRe: Vb6_ Open windows explorer and select MULTIPLE files by path [modified] Pin
Specialist_Dave7-Jun-09 10:48
Specialist_Dave7-Jun-09 10:48 
GeneralRe: Vb6_ Open windows explorer and select MULTIPLE files by path Pin
DidiKunz7-Jun-09 11:20
DidiKunz7-Jun-09 11:20 
AnswerRe: Vb6_ Open windows explorer and select MULTIPLE files by path Pin
Specialist_Dave7-Jun-09 11:53
Specialist_Dave7-Jun-09 11:53 
GeneralRe: Vb6_ Open windows explorer and select MULTIPLE files by path Pin
DidiKunz7-Jun-09 21:10
DidiKunz7-Jun-09 21:10 
AnswerRe: Vb6_ Open windows explorer and select MULTIPLE files by path Pin
Christian Graus7-Jun-09 11:31
protectorChristian Graus7-Jun-09 11:31 
GeneralRe: Vb6_ Open windows explorer and select MULTIPLE files by path Pin
DidiKunz7-Jun-09 11:36
DidiKunz7-Jun-09 11:36 
AnswerRe: Vb6_ Open windows explorer and select MULTIPLE files by path Pin
Specialist_Dave7-Jun-09 11:46
Specialist_Dave7-Jun-09 11:46 
GeneralRe: Vb6_ Open windows explorer and select MULTIPLE files by path Pin
Christian Graus7-Jun-09 12:08
protectorChristian Graus7-Jun-09 12:08 
GeneralRe: Vb6_ Open windows explorer and select MULTIPLE files by path Pin
Dave Kreskowiak7-Jun-09 15:50
mveDave Kreskowiak7-Jun-09 15:50 
GeneralRe: Vb6_ Open windows explorer and select MULTIPLE files by path Pin
Mycroft Holmes7-Jun-09 14:20
professionalMycroft Holmes7-Jun-09 14:20 
GeneralRe: Vb6_ Open windows explorer and select MULTIPLE files by path Pin
Dave Kreskowiak7-Jun-09 15:48
mveDave Kreskowiak7-Jun-09 15:48 
QuestionHow-Datagridview insertion of new rows with combo box in VB2005 Pin
bhatiamanoj177-Jun-09 9:19
bhatiamanoj177-Jun-09 9:19 
AnswerRe: How-Datagridview insertion of new rows with combo box in VB2005 Pin
Dave Kreskowiak7-Jun-09 15:52
mveDave Kreskowiak7-Jun-09 15:52 
GeneralRe: How-Datagridview insertion of new rows with combo box in VB2005 Pin
bhatiamanoj179-Jun-09 4:41
bhatiamanoj179-Jun-09 4: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.