Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Tom McLaughlin #1
DataBinding to a Sequential File
I am new to vb.net and I am running into problems understanding
DataBinding and its concept. The only examples I find are always
talk about Web design, I only want to use this data on my
standalone computer. So my question is:
I have a sequential file that contains data, is there a way to
load this data into a DataGrid control?
If the answer is yes, then how do I accomplish this?
I am using vb.net the standard version 2002.
Thanks
Tom
Tom McLaughlin Guest
-
DataGrid Custom Column Error when DataBinding "does not contain a definition for 'DataBinding'"
I am creating a custom column that inherits from DataColumnGrid. When I attempt Databind to a property of the custom column, I get the the error: ... -
sequential functions?
I'm trying to make one function go right after another function finishes. For example, say I have an EaseTo function (which would make an MC ease to... -
Create Sequential Numbers
I have an imported database with a number field which is now empty. I would like to populate this field with sequential numbers to use for... -
File names with sequential numbering
I have been sent a large number of files with descriptive file names. I would like to rename these files with a filename of "Prefix + sequential... -
How to add a sequential number to a form
In article <bel3dj$g6i$1@ftp.curtin.edu.au>, "gwmbox" <gregatwork@NOSPAMPLEASEhotmail.com> wrote: guess noone else is gonna answer this, so... -
Jack Peacock #2
Re: DataBinding to a Sequential File
"Tom McLaughlin" <tbmcl@cwnet.com> wrote in message
news:uvTam0o8DHA.1936@TK2MSFTNGP12.phx.gbl...Is your sequential file structured? Comma delimited, tab delimited, or> I have a sequential file that contains data, is there a way to
> load this data into a DataGrid control?
>
> If the answer is yes, then how do I accomplish this?
>
fixed length fields in every line? If so you might be able to use the MS
Text ODBC driver to read in your file using a DataConnector for the ODBC
driver, then fill the DataSet and bind it to the DataGrid.
If your text is unstructured you'll have to set up a StreamReader to read
the file and parse the lines of characters into rows and columns in a
DataTable, then bind the DataTable to the DataGrid.
Jack Peacock
Jack Peacock Guest



Reply With Quote

