472,791 Members | 1,777 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Combobox lookup binding with bound controls - Please help!

Hi-
I've seen this problem discussed a jillion times but I cannot seem to
implement any advice that makes it work. I am porting a large project from
VB6 to .NET. The issue is using the combo box bound to a table as a lookup,
drawing values from another table to populate the available selections. This
all worked fine in VB6.

I have distilled the problem down to a simple form drawing data from the
Northwind database for a representative model so that it can easily be
duplicated by anyone.
1. I use two tables, Orders and Customers. Orders contains a FK from
Customers called CustomerID.
2. Create one form, with text fields bound to columns from the Orders table,
except for Orders.CustomerID. Orders.CustomerID is bound and displayed in the
Combobox. Navigation buttons are used to move around in the orders table,
with buttons to add rows, etc. You can use a wizard to generate this very
easily.
3. The idea is one can add a new order to the Orders table, and make a
selection for the customerID by using a value from the combobox, or change an
existing CustomerID to a different one. The CustomerID values in the
combobox are all populated from the Customers table. Of course, as one
scrolls through orders using the navigation buttons the value displayed in
the combobox changes accordingly, as do the rest of the columns displayed in
the text fields.
4. I have used various means of doing this with various results, all bad.

a. Using one dataadapter and one dataset. Orders table and Customers table
are added to the dataset. All form datafields, including the combobox are
bound to the Orders table with statements similar to the following:
Me.editShipName.DataBindings.Add(New System.Windows.Forms.Binding("Text",
Me.dsOrders, "Orders.ShipName"))

The Orders table is loaded into the form controls with
SqldataAdapter1.fill(ds, "Orders"). The Combobox lookup values are the
loaded by Sqldataadapter1.Fill(ds,"Customers") with displaymember set to
CustomerID. This throws an exception regarding nonnull, key restraints
violated. etc. I have tried adding a relation between the tables on
customerID to no avail.

b. I created another dataadapter for just the customer table in order to
load the lookup values. Orders is bound to the controls as before with the
Combobox being loaded by another dataset from datadapter2.fill:
SqlDataAdapter2.Fill(custTemp, "Customers")
ComboBox1.DataSource = custTemp.Tables(0)
ComboBox1.DisplayMember = "CustomerID"

This second method works fine- the combo is populated and changes values as
one scrolls through the orders table with with navigation buttons. However,
you cannot change the value in the combobox or add a new row because the
value selected in the combobox just changes back to the orginal value if one
moves to the next record or reloads the dataset. Obviously the change is not
being saved.

c. Same as b, but after the combobox is filled with the CustomerID lookup
values from the Customers table, I rebind the combo to the orginal Order
table with:
ComboBox1.DataBindings.Add("text", dsOrders.Tables(0), "CustomerID") or
ComboBox1.DataBindings.Add("text", jdsOrders, "Orders.CustomerID")
Neither have any effect.

I believe I have a currency manager issue. I am doing everything right
except for the combobox. I can even add rows if the combobox is not populated
with the lookup values. I even tried adding:
ComboBox1.BindingContext = New BindingContext
before populating the combobox with the lookup values.. again with no
improvement.

What am I doing wrong?

--
thx,
jf kaminsky
Nov 21 '05 #1
4 4524
Okay so I think I answered my own question partially anyway. I did the
following:

Bound the Combobox to the Orders table with dataadapter1 with the selected
value set to CustomerID.
Filled the lookup data from Customers table with dataadapter2 and set both
the displaymember and value member to "CustomerID"

right before adding a new row, I set the combobox index to -1 to blank it
out, then the new row is added. I then change to the desired value of
customerID and then call update and acceptchanges.

This seems to work, except that if you do not move off of the combo box and
enter a value in one of the other form controls before calling update, the
new row will NOT be added. It looks like it is, but when you reload the
dataset, there is no new row.

I also added the following to Combobox1_SelectedIndexChanged
ComboBox1.DataBindings("SelectedValue").BindingMan agerBase.EndCurrentEdit()

Just to see what happens... the idea was trying to get the value set when I
selected the new CustomerID. No change. Help!!!
--
thx,
jf kaminsky
"jon f kaminsky" wrote:
Hi-
I've seen this problem discussed a jillion times but I cannot seem to
implement any advice that makes it work. I am porting a large project from
VB6 to .NET. The issue is using the combo box bound to a table as a lookup,
drawing values from another table to populate the available selections. This
all worked fine in VB6.

I have distilled the problem down to a simple form drawing data from the
Northwind database for a representative model so that it can easily be
duplicated by anyone.
1. I use two tables, Orders and Customers. Orders contains a FK from
Customers called CustomerID.
2. Create one form, with text fields bound to columns from the Orders table,
except for Orders.CustomerID. Orders.CustomerID is bound and displayed in the
Combobox. Navigation buttons are used to move around in the orders table,
with buttons to add rows, etc. You can use a wizard to generate this very
easily.
3. The idea is one can add a new order to the Orders table, and make a
selection for the customerID by using a value from the combobox, or change an
existing CustomerID to a different one. The CustomerID values in the
combobox are all populated from the Customers table. Of course, as one
scrolls through orders using the navigation buttons the value displayed in
the combobox changes accordingly, as do the rest of the columns displayed in
the text fields.
4. I have used various means of doing this with various results, all bad.

a. Using one dataadapter and one dataset. Orders table and Customers table
are added to the dataset. All form datafields, including the combobox are
bound to the Orders table with statements similar to the following:
Me.editShipName.DataBindings.Add(New System.Windows.Forms.Binding("Text",
Me.dsOrders, "Orders.ShipName"))

The Orders table is loaded into the form controls with
SqldataAdapter1.fill(ds, "Orders"). The Combobox lookup values are the
loaded by Sqldataadapter1.Fill(ds,"Customers") with displaymember set to
CustomerID. This throws an exception regarding nonnull, key restraints
violated. etc. I have tried adding a relation between the tables on
customerID to no avail.

b. I created another dataadapter for just the customer table in order to
load the lookup values. Orders is bound to the controls as before with the
Combobox being loaded by another dataset from datadapter2.fill:
SqlDataAdapter2.Fill(custTemp, "Customers")
ComboBox1.DataSource = custTemp.Tables(0)
ComboBox1.DisplayMember = "CustomerID"

This second method works fine- the combo is populated and changes values as
one scrolls through the orders table with with navigation buttons. However,
you cannot change the value in the combobox or add a new row because the
value selected in the combobox just changes back to the orginal value if one
moves to the next record or reloads the dataset. Obviously the change is not
being saved.

c. Same as b, but after the combobox is filled with the CustomerID lookup
values from the Customers table, I rebind the combo to the orginal Order
table with:
ComboBox1.DataBindings.Add("text", dsOrders.Tables(0), "CustomerID") or
ComboBox1.DataBindings.Add("text", jdsOrders, "Orders.CustomerID")
Neither have any effect.

I believe I have a currency manager issue. I am doing everything right
except for the combobox. I can even add rows if the combobox is not populated
with the lookup values. I even tried adding:
ComboBox1.BindingContext = New BindingContext
before populating the combobox with the lookup values.. again with no
improvement.

What am I doing wrong?

--
thx,
jf kaminsky

Nov 21 '05 #2
Hi,

Dim dv As DataView

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim strConn As String
Dim da, daOrders As SqlDataAdapter
Dim conn As SqlConnection
Dim ds As New DataSet

strConn = "Server = (local);"
strConn &= "Database = NorthWind; Integrated Security = SSPI;"
conn = New SqlConnection(strConn)

da = New SqlDataAdapter("Select * From Customers", conn)
daOrders = New SqlDataAdapter("Select * From Orders", conn)

da.Fill(ds, "Customers")
daOrders.Fill(ds, "Orders")

dv = New DataView(ds.Tables("Orders"))

cboCustomers.DataSource = ds.Tables("Customers")
cboCustomers.DisplayMember = "CompanyName"
cboCustomers.ValueMember = "CustomerID"

dgOrders.DataSource = dv
End Sub

Private Sub cboCustomers_SelectedValueChanged(ByVal sender As Object,
ByVal e As System.EventArgs) Handles cboCustomers.SelectedValueChanged
Try
Dim drv As DataRowView = DirectCast(cboCustomers.SelectedItem,
DataRowView)
dv.RowFilter = String.Format("CustomerID = '{0}'",
drv.Item("CustomerID"))
Catch ex As Exception

End Try
End Sub
Ken
----------------------
"jon f kaminsky" <jo**********@discussions.microsoft.com> wrote in message
news:37**********************************@microsof t.com...
Hi-
I've seen this problem discussed a jillion times but I cannot seem to
implement any advice that makes it work. I am porting a large project from
VB6 to .NET. The issue is using the combo box bound to a table as a
lookup,
drawing values from another table to populate the available selections.
This
all worked fine in VB6.

I have distilled the problem down to a simple form drawing data from the
Northwind database for a representative model so that it can easily be
duplicated by anyone.
1. I use two tables, Orders and Customers. Orders contains a FK from
Customers called CustomerID.
2. Create one form, with text fields bound to columns from the Orders
table,
except for Orders.CustomerID. Orders.CustomerID is bound and displayed in
the
Combobox. Navigation buttons are used to move around in the orders table,
with buttons to add rows, etc. You can use a wizard to generate this very
easily.
3. The idea is one can add a new order to the Orders table, and make a
selection for the customerID by using a value from the combobox, or change
an
existing CustomerID to a different one. The CustomerID values in the
combobox are all populated from the Customers table. Of course, as one
scrolls through orders using the navigation buttons the value displayed in
the combobox changes accordingly, as do the rest of the columns displayed
in
the text fields.
4. I have used various means of doing this with various results, all bad.

a. Using one dataadapter and one dataset. Orders table and Customers table
are added to the dataset. All form datafields, including the combobox are
bound to the Orders table with statements similar to the following:
Me.editShipName.DataBindings.Add(New System.Windows.Forms.Binding("Text",
Me.dsOrders, "Orders.ShipName"))

The Orders table is loaded into the form controls with
SqldataAdapter1.fill(ds, "Orders"). The Combobox lookup values are the
loaded by Sqldataadapter1.Fill(ds,"Customers") with displaymember set to
CustomerID. This throws an exception regarding nonnull, key restraints
violated. etc. I have tried adding a relation between the tables on
customerID to no avail.

b. I created another dataadapter for just the customer table in order to
load the lookup values. Orders is bound to the controls as before with the
Combobox being loaded by another dataset from datadapter2.fill:
SqlDataAdapter2.Fill(custTemp, "Customers")
ComboBox1.DataSource = custTemp.Tables(0)
ComboBox1.DisplayMember = "CustomerID"

This second method works fine- the combo is populated and changes values
as
one scrolls through the orders table with with navigation buttons.
However,
you cannot change the value in the combobox or add a new row because the
value selected in the combobox just changes back to the orginal value if
one
moves to the next record or reloads the dataset. Obviously the change is
not
being saved.

c. Same as b, but after the combobox is filled with the CustomerID lookup
values from the Customers table, I rebind the combo to the orginal Order
table with:
ComboBox1.DataBindings.Add("text", dsOrders.Tables(0), "CustomerID") or
ComboBox1.DataBindings.Add("text", jdsOrders, "Orders.CustomerID")
Neither have any effect.

I believe I have a currency manager issue. I am doing everything right
except for the combobox. I can even add rows if the combobox is not
populated
with the lookup values. I even tried adding:
ComboBox1.BindingContext = New BindingContext
before populating the combobox with the lookup values.. again with no
improvement.

What am I doing wrong?

--
thx,
jf kaminsky

Nov 21 '05 #3
Thanks Ken for your quick response. I have also got things to work better
with dataviews and grids. Couple of things though. I am not using a datagrid-
all the fields in the Orders table are bound individually to textboxes on the
form, except for Orders.CustomerID, it is displayed in a combobox.
Unfortunately, my real project, for which I am using the Northwind database
to model the interaction, is not using views and datagrids. My real project
is also different on the field that is modeled with CustomerID. The
displaymember and value member are one and the same. Sort of like having zip
codes stored in a combo - the displayed value IS the data. These differences
somehow contribute to the problems I am experiencing.

if you have any more input, I would sure like to read it.

Thanks
Jon
--
thx,
jf kaminsky
"Ken Tucker [MVP]" wrote:
Hi,

Dim dv As DataView

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim strConn As String
Dim da, daOrders As SqlDataAdapter
Dim conn As SqlConnection
Dim ds As New DataSet

strConn = "Server = (local);"
strConn &= "Database = NorthWind; Integrated Security = SSPI;"
conn = New SqlConnection(strConn)

da = New SqlDataAdapter("Select * From Customers", conn)
daOrders = New SqlDataAdapter("Select * From Orders", conn)

da.Fill(ds, "Customers")
daOrders.Fill(ds, "Orders")

dv = New DataView(ds.Tables("Orders"))

cboCustomers.DataSource = ds.Tables("Customers")
cboCustomers.DisplayMember = "CompanyName"
cboCustomers.ValueMember = "CustomerID"

dgOrders.DataSource = dv
End Sub

Private Sub cboCustomers_SelectedValueChanged(ByVal sender As Object,
ByVal e As System.EventArgs) Handles cboCustomers.SelectedValueChanged
Try
Dim drv As DataRowView = DirectCast(cboCustomers.SelectedItem,
DataRowView)
dv.RowFilter = String.Format("CustomerID = '{0}'",
drv.Item("CustomerID"))
Catch ex As Exception

End Try
End Sub
Ken
----------------------
"jon f kaminsky" <jo**********@discussions.microsoft.com> wrote in message
news:37**********************************@microsof t.com...
Hi-
I've seen this problem discussed a jillion times but I cannot seem to
implement any advice that makes it work. I am porting a large project from
VB6 to .NET. The issue is using the combo box bound to a table as a
lookup,
drawing values from another table to populate the available selections.
This
all worked fine in VB6.

I have distilled the problem down to a simple form drawing data from the
Northwind database for a representative model so that it can easily be
duplicated by anyone.
1. I use two tables, Orders and Customers. Orders contains a FK from
Customers called CustomerID.
2. Create one form, with text fields bound to columns from the Orders
table,
except for Orders.CustomerID. Orders.CustomerID is bound and displayed in
the
Combobox. Navigation buttons are used to move around in the orders table,
with buttons to add rows, etc. You can use a wizard to generate this very
easily.
3. The idea is one can add a new order to the Orders table, and make a
selection for the customerID by using a value from the combobox, or change
an
existing CustomerID to a different one. The CustomerID values in the
combobox are all populated from the Customers table. Of course, as one
scrolls through orders using the navigation buttons the value displayed in
the combobox changes accordingly, as do the rest of the columns displayed
in
the text fields.
4. I have used various means of doing this with various results, all bad.

a. Using one dataadapter and one dataset. Orders table and Customers table
are added to the dataset. All form datafields, including the combobox are
bound to the Orders table with statements similar to the following:
Me.editShipName.DataBindings.Add(New System.Windows.Forms.Binding("Text",
Me.dsOrders, "Orders.ShipName"))

The Orders table is loaded into the form controls with
SqldataAdapter1.fill(ds, "Orders"). The Combobox lookup values are the
loaded by Sqldataadapter1.Fill(ds,"Customers") with displaymember set to
CustomerID. This throws an exception regarding nonnull, key restraints
violated. etc. I have tried adding a relation between the tables on
customerID to no avail.

b. I created another dataadapter for just the customer table in order to
load the lookup values. Orders is bound to the controls as before with the
Combobox being loaded by another dataset from datadapter2.fill:
SqlDataAdapter2.Fill(custTemp, "Customers")
ComboBox1.DataSource = custTemp.Tables(0)
ComboBox1.DisplayMember = "CustomerID"

This second method works fine- the combo is populated and changes values
as
one scrolls through the orders table with with navigation buttons.
However,
you cannot change the value in the combobox or add a new row because the
value selected in the combobox just changes back to the orginal value if
one
moves to the next record or reloads the dataset. Obviously the change is
not
being saved.

c. Same as b, but after the combobox is filled with the CustomerID lookup
values from the Customers table, I rebind the combo to the orginal Order
table with:
ComboBox1.DataBindings.Add("text", dsOrders.Tables(0), "CustomerID") or
ComboBox1.DataBindings.Add("text", jdsOrders, "Orders.CustomerID")
Neither have any effect.

I believe I have a currency manager issue. I am doing everything right
except for the combobox. I can even add rows if the combobox is not
populated
with the lookup values. I even tried adding:
ComboBox1.BindingContext = New BindingContext
before populating the combobox with the lookup values.. again with no
improvement.

What am I doing wrong?

--
thx,
jf kaminsky


Nov 21 '05 #4
Hi,

You could still bind the combobox with the orders to a dataview
and filter the records for that.

Ken
---------------------
"jon f kaminsky" <jo**********@discussions.microsoft.com> wrote in message
news:5A**********************************@microsof t.com...
Thanks Ken for your quick response. I have also got things to work better
with dataviews and grids. Couple of things though. I am not using a
datagrid-
all the fields in the Orders table are bound individually to textboxes on
the
form, except for Orders.CustomerID, it is displayed in a combobox.
Unfortunately, my real project, for which I am using the Northwind
database
to model the interaction, is not using views and datagrids. My real
project
is also different on the field that is modeled with CustomerID. The
displaymember and value member are one and the same. Sort of like having
zip
codes stored in a combo - the displayed value IS the data. These
differences
somehow contribute to the problems I am experiencing.

if you have any more input, I would sure like to read it.

Thanks
Jon
--
thx,
jf kaminsky
"Ken Tucker [MVP]" wrote:
Hi,

Dim dv As DataView

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Dim strConn As String
Dim da, daOrders As SqlDataAdapter
Dim conn As SqlConnection
Dim ds As New DataSet

strConn = "Server = (local);"
strConn &= "Database = NorthWind; Integrated Security = SSPI;"
conn = New SqlConnection(strConn)

da = New SqlDataAdapter("Select * From Customers", conn)
daOrders = New SqlDataAdapter("Select * From Orders", conn)

da.Fill(ds, "Customers")
daOrders.Fill(ds, "Orders")

dv = New DataView(ds.Tables("Orders"))

cboCustomers.DataSource = ds.Tables("Customers")
cboCustomers.DisplayMember = "CompanyName"
cboCustomers.ValueMember = "CustomerID"

dgOrders.DataSource = dv
End Sub

Private Sub cboCustomers_SelectedValueChanged(ByVal sender As Object,
ByVal e As System.EventArgs) Handles cboCustomers.SelectedValueChanged
Try
Dim drv As DataRowView =
DirectCast(cboCustomers.SelectedItem,
DataRowView)
dv.RowFilter = String.Format("CustomerID = '{0}'",
drv.Item("CustomerID"))
Catch ex As Exception

End Try
End Sub
Ken
----------------------
"jon f kaminsky" <jo**********@discussions.microsoft.com> wrote in
message
news:37**********************************@microsof t.com...
> Hi-
> I've seen this problem discussed a jillion times but I cannot seem to
> implement any advice that makes it work. I am porting a large project
> from
> VB6 to .NET. The issue is using the combo box bound to a table as a
> lookup,
> drawing values from another table to populate the available selections.
> This
> all worked fine in VB6.
>
> I have distilled the problem down to a simple form drawing data from
> the
> Northwind database for a representative model so that it can easily be
> duplicated by anyone.
> 1. I use two tables, Orders and Customers. Orders contains a FK from
> Customers called CustomerID.
> 2. Create one form, with text fields bound to columns from the Orders
> table,
> except for Orders.CustomerID. Orders.CustomerID is bound and displayed
> in
> the
> Combobox. Navigation buttons are used to move around in the orders
> table,
> with buttons to add rows, etc. You can use a wizard to generate this
> very
> easily.
> 3. The idea is one can add a new order to the Orders table, and make a
> selection for the customerID by using a value from the combobox, or
> change
> an
> existing CustomerID to a different one. The CustomerID values in the
> combobox are all populated from the Customers table. Of course, as one
> scrolls through orders using the navigation buttons the value displayed
> in
> the combobox changes accordingly, as do the rest of the columns
> displayed
> in
> the text fields.
> 4. I have used various means of doing this with various results, all
> bad.
>
> a. Using one dataadapter and one dataset. Orders table and Customers
> table
> are added to the dataset. All form datafields, including the combobox
> are
> bound to the Orders table with statements similar to the following:
> Me.editShipName.DataBindings.Add(New
> System.Windows.Forms.Binding("Text",
> Me.dsOrders, "Orders.ShipName"))
>
> The Orders table is loaded into the form controls with
> SqldataAdapter1.fill(ds, "Orders"). The Combobox lookup values are the
> loaded by Sqldataadapter1.Fill(ds,"Customers") with displaymember set
> to
> CustomerID. This throws an exception regarding nonnull, key restraints
> violated. etc. I have tried adding a relation between the tables on
> customerID to no avail.
>
> b. I created another dataadapter for just the customer table in order
> to
> load the lookup values. Orders is bound to the controls as before with
> the
> Combobox being loaded by another dataset from datadapter2.fill:
> SqlDataAdapter2.Fill(custTemp, "Customers")
> ComboBox1.DataSource = custTemp.Tables(0)
> ComboBox1.DisplayMember = "CustomerID"
>
> This second method works fine- the combo is populated and changes
> values
> as
> one scrolls through the orders table with with navigation buttons.
> However,
> you cannot change the value in the combobox or add a new row because
> the
> value selected in the combobox just changes back to the orginal value
> if
> one
> moves to the next record or reloads the dataset. Obviously the change
> is
> not
> being saved.
>
> c. Same as b, but after the combobox is filled with the CustomerID
> lookup
> values from the Customers table, I rebind the combo to the orginal
> Order
> table with:
> ComboBox1.DataBindings.Add("text", dsOrders.Tables(0), "CustomerID") or
> ComboBox1.DataBindings.Add("text", jdsOrders, "Orders.CustomerID")
> Neither have any effect.
>
> I believe I have a currency manager issue. I am doing everything right
> except for the combobox. I can even add rows if the combobox is not
> populated
> with the lookup values. I even tried adding:
> ComboBox1.BindingContext = New BindingContext
> before populating the combobox with the lookup values.. again with no
> improvement.
>
> What am I doing wrong?
>
> --
> thx,
> jf kaminsky


Nov 21 '05 #5

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

Similar topics

2
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 =...
5
by: Greg Dunn | last post by:
I have two tables in a parent-child relationship. Details on the tables are as shown below: Table1 ------- Item_ID (primary key) Item_Owner (foreign key to Table2) Table2 -------
5
by: Aaron Ackerman | last post by:
I have a bound combobox the appears on a cell within the column of my bound grid when the user clicks on a cell n(In my vb.net WinForm app). I am trying to allow the adding of an item to that bound...
30
by: dbuchanan | last post by:
ComboBox databindng Problem == How the ComboBox is setup and used: My comboBox is populated by a lookup table. The ValueMember is the lookup table's Id and the DisplayMember is the text from a...
6
by: dbuchanan | last post by:
VS2005 I've been reading all the help I can on the topic (MSDN, other) but I can't make sense of this. Desired behavior; The user is to choose from the displayed list of the databound combobox...
3
by: Magnus | last post by:
Im using a set combobox (ComboBox1) to provide a selection of records from a database table. I have a typed dataset (DataSet1) that contains the typed datatable (DataTable1) that the combobox is...
0
by: Frnak McKenney | last post by:
Can I use a bound ComboBox for both browsing and editing? I'm working on a small, standalone database application using Visual C#.NET 2003 and an Access data file. In order to keep the number...
19
by: active | last post by:
I'm using a ComboBox to display objects of a class I've defined, say CQQ. Works great except somehow I occasionally set an Item to a String object instead of an object of type CQQ. It looks...
1
by: Robert Dufour | last post by:
I have a table of addresses and it contains a CountryId which points to a table of countries. The datatstructure of the Countries Lookup tables is actually created from three tables - a...
3
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: erikbower65 | last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA: 1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth

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.