473,385 Members | 1,863 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Binding an Array to a Combo Box

Perhaps I have the wrong construct, or misunderstand arrays in vb (2003)....
I've loaded a two-dimensional array (168 by 28) into memory as AcctArray.
{Dim AcctArray (500,28) as string...}

The AcctArray is loaded from a Quickbooks table, so there's no intrinsic
dataset to assign as datasource....

I want to have a combo table (or list table or whatever), currently named
cbAccounts, that can scroll through and maybe select items in the array. I
don't want to display all elements, just columns 1,2,6, and 13...

How do I construct this? A combo box is supposed to have as its datasource
an "array", but I can't seem to accomplish it. I can do

cbAccounts.Items.Add(AcctArray(j,1) & " " & AcctArray(j,2) & " " &
Acctarray(j,6) & " " & AcctArray(j,13))

but that doesn't accomplish my objectives...
Can someone give me a nudge?

Thanx in advance

--
Jim Shaffer
Nov 21 '05 #1
4 23389
You're on the right track. The datasource must implement IList.

As you concatenate the items you want to display from the array, use a loop
to add each resulting string to an ArrayList.

Then set the Combobox datasource to the arraylist.

When you select an item from the dropdown, the selectedindex property will
correspond to the second dimension index of your original array, assuming you
use each item in the original array.

You might also look into the displaymember and valuemember properties of the
ComboBox. If you wanted to use them you might use a Datatable instead of an
ArrayList. You would then assign those two properties to the appropriate
fields. This approach allows you to use the SelectedValue property of the
ComboBox.

www.charlesfarriersoftware.com

"Jim Shaffer" wrote:
Perhaps I have the wrong construct, or misunderstand arrays in vb (2003)....
I've loaded a two-dimensional array (168 by 28) into memory as AcctArray.
{Dim AcctArray (500,28) as string...}

The AcctArray is loaded from a Quickbooks table, so there's no intrinsic
dataset to assign as datasource....

I want to have a combo table (or list table or whatever), currently named
cbAccounts, that can scroll through and maybe select items in the array. I
don't want to display all elements, just columns 1,2,6, and 13...

How do I construct this? A combo box is supposed to have as its datasource
an "array", but I can't seem to accomplish it. I can do

cbAccounts.Items.Add(AcctArray(j,1) & " " & AcctArray(j,2) & " " &
Acctarray(j,6) & " " & AcctArray(j,13))

but that doesn't accomplish my objectives...
Can someone give me a nudge?

Thanx in advance

--
Jim Shaffer

Nov 21 '05 #2
Jim,

That usefull however terrible combobox have 2 methods for binding and one
method to add items.

It is the adding of items
the binding from the textboxpart (what is not your option)
the binding using the datasource to an Ilist array

You go now for adding items from the array to the arraylist from the
combobox.

That is not directly binding. What you can do is creating an array with
objects. Those you can bind using the datasource to the combobox. You can
get the information by casting it to a datarowview.

Because this I find more work than needed, I make in this kind of situations
just a datatable and bind it using the defaultview to that combobox. That
cost at least 10 times less time to do.

Just my thought,

Cor
Nov 21 '05 #3
Jim,
In addition to the other comments.

| How do I construct this? A combo box is supposed to have as its datasource
| an "array", but I can't seem to accomplish it. I can do
I've bound to single dimension arrays without any problems, I have not tried
binding to either 2 dimensional arrays or jagged/ragged arrays before.

I will see if I can find any information on binding to a 2 dimensional
array.

In the meantime, you could always convert the array into a DataTable.
Something like:

Const rows As Integer = 0
Const columns As Integer = 1

Dim table As DataTable

For rowIndex As Integer = acctArray.GetLowerBound(rows) To
acctArray.GetUpperBound(rows)
Dim row As DataRow = table.NewRow
For columnIndex As Integer = acctArray.GetLowerBound(columns) To
acctArray.GetUpperBound(columns)
row(columnIndex) = acctArray(rowindex, columnindex)
Next
table.Rows.Add(row)
Next

Which assumes that "table" has the same number of columns as your array.

Hope this helps
Jay

"Jim Shaffer" <us****@shafferassoc.com> wrote in message
news:jO********************@comcast.com...
| Perhaps I have the wrong construct, or misunderstand arrays in vb
(2003)....
| I've loaded a two-dimensional array (168 by 28) into memory as AcctArray.
| {Dim AcctArray (500,28) as string...}
|
| The AcctArray is loaded from a Quickbooks table, so there's no intrinsic
| dataset to assign as datasource....
|
| I want to have a combo table (or list table or whatever), currently named
| cbAccounts, that can scroll through and maybe select items in the array. I
| don't want to display all elements, just columns 1,2,6, and 13...
|
| How do I construct this? A combo box is supposed to have as its datasource
| an "array", but I can't seem to accomplish it. I can do
|
| cbAccounts.Items.Add(AcctArray(j,1) & " " & AcctArray(j,2) & " " &
| Acctarray(j,6) & " " & AcctArray(j,13))
|
| but that doesn't accomplish my objectives...
|
|
| Can someone give me a nudge?
|
| Thanx in advance
|
| --
| Jim Shaffer
|
|
Nov 21 '05 #4
Jim,
I was playing with this a little.

Is this Windows Forms or Web Forms?

In Windows Forms, you can bind a list control (ListBox, ComboBox, DataGrid)
to a one-dimensional array, however you cannot bind to a two-dimensional
array. Which is understandable, as the list controls use IList to support
binding. Array implements IList. If you use IList from a one-dimensional
array you get the list of numbers. If you use IList from a two-dimensional
array you get a single list of numbers & not the rows & columns...

Try the following:

Dim values(,) As Integer = {{11, 12}, {21, 22}, {31, 32}}
Dim list As IList = values
For Each item As Object In list
Debug.WriteLine(item)
Next

What values are printed?

The short of it you cannot bind to a two-dimensional array. I would
recommend you convert the two-dimensional array to either a one-dimensional
array, an ArrayList or a DataTable...

Hope this helps
Jay
"Jim Shaffer" <us****@shafferassoc.com> wrote in message
news:jO********************@comcast.com...
| Perhaps I have the wrong construct, or misunderstand arrays in vb
(2003)....
| I've loaded a two-dimensional array (168 by 28) into memory as AcctArray.
| {Dim AcctArray (500,28) as string...}
|
| The AcctArray is loaded from a Quickbooks table, so there's no intrinsic
| dataset to assign as datasource....
|
| I want to have a combo table (or list table or whatever), currently named
| cbAccounts, that can scroll through and maybe select items in the array. I
| don't want to display all elements, just columns 1,2,6, and 13...
|
| How do I construct this? A combo box is supposed to have as its datasource
| an "array", but I can't seem to accomplish it. I can do
|
| cbAccounts.Items.Add(AcctArray(j,1) & " " & AcctArray(j,2) & " " &
| Acctarray(j,6) & " " & AcctArray(j,13))
|
| but that doesn't accomplish my objectives...
|
|
| Can someone give me a nudge?
|
| Thanx in advance
|
| --
| Jim Shaffer
|
|
Nov 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Rod | last post by:
I have an Access database with the 3 fields in , , I create a dataset and bind a form to it, no problem. I now want to put in a combo box to search on name. Now I can do this fine if I just...
3
by: Shravan | last post by:
Hi, How can I bind DataRow array to ComboBox. I tried setting DataSource -> DataRow Array DisplayMember -> ColumnName But it was showing "System.Data.DataRow" for every item in the...
2
by: SoftWhiteDelgiht | last post by:
Help me. I am obviously stupid! :-) I am just starting out with VB.Net and am trying to do a simple master/detail form with a SqlServer backend. I have created a combo box which is to populate with...
0
by: Larry Serflaten | last post by:
I am not sure how many are aware of this sort of data binding, but as it is new to many (classic) VB developers I thought I would post this once just to let people know of its availablility. ...
0
by: JSantora | last post by:
Essentially, InsertAT is broken! For the past couple of hours, I've been getting this "Parameter name: '-2147483550' is not a valid value for 'index'." error. Apparently, its caused by having...
0
by: Roger Odermatt | last post by:
Hello I have binding a class to a DataGridView and this class have a property from another class and this i want binding to a DataGridViewComboBoxColumn. So when i change a item in the Combo and...
1
by: Monty M. | last post by:
Does anyone know how to perform two way data binding between a combo box and a listview. The listview is bound to a dataset table in code: Binding Bind = new Binding(); DataTable dt;...
3
by: Max | last post by:
Hello, I made a windows form with a combo box and 4 text boxes. All 5 objects should get their data from a data set which is populated in the form load method. The combo box has item ids. When...
10
by: =?Utf-8?B?UiBSZXllcw==?= | last post by:
Hi, Problem: How can I databind (or put) a SqlServer query's row return of 115,000 items into a ComboBox quickly? Not much longer than a matter of seconds, that is... Scenario: I am...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.