473,806 Members | 2,732 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Equivalent VB Code

Is there any known defects with respect to Databinding to
a ComboBox that is located on a UserForm?

I have a scenario on one of my forms that I have spent
HOURS trying to solve that has completely crushed my
morale.

Essentially I setup the combobox with a datasource and the
appropriate DataMember and Value Member (everything
appears perfect on the screen when I click the dropdown).
However when I fetch the data into the dataset the
contents of the ComboBox is always blank.
cboTerms.DataSo urce = dsLookup
cboTerms.ValueM ember = "lk_Term.Term_p k"
cboTerms.Displa yMember = "lk_Term.Descri ption"
Me.cboTerms.Dat aBindings.Add(" SelectedValue",
dsCustomer, "Customer.LK_Te rms_pk"))

dsCustomer.Fill ()

I have also tried attaching a different BindingContext to
the Combo, also to no avail.

Two other combos on this screen are also behaving this way.

I have about 10 other forms in my application that operate
EXACTLY the same way without any problem(they are also on
usercontrols). Why just this particular screen?

If anyone has any ideas, anything at all, I'd be forever
grateful.

Down and out (but not for the count),

David

Nov 20 '05 #1
2 1780
-----Original Message-----
Is there any known defects with respect to Databinding to
a ComboBox that is located on a UserForm?

I have a scenario on one of my forms that I have spent
HOURS trying to solve that has completely crushed my
morale.

Essentially I setup the combobox with a datasource and theappropriate DataMember and Value Member (everything
appears perfect on the screen when I click the dropdown).
However when I fetch the data into the dataset the
contents of the ComboBox is always blank.
cboTerms.DataSo urce = dsLookup
cboTerms.ValueM ember = "lk_Term.Term_p k"
cboTerms.Displa yMember = "lk_Term.Descri ption"
Me.cboTerms.Dat aBindings.Add(" SelectedValue",
dsCustomer, "Customer.LK_Te rms_pk"))

dsCustomer.Fill ()

I have also tried attaching a different BindingContext to
the Combo, also to no avail.

Two other combos on this screen are also behaving this way.
I have about 10 other forms in my application that operateEXACTLY the same way without any problem(they are also on
usercontrols ). Why just this particular screen?

If anyone has any ideas, anything at all, I'd be forever
grateful.

Down and out (but not for the count),

David

.

Nov 20 '05 #2
Hi David,

I have replied to your another post in the newsgroup queue.
DataBinding problem with Combobox
You may have a check and let me know if that does the job for you.

Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure! www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.

--------------------
Content-Class: urn:content-classes:message
From: "David Kozak" <dr*****@no-spam.hotmail.co m>
Sender: "David Kozak" <dr*****@no-spam.hotmail.co m>
References: <0a************ *************** *@phx.gbl>
Subject: Incorrect Subject line...Reposted
Date: Tue, 30 Sep 2003 13:57:24 -0700
Lines: 43
Message-ID: <0a************ *************** *@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
Thread-Index: AcOHlXM3kFaio8w RQwS2V7HsjMJVIg ==
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Newsgroups: microsoft.publi c.dotnet.langua ges.vb
Path: cpmsftngxa06.ph x.gbl
Xref: cpmsftngxa06.ph x.gbl microsoft.publi c.dotnet.langua ges.vb:142649
NNTP-Posting-Host: TK2MSFTNGXA09 10.40.1.161
X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.vb

-----Original Message-----
Is there any known defects with respect to Databinding to
a ComboBox that is located on a UserForm?

I have a scenario on one of my forms that I have spent
HOURS trying to solve that has completely crushed my
morale.

Essentially I setup the combobox with a datasource and

the
appropriate DataMember and Value Member (everything
appears perfect on the screen when I click the dropdown).
However when I fetch the data into the dataset the
contents of the ComboBox is always blank.
cboTerms.DataSo urce = dsLookup
cboTerms.ValueM ember = "lk_Term.Term_p k"
cboTerms.Displa yMember = "lk_Term.Descri ption"
Me.cboTerms.Dat aBindings.Add(" SelectedValue",
dsCustomer, "Customer.LK_Te rms_pk"))

dsCustomer.Fill ()

I have also tried attaching a different BindingContext to
the Combo, also to no avail.

Two other combos on this screen are also behaving this

way.

I have about 10 other forms in my application that

operate
EXACTLY the same way without any problem(they are also on
usercontrols) . Why just this particular screen?

If anyone has any ideas, anything at all, I'd be forever
grateful.

Down and out (but not for the count),

David

.


Nov 20 '05 #3

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

Similar topics

4
2516
by: Hai Nguyen | last post by:
I'm learning C sharp and do not like vb much. I'm creatiing a wepage using panel to test myself. I tried to use these code below, which is written in VB, and to transform them to c sharp but I got hard time to understand vb syntax. I don't know if anyone in here can point out which is the equivalent object used in c sharp. Translate these two lines to C sharp: Sub Next_Click(Sender As Object, e As EventArgs) Select Case...
8
1414
by: Xucyr | last post by:
I can't find any "short" code to make this work without taking 100s of lines (because I have to keep repeating this process several times). But this is what I have so far: int i = 7; do { aryBadCoor.SetValue(i + " 25", v); v++;
9
4053
by: Alan Silver | last post by:
Hello, I'm converting some old VB6 code to use with ASP.NET and have come unstuck with the Asc() function. This was used in the old VB6 code to convert a character to its ASCII numeric equivalent. Is there such a function available in C#? I can see that VB.NET has one, but I couldn't see how to get at it in C#. For example, if I have ...
48
2768
by: Daniel Crespo | last post by:
Hi! I would like to know how can I do the PHP ternary operator/statement (... ? ... : ...) in Python... I want to something like: a = {'Huge': (quantity>90) ? True : False} Any suggestions?
14
2558
by: grid | last post by:
Hi, I have a certain situation where a particular piece of code works on a particular compiler but fails on another proprietary compiler.It seems to have been fixed but I just want to confirm if both statements are similar : *((char **)v)++ == *((char **)v++) Where v is a pointer to an array of characters,defined as char *v;
5
6557
by: lcw1964 | last post by:
Greetings again, I will burden the group with yet another tenderfoot question, but since conscientious googling hasn't yield a lucid answer I thought I would risk the shortcut of asking here since I am so very keen to learn to code in standard C. Could someone tell me the long double equivalent of atof()? I was getting some peculiar behaviour in a little bit of math code I am working with. I thought the problem was in the math...
8
1402
by: Jon Paal | last post by:
what is vb equivalent to this C# code ? converters failed to handle this "using (SQLiteTransaction mytransaction = myconnection.BeginTransaction())"
6
2027
by: Jon Paal | last post by:
what is vb equiv. of ++ shown in C# ?
22
7929
by: Kurien Mathew | last post by:
Hello, Any suggestions on a good python equivalent for the following C code: while (loopCondition) { if (condition1) goto next; if (condition2) goto next;
11
2914
by: gnuist006 | last post by:
Is there a Delphi equivalent in the C world or Scheme/LISP world ? Recently, Delphi is in resurgence. In Russia people are using like crazy. For example, Bolega has written a free image processing program scankromsator in delphi because its easy to write a gui. In arabia people are using it also. Also delphi, I heard delphi allows visual programming and delphi programs run on:
0
9598
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10623
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10111
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
6877
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5546
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5683
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4330
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
3852
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3010
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.