Click here to Skip to main content
15,921,793 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Comparing FIELD by FIELD in two files Pin
Ravi Mahavrathayajula19-Sep-07 6:23
Ravi Mahavrathayajula19-Sep-07 6:23 
GeneralRe: Comparing FIELD by FIELD in two files Pin
GuyThiebaut19-Sep-07 7:00
professionalGuyThiebaut19-Sep-07 7:00 
GeneralRe: Comparing FIELD by FIELD in two files Pin
Ravi Mahavrathayajula19-Sep-07 9:45
Ravi Mahavrathayajula19-Sep-07 9:45 
GeneralRe: Comparing FIELD by FIELD in two files Pin
GuyThiebaut19-Sep-07 9:49
professionalGuyThiebaut19-Sep-07 9:49 
GeneralRe: Comparing FIELD by FIELD in two files Pin
Luc Pattyn19-Sep-07 9:58
sitebuilderLuc Pattyn19-Sep-07 9:58 
QuestionExtra spaces converted to Non Printable (Unicode Replacement Glyph ) character in VB.net office automation Pin
rahul.barik19-Sep-07 3:18
rahul.barik19-Sep-07 3:18 
QuestionFile I/O - Use a data table ? Pin
barney_197219-Sep-07 2:46
barney_197219-Sep-07 2:46 
AnswerRe: File I/O - Use a data table ? Pin
GuyThiebaut19-Sep-07 3:29
professionalGuyThiebaut19-Sep-07 3:29 
Good question.
There are different answers depending on what you want.

If you want ease of programming then a datatable is a good choice. This is because it uses rows and columns with which you are probably familiar.

If you want speed of processing then I would recommend an arraylist.
Arraylists are faster to read and write to, in my experience, than arrays. The catch is that arraylists are not multidimensional.
The good news is that there is a way around this problem i.e. how to represent rows and colums in an arraylist.

I use arraylists in a csv class I created and they whack the pants off arrays when it comes to processing speed.

Alternatively you could use a dataview.
What this does is basically make a view of your table.
So that it contains the same data.
The advantage of a dataview is that you can very easily apply sorts and filters.
Also with a dataview all you basically do is point the dataview object to your table et voila you have another way of looking at your datatable.

I hope this is of some help to you.Smile | :)








You always pass failure on the way to success.

GeneralRe: File I/O - Use a data table ? Pin
barney_197219-Sep-07 3:53
barney_197219-Sep-07 3:53 
QuestionHow to disable the Predefined TextBox Properties Pin
VB 8.019-Sep-07 1:52
VB 8.019-Sep-07 1:52 
Question.GIF file in status bar Pin
ejaz_pk19-Sep-07 1:22
ejaz_pk19-Sep-07 1:22 
AnswerRe: .GIF file in status bar Pin
Guffa19-Sep-07 3:20
Guffa19-Sep-07 3:20 
QuestionlybraVb.dll Pin
Faruzzy19-Sep-07 1:00
Faruzzy19-Sep-07 1:00 
AnswerRe: lybraVb.dll Pin
Dave Kreskowiak19-Sep-07 2:23
mveDave Kreskowiak19-Sep-07 2:23 
QuestionDynamic loading data in crystal report Pin
Mekong River18-Sep-07 23:54
Mekong River18-Sep-07 23:54 
AnswerRe: Dynamic loading data in crystal report Pin
JamesS[C1]25-Sep-07 2:17
JamesS[C1]25-Sep-07 2:17 
QuestionRemoving tables with multiple columns froma aword file [modified] Pin
Prakash_Mishra18-Sep-07 23:48
Prakash_Mishra18-Sep-07 23:48 
QuestionCrystal Report In VB Pin
syibu18-Sep-07 23:47
syibu18-Sep-07 23:47 
AnswerRe: Crystal Report In VB Pin
JamesS[C1]19-Sep-07 3:59
JamesS[C1]19-Sep-07 3:59 
QuestionNeed of code to get used memory space and free memory space in a harddisk.. Pin
Balagurunathan S18-Sep-07 23:17
Balagurunathan S18-Sep-07 23:17 
AnswerRe: Need of code to get used memory space and free memory space in a harddisk.. Pin
Tom Deketelaere19-Sep-07 1:18
professionalTom Deketelaere19-Sep-07 1:18 
Questionreplacing single instance of a substring in a string Pin
Mustafa Ismail Mustafa18-Sep-07 22:01
Mustafa Ismail Mustafa18-Sep-07 22:01 
AnswerRe: replacing single instance of a substring in a string Pin
Mustafa Ismail Mustafa18-Sep-07 22:13
Mustafa Ismail Mustafa18-Sep-07 22:13 
Questiondeploying application. Pin
d_smit18-Sep-07 21:36
d_smit18-Sep-07 21:36 
AnswerRe: deploying application. Pin
GuyThiebaut19-Sep-07 0:18
professionalGuyThiebaut19-Sep-07 0:18 

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.