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

Visual Basic

 
QuestionWrite field Value Pin
vijay24825-Jul-09 21:41
vijay24825-Jul-09 21:41 
AnswerRe: Write field Value Pin
helelark1236-Jul-09 19:48
helelark1236-Jul-09 19:48 
Questionhow to take images path into an array Pin
AjitMourya5-Jul-09 20:51
AjitMourya5-Jul-09 20:51 
AnswerRe: how to take images path into an array Pin
0x3c05-Jul-09 20:57
0x3c05-Jul-09 20:57 
AnswerRe: how to take images path into an array Pin
helelark1235-Jul-09 21:08
helelark1235-Jul-09 21:08 
GeneralRe: how to take images path into an array Pin
AjitMourya5-Jul-09 21:42
AjitMourya5-Jul-09 21:42 
GeneralRe: how to take images path into an array Pin
Pasan1486-Jul-09 0:55
Pasan1486-Jul-09 0:55 
GeneralRe: how to take images path into an array Pin
helelark1236-Jul-09 19:18
helelark1236-Jul-09 19:18 
You know the questions you are asking are very simple for beeing found in google. You only have to work a little and enter in google something like that: "load images from folder to array + vb.net" OR "updload inages from folder" etc...

The snippet code should be something like that: (I didn't compile or run it, but this is the concept)

private sub f()
dim fld as new IO.directoryinfo(YourFolderPath)
dim arrImages() as string 'or images as you need
dim ind as integer =0

for each fil as IO.fileInfo in fld.getFiles("*.your extension")
redim preserve arrImages(ind)
arrImages(ind)=... 'like the first answer I gave you
ind+=1
next

fld=nothing
end sub

Shay Noy

GeneralRe: how to take images path into an array Pin
KIDYA7-Jul-09 0:08
KIDYA7-Jul-09 0:08 
GeneralRe: how to take images path into an array Pin
helelark1237-Jul-09 1:44
helelark1237-Jul-09 1:44 
GeneralRe: how to take images path into an array Pin
KIDYA7-Jul-09 2:34
KIDYA7-Jul-09 2:34 
GeneralRe: how to take images path into an array Pin
helelark1237-Jul-09 10:05
helelark1237-Jul-09 10:05 
GeneralRe: how to take images path into an array Pin
KIDYA7-Jul-09 22:54
KIDYA7-Jul-09 22:54 
QuestionDEVELOPING A HOTEL RESERVATION SYSTEM Pin
kimbowa sande5-Jul-09 20:38
kimbowa sande5-Jul-09 20:38 
AnswerRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
Mycroft Holmes5-Jul-09 21:19
professionalMycroft Holmes5-Jul-09 21:19 
AnswerRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
Tom Deketelaere5-Jul-09 22:27
professionalTom Deketelaere5-Jul-09 22:27 
GeneralRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
Colin Angus Mackay6-Jul-09 2:02
Colin Angus Mackay6-Jul-09 2:02 
GeneralRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
Eddy Vluggen6-Jul-09 3:13
professionalEddy Vluggen6-Jul-09 3:13 
AnswerRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
Colin Angus Mackay6-Jul-09 2:05
Colin Angus Mackay6-Jul-09 2:05 
GeneralRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
kimbowa sande30-Jul-09 4:39
kimbowa sande30-Jul-09 4:39 
GeneralRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
Colin Angus Mackay30-Jul-09 10:02
Colin Angus Mackay30-Jul-09 10:02 
Questionhow to add sql statement in databinding?, vb 2005 Pin
wongth75-Jul-09 20:23
wongth75-Jul-09 20:23 
Questionproblem with delete button ..vb 2005 Pin
wongth75-Jul-09 20:17
wongth75-Jul-09 20:17 
QuestionPrint Out Problem in Billing system??? Pin
JC.KaNNaN5-Jul-09 19:32
JC.KaNNaN5-Jul-09 19:32 
AnswerRe: Print Out Problem in Billing system??? Pin
EliottA6-Jul-09 2:53
EliottA6-Jul-09 2:53 

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.