Click here to Skip to main content
15,790,917 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionWrite field Value Pin
vijay24825-Jul-09 22:41
vijay24825-Jul-09 22:41 
AnswerRe: Write field Value Pin
helelark1236-Jul-09 20:48
helelark1236-Jul-09 20:48 
Questionhow to take images path into an array Pin
AjitMourya5-Jul-09 21:51
AjitMourya5-Jul-09 21:51 
AnswerRe: how to take images path into an array Pin
0x3c05-Jul-09 21:57
0x3c05-Jul-09 21:57 
AnswerRe: how to take images path into an array Pin
helelark1235-Jul-09 22:08
helelark1235-Jul-09 22:08 
GeneralRe: how to take images path into an array Pin
AjitMourya5-Jul-09 22:42
AjitMourya5-Jul-09 22:42 
GeneralRe: how to take images path into an array Pin
Pasan1486-Jul-09 1:55
Pasan1486-Jul-09 1:55 
GeneralRe: how to take images path into an array Pin
helelark1236-Jul-09 20:18
helelark1236-Jul-09 20: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 1:08
KIDYA7-Jul-09 1:08 
GeneralRe: how to take images path into an array Pin
helelark1237-Jul-09 2:44
helelark1237-Jul-09 2:44 
GeneralRe: how to take images path into an array Pin
KIDYA7-Jul-09 3:34
KIDYA7-Jul-09 3:34 
GeneralRe: how to take images path into an array Pin
helelark1237-Jul-09 11:05
helelark1237-Jul-09 11:05 
GeneralRe: how to take images path into an array Pin
KIDYA7-Jul-09 23:54
KIDYA7-Jul-09 23:54 
QuestionDEVELOPING A HOTEL RESERVATION SYSTEM Pin
kimbowa sande5-Jul-09 21:38
kimbowa sande5-Jul-09 21:38 
AnswerRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
Mycroft Holmes5-Jul-09 22:19
professionalMycroft Holmes5-Jul-09 22:19 
AnswerRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
Tom Deketelaere5-Jul-09 23:27
professionalTom Deketelaere5-Jul-09 23:27 
GeneralRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
Colin Angus Mackay6-Jul-09 3:02
Colin Angus Mackay6-Jul-09 3:02 
GeneralRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
Eddy Vluggen6-Jul-09 4:13
professionalEddy Vluggen6-Jul-09 4:13 
AnswerRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
Colin Angus Mackay6-Jul-09 3:05
Colin Angus Mackay6-Jul-09 3:05 
GeneralRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
kimbowa sande30-Jul-09 5:39
kimbowa sande30-Jul-09 5:39 
GeneralRe: DEVELOPING A HOTEL RESERVATION SYSTEM Pin
Colin Angus Mackay30-Jul-09 11:02
Colin Angus Mackay30-Jul-09 11:02 
Questionhow to add sql statement in databinding?, vb 2005 Pin
wongth75-Jul-09 21:23
wongth75-Jul-09 21:23 
Questionproblem with delete button ..vb 2005 Pin
wongth75-Jul-09 21:17
wongth75-Jul-09 21:17 
QuestionPrint Out Problem in Billing system??? Pin
JC.KaNNaN5-Jul-09 20:32
JC.KaNNaN5-Jul-09 20:32 
AnswerRe: Print Out Problem in Billing system??? Pin
EliottA6-Jul-09 3:53
EliottA6-Jul-09 3: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.