﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>StrataFrame Forum » StrataFrame Application Framework - V1 » WinForms (How do I?)  » Access ComboBox internal data values</title><generator>InstantForum 2017-1 Final</generator><description>StrataFrame Forum</description><link>http://forum.strataframe.net/</link><webMaster>StrataFrame Forum</webMaster><lastBuildDate>Tue, 09 Jun 2026 09:27:54 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19602.aspx</link><description>Thanks!</description><pubDate>Mon, 22 Sep 2008 15:53:39 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19535.aspx</link><description>When using a ComboBox to select a lookup value, sometimes, you need to update more than one field in the form with values from the lookup.&lt;/P&gt;&lt;P&gt;Is there a way to access the values of the data in the Internal Combobox BO? or should we just use the PK field returned by the BindingField to look for the data again manually?</description><pubDate>Mon, 22 Sep 2008 15:53:39 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19600.aspx</link><description>They won't be the name of the columns in the combo box.&amp;nbsp; There will be 2 different columns (just put a break point in your code and look at the columns).&amp;nbsp; There will be a display and a value column (I think) but it gives you the contents of the combo.&amp;nbsp; The BO that was used to generate the contents of the BO is long gone by this point, so if you want to get back to that you will have to manually populate your own combo.</description><pubDate>Mon, 22 Sep 2008 15:46:05 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19594.aspx</link><description>I hate to keep coming back with this, but it is not finding any of the columns I setup in the combox.&lt;/P&gt;&lt;P&gt;[code]CType(Me.cboItemName.DataSource, DataTable).Rows(Me.cboItemName.SelectedIndex).&lt;STRONG&gt;Item("ItemPrice")&lt;/STRONG&gt;[/code]&lt;/P&gt;&lt;P&gt;Here is the DataTable which only shows 3 columns and the column I would like to see "ItemPrice" its value is in the DropDown column:&lt;/P&gt;&lt;P&gt;&lt;IMG src="http://forum.strataframe.net/Uploads/Images/041c9ff3-7c85-477b-83a5-31cd.png"&gt;&lt;/P&gt;&lt;P&gt;I already implemented the method of using another BO for lookup, but if this can work, then it will be easier to maintain and re-use in other forms.</description><pubDate>Mon, 22 Sep 2008 13:47:28 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19593.aspx</link><description>Sorry I was going quickly and didn't totally flesh out the properties.&amp;nbsp; It is just a data table so it would look like this:&lt;/P&gt;&lt;P&gt;[codesnippet]CType(MyCombo.DataSource, DataTable).Rows(MyCombo.SelectedIndex).Items("MyField")[/codesnippet]</description><pubDate>Mon, 22 Sep 2008 13:14:09 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19592.aspx</link><description>[quote][b]Trent L. Taylor (09/22/2008)[/b][hr]You don't need access to the internal BO.&amp;nbsp; The internal BO is dead and gone once the combo is loaded.&amp;nbsp; But you have everything that you need right there in the data source.&amp;nbsp; When the BO is created and comes back, it is just executing the fill, using the parms specified, and the settings a DataTable to the DataSource of the combo.&amp;nbsp; So if you want to get to the datatable, just do this:&lt;P&gt;[codesnippet]CType(MyCombo.DataSource, DataTable).Item("MyField")[/codesnippet][/quote]&lt;P&gt;Hi Trent,&lt;P&gt;Thanks for the info, but when testing your code above, I got an error that there is not Item property.&amp;nbsp; I have tried several ways to get access to any of the field values in the combo, but none worked.&lt;P&gt;Could you&amp;nbsp; please post the correct syntax to reference the combo field values?</description><pubDate>Mon, 22 Sep 2008 12:45:37 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19579.aspx</link><description>You don't need access to the internal BO.&amp;nbsp; The internal BO is dead and gone once the combo is loaded.&amp;nbsp; But you have everything that you need right there in the data source.&amp;nbsp; When the BO is created and comes back, it is just executing the fill, using the parms specified, and the settings a DataTable to the DataSource of the combo.&amp;nbsp; So if you want to get to the datatable, just do this:&lt;P&gt;[codesnippet]CType(MyCombo.DataSource, DataTable).Item("MyField")[/codesnippet]</description><pubDate>Mon, 22 Sep 2008 09:11:48 GMT</pubDate><dc:creator>Trent L. Taylor</dc:creator></item><item><title>RE: Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19577.aspx</link><description>[quote][b]Greg McGuffey (09/19/2008)[/b][hr]If I recall correctly, that BO is created and destroyed during the fill. It isn't persisted at all. However, that is the beauty of the CopyDataFrom method, when you need to persist the data for other reasons! :D[/quote]&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;I finally had the chance to play with this, even though I have done this a lot of time with the listviews and like you said, it does work nicely, but it would do a very good enhancement to get access to the internal combobox BO.&amp;nbsp; &lt;/P&gt;&lt;P&gt;Anyway here is the code I am using from the 2 comboboxes to illustrate this functionality:&lt;/P&gt;&lt;P&gt;[codesnippet][code]&lt;FONT size=2&gt;&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Private&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Sub&lt;/FONT&gt;&lt;FONT size=2&gt; cboItemType_SelectedIndexChanged(&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;ByVal&lt;/FONT&gt;&lt;FONT size=2&gt; sender &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;FONT size=2&gt; System.Object, &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;ByVal&lt;/FONT&gt;&lt;FONT size=2&gt; e &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;FONT size=2&gt; System.EventArgs) &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Handles&lt;/FONT&gt;&lt;FONT size=2&gt; cboItemType.SelectedIndexChanged&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; '-- Filter the cboItemName combobox data with the following parameters:&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Pass the PrimaryBO EditingState to filter out Active records if needed.&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' The name of the Inactive Status field&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' The ItemType value&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#008000 size=2&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' And the Appliance used.&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.BizItems_Lookup.Clear()&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.BizItems_Lookup.FillByActiveRecords(&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.bizSC_AppliancesItems1.EditingState, &lt;/FONT&gt;&lt;FONT color=#a31515 size=2&gt;"ItemIsInactive"&lt;/FONT&gt;&lt;FONT size=2&gt;, &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.bizSC_AppliancesItems1.ItemType, &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.BizSC_Appliances1.FK_Appliances)&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.cboItemName.Requery()&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;End&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Sub&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color=#0000ff size=2&gt;&amp;nbsp;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Private&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Sub&lt;/FONT&gt;&lt;FONT size=2&gt; cboItemName_ListPopulating(&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;ByVal&lt;/FONT&gt;&lt;FONT size=2&gt; e &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;FONT size=2&gt; MicroFour.StrataFrame.UI.ListPopulatingEventArgs) &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Handles&lt;/FONT&gt;&lt;FONT size=2&gt; cboItemName.ListPopulating&lt;/P&gt;&lt;P&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;e.Parameters(0).Value = &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.BizItems_Lookup&lt;/P&gt;&lt;P&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;e.Parameters(1).Value = MicroFour.StrataFrame.Business.BusinessCloneDataType.ClearAndFillFromDefaultView&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;End&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Sub&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color=#0000ff size=2&gt;&amp;nbsp;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Private&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Sub&lt;/FONT&gt;&lt;FONT size=2&gt; cboItemName_DropDown(&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;ByVal&lt;/FONT&gt;&lt;FONT size=2&gt; sender &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;FONT size=2&gt; System.Object, &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;ByVal&lt;/FONT&gt;&lt;FONT size=2&gt; e &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;FONT size=2&gt; System.EventArgs) &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Handles&lt;/FONT&gt;&lt;FONT size=2&gt; cboItemName.DropDown&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;If&lt;/FONT&gt;&lt;FONT size=2&gt; bizSC_AppliancesItems1.Count &amp;gt; 0 &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Then&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.cboItemName.Requery()&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;Else&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.cboItemName.Items.Clear()&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;End&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;If&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;End&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Sub&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color=#0000ff size=2&gt;&amp;nbsp;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Private&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Sub&lt;/FONT&gt;&lt;FONT size=2&gt; cboItemName_SelectedIndexChanged(&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;ByVal&lt;/FONT&gt;&lt;FONT size=2&gt; sender &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;FONT size=2&gt; System.Object, &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;ByVal&lt;/FONT&gt;&lt;FONT size=2&gt; e &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;As&lt;/FONT&gt;&lt;FONT size=2&gt; System.EventArgs) &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Handles&lt;/FONT&gt;&lt;FONT size=2&gt; cboItemName.SelectedIndexChanged&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;If&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.BizItems_Lookup.Count &amp;gt; 0 &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Then&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;If&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.BizItems_Lookup.SeekToPrimaryKey(&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.bizSC_AppliancesItems1.FK_Items) &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Then&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.bizSC_AppliancesItems1.ItemPrice = &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Me&lt;/FONT&gt;&lt;FONT size=2&gt;.BizItems_Lookup.ItemPrice&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;End&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;If&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;&lt;FONT color=#008000&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/FONT&gt;End&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;If&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size=2&gt;&lt;P&gt;&lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;End&lt;/FONT&gt;&lt;FONT size=2&gt; &lt;/FONT&gt;&lt;FONT color=#0000ff size=2&gt;Sub&lt;/P&gt;&lt;P&gt;&lt;/FONT&gt;[/code][/codesnippet]</description><pubDate>Sun, 21 Sep 2008 20:57:17 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19553.aspx</link><description>If I recall correctly, that BO is created and destroyed during the fill. It isn't persisted at all.  However, that is the beauty of the CopyDataFrom method, when you need to persist the data for other reasons! :D</description><pubDate>Fri, 19 Sep 2008 12:43:23 GMT</pubDate><dc:creator>Greg McGuffey</dc:creator></item><item><title>RE: Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19552.aspx</link><description>Hi Greg,&lt;/P&gt;&lt;P&gt;Thanks, it does make sense, even though it would be nice to have access to the internal BO used by the combobox to get other columns values.</description><pubDate>Fri, 19 Sep 2008 12:33:23 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19550.aspx</link><description>Another idea might be to use a form level BO that would hold the data needed to both fill the combo and to also provide the values for your other needs.  You'd then fill the BO at the appropriate time and use CopyDataFrom method to fill the combo.  This would allow you to put only the data needed in the combo for display but still have any data required (in the BO) for other uses. When the user selects a value, you'd just SeekToPrimaryKey to get the other values.&lt;br&gt;
&lt;br&gt;
If I'm remembering this correctly, if the combo is filled via a BO method, then the items are DataRowView objects, with just two columns, display and value.  You could probably figure out how to parse a multi-column combo, but seems like a lot of work when you could just be using a single BO to fill the combo and get the other values you need.  In any case, this is what I've done in similar situations.&lt;br&gt;
&lt;br&gt;
Hope that helps!</description><pubDate>Fri, 19 Sep 2008 12:17:32 GMT</pubDate><dc:creator>Greg McGuffey</dc:creator></item><item><title>RE: Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19540.aspx</link><description>Thanks Aaron,&lt;/P&gt;&lt;P&gt;I will try that.&amp;nbsp; I know i can create an Escalar method to get the value, but since the data is already in the combo, I don't want to do another trip to the data to get the same value.</description><pubDate>Fri, 19 Sep 2008 07:57:36 GMT</pubDate><dc:creator>Edhy Rijo</dc:creator></item><item><title>RE: Access ComboBox internal data values</title><link>http://forum.strataframe.net/FindPost19538.aspx</link><description>If the values you want to update are listed in the combobox, you should be able to access them through the combobox's Items collection. SelectedIndex will give you a pointer to the current item in the list.</description><pubDate>Fri, 19 Sep 2008 04:03:58 GMT</pubDate><dc:creator>Aaron Young</dc:creator></item></channel></rss>