Click here to Skip to main content
15,894,267 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Insert data into an existing file Pin
Wendelius12-Oct-08 1:04
mentorWendelius12-Oct-08 1:04 
Questioncreating datarelation in a dataset Pin
Maira K11-Oct-08 22:13
Maira K11-Oct-08 22:13 
AnswerRe: creating datarelation in a dataset Pin
Wendelius11-Oct-08 23:55
mentorWendelius11-Oct-08 23:55 
QuestionOdd question, can a conextmenustrip be made to always be visible (even when focus changes to other controls)? Pin
Jon_Boy11-Oct-08 17:39
Jon_Boy11-Oct-08 17:39 
AnswerRe: Odd question, can a conextmenustrip be made to always be visible (even when focus changes to other controls)? Pin
Mycroft Holmes11-Oct-08 18:06
professionalMycroft Holmes11-Oct-08 18:06 
GeneralRe: Odd question, can a conextmenustrip be made to always be visible (even when focus changes to other controls)? [modified] Pin
Jon_Boy12-Oct-08 2:24
Jon_Boy12-Oct-08 2:24 
QuestionHow to get the file names in a directory Pin
SekharOne11-Oct-08 2:12
SekharOne11-Oct-08 2:12 
AnswerRe: How to get the file names in a directory Pin
Rupesh Kumar Swami11-Oct-08 2:28
Rupesh Kumar Swami11-Oct-08 2:28 
hi,
use following statements for get files from particular directory

If Directory.Exists(Application.StartupPath & "\ABC") Then<br />
                Dim ob As New DirectoryInfo(Application.StartupPath & "\ABC")<br />
<br />
                Dim file_infos() As FileInfo<br />
                file_infos = ob.GetFiles()<br />
<br />
                For Each file_info As FileInfo In file_infos<br />
                    Listbox1.Items.Add(file_info.FullName)<br />
                Next file_info<br />
            End If

hope this helps

Rupesh Kumar Swami
Software Developer,
Integrated Solution,
Bikaner (India)

My Company
Award: Best VB.NET article of June 2008: Create Column Charts Using OWC11

GeneralRe: How to get the file names in a directory Pin
SekharOne11-Oct-08 2:38
SekharOne11-Oct-08 2:38 
Questioncurriculum vitale / resume loader Pin
jhyn11-Oct-08 0:40
jhyn11-Oct-08 0:40 
AnswerRe: curriculum vitale / resume loader Pin
Colin Angus Mackay11-Oct-08 0:45
Colin Angus Mackay11-Oct-08 0:45 
GeneralRe: curriculum vitale / resume loader Pin
jhyn11-Oct-08 21:29
jhyn11-Oct-08 21:29 
AnswerRe: curriculum vitale / resume loader Pin
Wendelius12-Oct-08 0:16
mentorWendelius12-Oct-08 0:16 
GeneralRe: curriculum vitale / resume loader Pin
jhyn12-Oct-08 19:19
jhyn12-Oct-08 19:19 
GeneralRe: curriculum vitale / resume loader Pin
jhyn21-Oct-08 0:57
jhyn21-Oct-08 0:57 
GeneralRe: curriculum vitale / resume loader Pin
Wendelius21-Oct-08 7:34
mentorWendelius21-Oct-08 7:34 
GeneralRe: curriculum vitale / resume loader Pin
jhyn21-Oct-08 19:18
jhyn21-Oct-08 19:18 
GeneralRe: curriculum vitale / resume loader Pin
Wendelius22-Oct-08 7:25
mentorWendelius22-Oct-08 7:25 
Questionrectangle in picture box Pin
flamingo210-Oct-08 20:38
flamingo210-Oct-08 20:38 
QuestionWindows service and dependencies Pin
KreativeKai10-Oct-08 8:33
professionalKreativeKai10-Oct-08 8:33 
GeneralRe: Windows service and dependencies Pin
jzonthemtn10-Oct-08 8:43
jzonthemtn10-Oct-08 8:43 
GeneralRe: Windows service and dependencies Pin
KreativeKai10-Oct-08 8:47
professionalKreativeKai10-Oct-08 8:47 
GeneralRe: Windows service and dependencies Pin
jzonthemtn10-Oct-08 8:50
jzonthemtn10-Oct-08 8:50 
GeneralRe: Windows service and dependencies Pin
KreativeKai10-Oct-08 9:31
professionalKreativeKai10-Oct-08 9:31 
QuestionQuestion about objects and forms Pin
sa_runner10-Oct-08 7:57
sa_runner10-Oct-08 7:57 

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.