473,772 Members | 2,244 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Combobox showing first item??

I have used the feedback on this issue to remedy my comboboxes showing
the first item on the list when a new record is added to the binding
context ---
Me.BindingConte xt(dsOrders, "tblOrders").Ad dNew()
Me.ComboBox1.Se lectedIndex = -1

but... how do we deal with the same issue during record navigation?
When I move forward or backward onto a null field the combo defaults to
the first item on the list again?

Me.BindingConte xt(dsOrders, "tblOrders").Po sition =
(Me.BindingCont ext(dsOrders, "tblOrders").Po sition + 1)

I am convinced that anyone using combos is having this problem...

I am binding early, clearing and rebinding late, trying many variations
to no avail. I have added an empty string value to the first item of
all my combos - this displays an empty box for null fields, but is not
optimal. Anybody have a workaround for this??

Nov 21 '05 #1
2 2854
ng
I prefer an unbound combobox.

Tom

Nate wrote:
I have used the feedback on this issue to remedy my comboboxes showing
the first item on the list when a new record is added to the binding
context ---
Me.BindingCont ext(dsOrders, "tblOrders").Ad dNew()
Me.ComboBox1.S electedIndex = -1

but... how do we deal with the same issue during record navigation?
When I move forward or backward onto a null field the combo defaults to
the first item on the list again?

Me.BindingCont ext(dsOrders, "tblOrders").Po sition =
(Me.BindingCon text(dsOrders, "tblOrders").Po sition + 1)

I am convinced that anyone using combos is having this problem...

I am binding early, clearing and rebinding late, trying many variations
to no avail. I have added an empty string value to the first item of
all my combos - this displays an empty box for null fields, but is not
optimal. Anybody have a workaround for this??

Nov 21 '05 #2
Hi,

"Nate" <na************ ***@hitchcock.o rg> wrote in message
news:11******** **************@ f14g2000cwb.goo glegroups.com.. .
I have used the feedback on this issue to remedy my comboboxes showing
the first item on the list when a new record is added to the binding
context ---
Me.BindingConte xt(dsOrders, "tblOrders").Ad dNew()
Me.ComboBox1.Se lectedIndex = -1

but... how do we deal with the same issue during record navigation?
When I move forward or backward onto a null field the combo defaults to
the first item on the list again?
I recently posted a workaround for what i can only guess deals with your
problem. Are you talking about lookup ComboBox's to which you have added a
binding for SelectedValue ?,eg.:

Me.ComboBox1.Bi ndings.Add( "SelectedValue" , dsOrders,
"tblOrders.Some FkField" )

If so, then yes there is a problem with null values, and here is a
workaround:

AddHandler Me.BindingConte xt(dsOrders, "tblOrders").Po sitionChanged, _
AddressOf CmPositionChang ed

Private Sub CmPositionChang ed( ByVal sender As Object, ByVal e As
System.EventArg s)
'
Dim cm As CurrencyManager = _
DirectCast(send er, CurrencyManager )
Dim lv As DataRowView = _
DirectCast(cm.C urrent, DataRowView)
Dim cb As ComboBox

For Each bnd As Binding In cm.Bindings
If (bnd.PropertyNa me = "SelectedValue" ) And _
(TypeOf (bnd.Control) Is ComboBox) Then
cb = DirectCast(bnd. Control, ComboBox)
If (lv(bnd.Binding MemberInfo.Bind ingField) Is DBNull.Value) And _
(cb.SelectedInd ex <> -1) Then
cb.SelectedInde x = -1
End If
End If
Next
End Sub
HTH,
Greetings

Me.BindingConte xt(dsOrders, "tblOrders").Po sition =
(Me.BindingCont ext(dsOrders, "tblOrders").Po sition + 1)

I am convinced that anyone using combos is having this problem...

I am binding early, clearing and rebinding late, trying many variations
to no avail. I have added an empty string value to the first item of
all my combos - this displays an empty box for null fields, but is not
optimal. Anybody have a workaround for this??

Nov 21 '05 #3

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

Similar topics

2
3453
by: Phil | last post by:
My form uses a dataset containing two tables, a base table (Contact) and a lookup table (Insurer). My combobox is bound as follows: DataSource = datasetContact DisplayMember = Insurer.InsurerName ValueMember = Insurer.InsurerId DataBindings.SelectedValue = Contact.InsurerId It generally works fine. I am able to navigate records and
2
2274
by: Anand | last post by:
Hi All, I have a combobox with style as DropDown List. When I set the combobox.selectedIndex = 0, the first value is not showing up in the combobox and it is simply blank. Only if I manually pull down the list and pick the value it is showing up. How can I programatically set the combox value and to show up the selected
2
4333
by: pei_world | last post by:
I want to implement a key hit with enter to dropdown a combobox that is in the datagrid. in this case I need to override its original behaviours. I found some codes from the web. Does anyone know how to use this code? please help! http://www.experts-exchange.com/Programming/Programming_Languages/C_Sharp/Q_20862953.html
2
2234
by: Vern | last post by:
I have a combobox called sPropertyCountyCd whose datasource is a dataview. The first time I set the filter to the dataview, attach the combobox to the dataview, and set the selected index to -1 is comes up correctly as blank. However, if I change the filter, and set the selected index to -1, is always shows the first record from the dataview and changes the index to 0. I even tried to set the datasource to null, and then reassigning the...
2
3282
by: Tor Inge Rislaa | last post by:
Avoid autoselect in combobox In the load procedure of a form I am filling a combobox with data from a database. The combobox fill the data OK, but it is automatic showing the first item of the list as the text. How can I avoid the first item in the list to be selected as default? I want the textbox of the combo to be left empty until the user select an item. My Code below:
12
3495
by: eetarnold | last post by:
Hi Gurus, As I've read in other posts the past couple of days, I've read many great posts and haven't figured out how I can solve this problem...I'm trying to make a form very user friendly for a group of teachers--who are not computer teachers. I have a main form named "frmProgressReports" based on a record source "qryStudents," which has StudentID, FullName: & " " & , LastName, and FirstName.
1
2099
by: fiaolle | last post by:
Hi The first set of source code is the class for a combobox in a grid, hopefully. In the second set of code we try to use the combobox class, but the grid is empty. I don't understand how this works. The first set of code I downloaded from internet and when i tried it, it worked fine. But when I changed the second part of the code it started to give me trouble. Before I changed the code they used Datacolumns,Datarows and Datatables and...
9
2458
by: Franky | last post by:
I have a usercontrol that inherits from ComboBox I'd like to add the feature that the user can delete any item Best would be that he could right click an element and a messagebox would ask if he wanted to delete that element I can't find an event that would enable me to do that. I could copy the items into a text box, let him edit it and put them back
0
2592
by: pavanip | last post by:
Hi, I am facing problem with combobox in gridview.I have used combobox in gridview and i am binding data to gridview combobox from database. If i click 2 times on combobox then it is showing the items and first item looks like blank. Can anybody help me to resolve this problem how to display items in gridview combobox without double click and it will show first item by default without selection.The application is windows application. ...
0
10104
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10038
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9912
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8934
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7460
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5482
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4007
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3609
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2850
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.