Changing Data In A Datagrid Control
I'm trying to modify data in a DataGrid control through code. I'm able to read what's currently there, but i can't seem to find the property/method that will let me change the data in a certain cell. I'm guessing it MUST be possible, since the user can do it during runtime. Any help would be greatly appreciated.Thanks
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Datagrid & ADO Data Control
Newbie question. I have created a Datagrid control bound to an ADO Data Control using a particular database account and password at design time. How do I use a different account and password at run time? The datagrid control apparently wants to connect first using the design time account/password before I can change the connection using code. In other languages, data sources can be disconnected at design time. I don't see how this is done with an ADO control.
Any help greatly appreciated.
Datagrid: No Ado Data Control
I am trying to populate a datagrid control without having to bind it to an ado data control.
the data, however, is not being displayed. The recordset is retrieving the records from my database but nothing is being displayed in my datagrid.
Here is my code
dim rsS as adodb.recordset
set rsS=new adodb.recordset
rsS.CursorLocation = adUseClient
rsS.CursorType = adOpenStatic
rsS.LockType = adLockOptimistic
rsS.Open "Select School_ID,School_Name,Address,Telephone from School Order by School_Name", connection
Set dgSchools.DataSource = rsS
Do I have to loop through the recordset and set the datafield property of the datagrid columns to the fields in the recordset?
I thought that by setting the datasource property that would be automatically done.
Tesita
Datagrid & ADo Data Control
I have a lookup window that uses datagrid and ADO data control as the data source. After compiling my application that uses this lookup, and deploy it to the target machine, the lookup window on popup does not display data.
However, when i installed VB6 Disk 1 on the target machine and run my application, the lookup window works.
pls how can i figure out the missing file in my application?
thanks
Changing A Data Control Cursor Type To Clientside
Does anyone know how to change the cursor type for a Data Control to Client Side.
The only options i have in the drop down of the properties are Server Side, Default and ODBC and none of them work.
Here's my problem....... I am getting an "invalid field Data Type" on the following lines of code:
data1.Recordset.AddNew
data1.Recordset.CancelUpdate
Find Or Seek On One Data Control By Changing The Recordsettype
DataBase Access2000 DAO and VB6.
I need a Find dialog box like the one in Access 2000 to do my findingseeking. I am using forms that have a data control of type vbRSTypeTable OR vbRSTypeDynaset.
Is there a way to change the RecordSetType for a data control with bound controls from type vbRSTypeTable to vbRSTypeDynaset so I can do a FIND on fields that are not indexed? And then later change it back to table so that I can do a SEEK on the fields that are indexed? Or vice versa?
If not then I will have to use data controls with type vbRSTypeDynaset and just use the find method
Thanks!
Quote:
Greed is good, greed works.... "Wall Street"
Datagrid,recordset % Ado Data Control
hi, i have a problem with datagrids.
i want to view the result of a query into a datagrid.
i created a recordset(rs) containing the data.
so, i added an ado data control(adodc1) , configured the connection and i wrote:
adodc1. recordsource =rs
after i wrote
set datagrid1.datasource=adodc1
but in the datagrid only the FIRST row of the recordset is shown?
why?
thanks
Inserting Data Using DataGrid Control
On a form, I have a combo box and a data grid.
Based on user's select in the combo box, data grid displays certain data which is supplied by stored procedure.
ComboBox On_LostFocus()
dataGrid.dataSource = rsStoredProc
end ComboBoxSub
Thats how my dataGrid gets it data. I have set the AllowUpdates, AllowInsert, AllowDelete properties of the dataGrid to TRUE. But still there is no additional row on the dataGrid for the user to add data, neither can the user edit or delete.
What is wrong here. Please suggest.
thank you in advance!
Ankeet
DataGrid And ADO Data Control PROBLEMS!
Hi,
I am quite new to database programming in VB.
I have a database that keeps track of different types of accommodations.....and also all the different units that eacy accommodation has.
For example........one accommodation is "Hotel"
and units could be 1, 2, 3, etc
What i want to do is make the program automatically display all the units in a data grid control for the selected type of accommodation.
I've tried doing this...
Adodc2.RecordSource = "SELECT tblUnits.UnitNumber FROM tblUnits WHERE tblUnits.AccTypeID = " & txtAccTypeID.Text
in order to change the data, but this doesnt do anything...the same units are displayd no matter which accommodation type is chosen.
What is the best way to do this?.......any help or advice you can give me would be welcome.
Thanx,
Clint
Data Control & DataGrid Ocx Problem
Hi,
Im using a VB6 Pro SP4 (the latest). Heres the problem:
1. I add Data control and DataGrid control (MSDATGRD.OCX) to the form
2. I connect Data control to Biblio.MDB and set RecordSource to one of the tables (Authors)
3. When I try to set DataSource of DataGrid I get the following error
Error Message:
No compatible data source was found for this control. Please add an OLEDB data source such as Data Enviroment or Microsoft ADO Data Control to the form or project.
I also get this message:
Error Message:
Can't bind this control to Data1. Select a different data source (eq - ADODC1, or DataEnviroment1...)
I would really appreciate your help for I need to use data control & bound it to data grid ocx.
Thanks.
Clear Data From Datagrid Control?
I am use to using the MSHFlexGrid and now since the datagrid is a .NET control and the FlexGrid is a COM control I am using the datagrid now. This is a really basic question. I have a datagrid I add data to from an Excel Doc using OleDb. Once it is filled with the file my program allows you to export the data. What I need is this how do I clear the datagrid when I import data from another Excel doc? There is no DataGrid1.Clear method.
Adding Data In DataGrid Control
Hello Friends,
i am using DataGrid Control and bounded it with database of SQL Server amd adding or updating data from Grid. But the problem is some times it will allow to add or update and sometimes it is not allowing me. I am also selected AddAllowNew property become true.
so what can i do plz reply me
SPPatel
Edited by - sppatel237 on 3/10/2004 7:52:00 PM
Modifying Data In Datagrid Control ?
hi,
I set up my datagrid control based on a command object in a data environment.
Everything displays nicely, except that I can't edit, add or delete anything.
Does anybody know why ?
thanks,
Maggie
Problem Using An ADO Data Control And An ADO Datagrid In Excel.
Hi,
I'm trying to use an ADO Data Control and link a ADO DataGrid to it to be able to browse/update an Access DB Table. Normal in VB6.0 you setup the ADODC and then just assign the Datasource property of the DataGrid to be the ADODC and it works. In Excel there is no Datasource property in the properties window and when I try to do it through code int the Form Initialise event I get the following error 'Method or Data Member not Found'.
Does anybody have any ideas what I'm doing wrong or how you link a DataGrid to an ADODC in Excel?
Thanks,
Phil.
Datagrid Control Does Not Refresh With Data Environment
Dear Friends,
I am facing a problem with DATAGRID IN VISUAL BASIC 6.00.
I am using a DATAENVIRONMENT with a Connection Object that has OneCommand Object.
The command Object uses the Following Parametric SQL Statement.
SELECT * FROM mondet WHERE cntno=?
Pls note that Mondet is a child table with multiple entries in CNTNOfield - (ACCESS Table)
The Datagrid has the following Data Properties (Thru the PropertiesPage)
The Name of The Data Environment is DE1
the Name of the Command Object is COMMAND1
DATAGRID1.DATASOURCE=DE1
DATAGRID1.DATAMEMBER=COMMAND1
The Datagrid refreshes the first time. But when we run the parametricSQL Statement again to create a new
Recordset, a new Recordset is Created (Checked the Recordcount Propertyof RECORDSET in MSGBOX)
but the DATAGRID is not updated. I have Tried "Rebind", "Refresh"Methods etc. but to no avail.
Infact even the "Clearfields" method does not Work after the FirstRecordset is Created.
Can Anyone of You Help Me out. Pls See that the Datagrid works fine(also Refreshes) with a ADODC Control. But I
Need DATAENVIRONMENT control to be used.
Thanx in Advance
Vinay Vekkot
Error 0 On DataGrid Linked With Ado Data Control
Does anyone know why I would get error 0 every time I touch the datagrid
during runtime(ie/update, etc)....Which library(s) do I have to reference to
use the datagrid and the ado data control?
Any help would be appreciated!! Thanks
Sonia
Automation Error (440) With ADO Data Control & DataGrid
Hello -
I am using VB6 against a SQL Server 7 db.
This is a very simple program whereby the datagrid is populated
by Adodc1 without any VB code.
I added a Timer control to refresh the data grid every 10
seconds (Adodc1.Refresh) This works very well.
Problem: The program runs fine, refreshing the grid
periodically.... then after running for several minutes
(seems to always be about 4 - 5 minutes) get the
run-time Automation error (error 440)
The documentation for Error 440 says -" An error occurred
while executing a method"
Well, the only method being executed is the .Refresh
I can only guess that there is a Timeout problem occurring
or the SQL Server db is too busy to respond...?
I took the default values for Connection Timeout etc when I created
the controls.
Has anyone had experience with Automation errors?
Thanks for any help.
John
Insertion Of Data Using Datagrid Control. VB + SQL Server
Hi,
I have a problem in inserting the new record's data in DataGrid control.
I have got 2 tables. One table has a foreign key referring to the primary key of other table. Now records exist in primary key table and I am displaying the foreign key table in the Datagrid control. The fields displayed are partial for I dont want user to view all the fields of the table. Some to the fields get updated later as per the programming logic. But when I insert new record corresponding to the left out fields an error is displayed stating cannot insert null value.
Plz suggest a possible solution.
Unable To Link DataGrid To Data Control
I am using a Jet (Access) database with ADO. I am trying to display the data from my data control in a data grid. When I try adjusting the 'Data Source' property of the data grid, I get the following message "No compatible data source was found for this control. Please add an OLEDB data source such as the Data Environment or Microsoft ADO Data Control to the form or project." I get this message even though my Data Control is already on the same form.
Date Format Using ADO Data Control And DataGrid
When using the DataGrid with the ADO Data control in VB6 to view info from Access 97 databases, all "Date" fields are shown in US format. How do I display dates in UK "dd/mm/yy" format.
(The regional settings in control panel are set correctly for UK dates)
Note: Various Recordsets will have the "Date" field in different field positions.
Updating MS Access Table With ADO Data Control From A Datagrid
Hi,
I'm populating a datagrid with the data of a MS access table using ADO Data Control. If I change the datagrid values, its automatically updating the table contents. Is there any property of the ADO data control, so that only on setting that value, the data grid changes should be reflected in the DB & not otherwise.
regards,
narayan
Datagrid Control, Enter Data Like A Excel Sheet
Hello
I have implemented a datagrid which is connected to a database. I want the user to be able to press the tab key to be able update the cells in the grid, and also be able to select certain cells with the mouse and update them as well.
It is possible to have some code on how to do this.
Many thanks in advance
Steve
Binding A DateTimePicker And/or ListBox To DataGrid To Control/restrict Input Data.
I have a DataGrid control with certain editable columns (some Numeric, some Date/Time fields) for which I would like to control/restrict input data. I want to acheive this by displaying a ListBox control or DateTimePicker control (as appropriate for that column) when a user clicks on the button in the cell.
I can display such controls external to the grid on the Button_Click event of the grid but I would rather have these pickers intrinsic to the grid...sure we've seen these all over the place?
Thanks in advance
Changing Heading Name On Datagrid
I have created a master/grid form where the master is based on one table and the grid based on another. When the form is in run mode, the column headings on the grid display the field names. I want to change the heading name but when I access the grid properties it only displays the fields from the parent form. How do I change the headings name? Thanks for help in advance.
DataGrid Not Changing On New Employee
I’m using a datagrid to load two Access tables. One of the tables is for employee and one for payroll. I can load the datagrid with data for the first employee record, but I am having a problem when I change employees, the Payroll data doesn’t change.
I have a relationship between the two file, and I think my problem may be with it.
Name of the Data Relation = drtblEmployeestblPayroll
Here is the code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim pbndTemp As Binding
Dim dgtsPayroll As New DataGridTableStyle
Dim pintEmployees As Integer
Dim dtEmployee As DataTable
' Populate the DataSet using the two DataAdapter control instances.
odbdaEmployees.Fill(DsPayroll1)
odbdaPayroll.Fill(DsPayroll1)
' Setup the DataGridTableStyle object.
dgtsPayroll.AlternatingBackColor = Color.LightBlue
dgtsPayroll.GridLineColor = Color.Silver
dgtsPayroll.GridLineStyle = DataGridLineStyle.Solid
dgtsPayroll.SelectionForeColor = Color.Blue
dgtsPayroll.SelectionBackColor = Color.Silver
' Map the DataGridTableStyle object to the table named tblTransactions
' appearing in the DataGrid control instance.
dgtsPayroll.MappingName = _
DsPayroll1.tblPayroll.TableName
dgPayInfo.TableStyles.Add(dgtsPayroll)
' Set up the GridColumnStyles after adding the DataGridTableStyle. Note that
' the GridColumnStyle collection elements are automatically added to the
' collection.
'********************
dgtsPayroll.GridColumnStyles(0).HeaderText = "Employee ID"
dgtsPayroll.GridColumnStyles(0).Alignment = _
HorizontalAlignment.Center
dgtsPayroll.GridColumnStyles(1).HeaderText = "Payroll ID"
dgtsPayroll.GridColumnStyles(1).Alignment = _
HorizontalAlignment.Center
dgtsPayroll.GridColumnStyles(2).HeaderText = "Pay Date"
dgtsPayroll.GridColumnStyles(2).Alignment = _
HorizontalAlignment.Center
dgtsPayroll.GridColumnStyles(3).HeaderText = "Gross Pay"
dgtsPayroll.GridColumnStyles(3).Alignment = _
HorizontalAlignment.Right
dgtsPayroll.GridColumnStyles(4).HeaderText = "Withholding"
dgtsPayroll.GridColumnStyles(4).Alignment = _
HorizontalAlignment.Left
dgtsPayroll.GridColumnStyles(5).HeaderText = "Net Pay"
dgtsPayroll.GridColumnStyles(5).Alignment = _
HorizontalAlignment.Left
'*************************
' Set dtEmployee to the DataTable in the DataSet
'*********count Employees *************
'dtEmployee = DsPayroll1.tblEmployees
'pintEmployees = dtEmployee.Rows.Count
'lblTrans.Text = pintEmployees.ToString
End Sub
Private Sub lstEmployees_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lstEmployees.SelectedIndexChanged
Dim drArray() As DataRow
Dim pintTransactions As Integer
Dim pintCount As Integer
Dim pdblTotGrossP As Double
Dim pdblTotWith As Double
Dim pdblTotNet As Double
' Get an array of DataRow objects for the currently selected customer.
' DsCustomersTransactionsBind11.tblCustomers gives us a DataTable. As we want the
' current row in the DataTable, lstCustomers.SelectedIndex is used to provide
' a reference to a single DataRow object. GetChildRows gets the child rows
' for a single DataRow object. The argument to GetChildRows contains the name of
' the DataRelation you created by the XML Designer. Thus, drArray contains
' an array of DataRow objects.
drArray = DsPayroll1.tblEmployees(lstEmployees.SelectedIndex). _
GetChildRows("drtblEmployeestblPayroll")
' Get the number of transactions for the current customer. This is the number of
' elements in the DataRow array plus 1. Display the result in a label.
pintTransactions = drArray.GetUpperBound(0) + 1
lblTrans.Text = pintTransactions.ToString
' Examine the array of DataRow objects.
For pintCount = 0 To drArray.GetUpperBound(0)
' Check if the field named fldTransactionType contains the string Debit or
' Credit, and then update the correct accumulator.
pdblTotGrossP += drArray(pintCount).Item("fldGrossPay")
pdblTotWith += drArray(pintCount).Item("fldwithholding")
pdblTotNet += drArray(pintCount).Item("fldnetPay")
Next
' Finally, display the results.
lblTotalGrossP.Text = pdblTotGrossP.ToString("$##,###.00")
lblTotWHolding.Text = pdblTotWith.ToString("$##,###.00")
lblTotNetPay.Text = pdblTotNet.ToString("$##,###.00")
End Sub
Changing A Datagrid's Colum Color
Hi. I have a datagrid on a form with 6 colums. I want to change the Current Amount Column's text color to BLUE,and the Payment Column color to red?How do i do this?
Changing Column Width In DataGrid
The following code will not work but I'm not sure why:
Code:
Private Sub Form_Load()
With DataGrid1
.Columns(1).Width = 3000
.Columns(2).Width = 4500
.Columns(3).Width = 4500
.Columns(4).Width = 5000
.Columns(5).Width = 6000
.Columns(6).Width = 4500
.Columns(7).Width = 5000
End With
End Sub
Yes, I do have a Datagrid with the name DataGrid1
I do have 7 columns but for some reason I get a Subscript out of range run-time error 9 at .Columns(2).Width???
Not sure...why? Please help
Changing Font Colour Of Datagrid
Is there a way that I can change an individual cell colour in a datagrid depending on a criteria.
I have some dates in a datagrid and I want any dates that are less than the system date to be red instead of black so that it stands out to the user? I don't know if this is possible and how i do it.
Datagrid And Column Changing In Code
Does anyone know why sometimes when I change my column in a datagrid with code the column I am changing to takes on the value of the previous column?
For example the user is in column 7. The value that is in column 7 is "Test". Now say I change the column to 9 and the value in column 9 is "Test2". Why does column 9 all of the sudden take on the value of what was in column 7 and "Test2" becomes "Test" now? It does not happen always, but it happens often enough that it is becoming a real pain. Thanks if anyone can give me any advice on this.
Changing Datagrid Header Color?
Hi,
I have set a recordset to my datagrid and I want to change the color of the header. But.....
in my datagrid I can change the header.font.name and header.font.size but how can I set the header.forecolor?
Anyone knows a solution?
Must a use another control instead of the datagrid? (remember: I want to use my recordset)
Any help appreciated, thanks,
Fedor
Refresh DataGrid(Microsoft DataGrid Control 6.0)
Hi,
I am having a problem refreshing the datagrid in the following scenario:
I have Form1 with ADODC control and DataGrid(Microsoft DataGrid Control 6.0). The grid (is used to display employee records) contains 5 columns (for example Office telephone number) . On clicking of a row on the grid the details window opens up. This window is used to update the employee information. On saving the employee record if Office telephone number is changed then the datagrid should be refreshed with latest data of the record. The refresh is done using the following command:
msgbox "activate"
adodcobject.refresh
datagridobject.refresh.
If the message box is commented then the refresh statements do not get executed. I need a solution for that.
Regards,
Rashmi.
Changing Back Color Datagrid Record
Hello all,
For a listbox we can't change the backcolor for a single line, we are trying it for a datagrid. Can we change for a single record in a datagrid (vb6) the backcolor? Can someone give us script?
Nice regards,
Michell.
Changing The Font Attributes In A Datagrid Column
I am using a datagrid in a VB6 program to display data from a SQL 7.0 table. I want the data in one column only to display with the text underlined; the help says (and I quote)"Each column of the DataGrid control has its own font, border, word wrap, and other attributes that can be set without regard to other columns" - but how? The column object doesn't seem to have a font property ..It's driving me mad, any help gratefully received!
DATAGRID Selecting Rows And Changing Value Of A Cell
Hello all. Well, my application is comming along quickly, with just a few quirks here and there, this is another.
I have a DBGrid control on my form, the DBGrid is connected to my database, and I want to be able to update a value of a cell that is in the selected row. The selected row will have the current system date entered into a date cell of the selected row. My problem is; should I use check boxes to select the rows that are to be updated, or just have the user select the row itself? my concern is if the user changes thier mind, and dosn't want to select that row. I've read about using a for loop to do this, but I can't seem to make it work:
Code:
Private Sub dbGridReturnDwg_Click()
intCount = dbGridReturnDwg.SelBookmarks.Count - 1
ReDim ArrSelBK(intCount)
For i = 0 To intCount
ArrSelBK(i) = dbGridReturnDwg.SelBookmarks(i)
If Rs.Fields("issuane.return_date") = "" Then
newNumIssued = Rs.Fields("issuance.num_issued")
newNumIssued = newNumIssued - 1 'subtracts 1 from the number of times this drawing has been issued
Rs.Fields("issuance.return_date") = TodayDate
Rs.Fields("issuance.num_issued") = newNumIssued
Else 'if the date field is not empty, the drawing must have already been returned
MsgBox "The drawing has already been returned!"
dbGridReturnDwg.SelBookmarks.Remove (i) 'this statement may not be needed
End If
Next i
End Sub
Something tells me I need to add the index (i) to the Rs statement i.e.
Code:
Rs.Fields(i,"issuance.return.date") = TodayDate
Detect DataGrid Column Width Changing In VB.Net
Hi, Everyone
I hope to know when the width of a datagrid column is changed.
In VB6, we have this: DataGrid_ColResize(ByVal ColIndex As Integer, Cancel As Integer)
In .Net, we don't have "ColResize" event any more. I found that when you changes the column width, click evnet is fired. However, click event is too general. It will also be fired when you select a row or click the title of a column.
Any idea ?
Peter
Problem With Changing The Type Of A Column In A Datagrid
Hi,
I'm using a Datagrid that is feeding on an access database. I got a column that have the path of an item and I want to show a yes or no value in my datagrid. Yes if there's a path and no if there's no path. I dont want to change the value in my database, so I just want to change the visual effect on my datagrid. Best thing I found was to change the type of my column by a boolean so if the row was empty, the false value would appear and the true value would appear if not empty ! Problem is that i get #ERROR if there's a path inside the column...
here's the code for the type changing :
Dim fmt as new StdDataFormat
fmt.Type = fmtBoolean
fmt.FalseValue = NO
fmt.NullValue = NO
fmt.TrueValue = YES
Set dgListUsten.Columns(6).DataFormat = fmt
Set fmt = Nothing
dgListUsten is the datagrid
I tried to make a loop with an if so that I can change the value in the column for each row but the problem is that I change the value in my database and it's something that I don't want to do... Is-there a way to put an error handling method so that the #ERROR would become a yes ?
Anyhelp would be appreciated,
thanks !
CB.NET DataGrid - Stopping Users Changing Column Widths
I have a VB.NET 2003 application using datagrids and need to stop usersfrom
changing the widths of columns by grabbing header borders and draggingthem left or right.
I cant find any property that stops this.
Can anyone suggest a solution.
Rob
Changing Data Format And Create Other, Alterative Data
I have the following text formatted numeric data in column A
A
------
00
010100
0010
1025
0000
1025
010
020
05
000
510
140510
0010
Here's the code for the above
-----------------------------------------------------------------------
Set rng = Range([BH4], [A65536].End(xlUp)(1, 60))
Set CheckboxRange = [A1:BG1].SpecialCells(xlCellTypeConstants, 2)
For Each ThisCell In CheckboxRange
s = s & "&" & ThisCell(4).Address(False, False)
Next ThisCell
Application.ScreenUpdating = False
rng.ClearContents
[BH4] = "=" & Mid(s, 2, Len(s) - 1)
[BH4].Copy rng
rng.Copy
rng.PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
Application.ScreenUpdating = True
------------------------------------------------------------------------
I need to add a vb code to the above that :
When a type e.g. an "X" in the cell A1 it will NOT write the column's A results but it will
format column's A data to numbers and then it will write a column B using the condition:
If the cell in column A is "> 0" then the result will be 1 else it will be 0.
This is what i ll get
A B
-------------
00 0
010100 1
0010 1
1025 1
0000 0
1025 1
010 1
020 1
05 1
000 0
510 1
140510 1
0010 1
------------------------------------------------------------------------Otherwise when the cell is null (without the "X") the result will come from the code
i wrote and i ll get column's A result
Thanks in advance
****************************
Stathis
Patras Greece
How To Transfer Data In A Datagrid To Another Datagrid..?
Please help me in my project so that i can pass..
Im a freashman student in high school,
Im making a simple Computer Hardware Inventory system,
Datagrid1:
Item Description Serial Number Date Recorded
Mouse Optical SN-2007 03/27/2007
Datagrid2:
Item Description Serial Number Date Recorded
I want my data in datagrid1 will transfer to Datagrid2
please solve my problem..
youre help, is a big help to me!
Thank you in advance!! Godspeed!!
How To Copy Data From Datagrid Another Datagrid?
my problem is like that---
now i have 2 datagrid---datagrid1 & datagrid2
and 2 adodc-----adodc1 & adodc2
i have build some text that link with adodc1,i wanna build a command button that when i press it then the data from the text will copy to datagrid 2 and i can save it.
can any 1 show me the way?
thanks
How Do I Get This Information Into A Datagrid Control (datagrid)???
I have this information that i want to call out of a file and put into a data grid.
"AL","Alabama"
"AK","Alaska"
"AS","American Samoa"
"AZ","Arizona"
"AR","Arkanzas"
"CA","California"
"CZ","Canal Zone"
"CO","Colorado"
"CT","Connecticut"
"DE","Deleware"
"DC","District of Columbia"
"FL","Florida"
"GA","Georgia"
"GU","Guam"
"HI","Hawaii"
"ID","Idaho"
"IL","Illinois"
"IN","Indiana"
"IA","Iowa"
"KS","Kansas"
"KY","Kentucky"
"LA","Louisiana"
"ME","Maine"
"MD","Maryland"
"MA","Massachusetts"
"MI","Michigan"
"MN","Minnesota"
"MS","Mississippi"
"MO","Missouri"
"MT","Montana"
"NE","Nebraska"
"NV","Nevada"
"NH","New Hampshire"
"NJ","New Jersey"
"NM","New Mexico"
"NY","New York"
"NC","North Carolina"
"ND","North Dakota"
"OH","Ohio"
"OK","Oklahoma"
"OR","Oregon"
"PA","Pennsylvania"
"PR","Puerto Rico"
"RI","Rhode Island"
"SC","South Carolina"
"SD","South Dakota"
"TN","Tennessee"
"TX","Texas"
"TT","Trust Territories"
"UT","Utah"
"VT","Vermont"
"VA","Virginia"
"VI","Virgin Islands"
"WA","Washington"
"WV","West Virginia"
"WI","Wisconsin"
"WY","Wyoming"
And i want to get it into a data grid.
How do i do this??????
|