I've been bothered for some time about my DataGrid not populating my rows
very quickly. I have about 10K rows loading into the grid.
I create a datatable dt with 2 columns, an ID and a display. The ID is a
member of the keys array.
I then create a DataView dv over the table, and sort it by Display and ID
column (in case of duplicate Display).
I then set my DataGrid.DataSource = dv;
I then load the datatable with my rows, and this is what I find is very
interesting, and any explanation would be very appreciated:
When the form loads, I call a method LoadList(). In this method, I test to
see if the DataGrid.DataSource is null, and then I set it if TRUE.
If the DataGrid.DataSource has already been set, then I leave it alone.
I retrieve the datatable from the source, and load the table.
I can also call LoadList from a user request to refresh the grid.
At the Form.Load the rows are added very quickly to my datatable.
At the user request, the rows are added at a factor of speed over 1000x
slower, and the speed decreases as n, the number of rows, increases.
I then removed my test to see if the DataGrid.DataSource is null, and now I
RESET the datasource each time the LoadList() method is called. So, I
recreate my DataTable, Styles each time. And, my speed is lightning fast
again. Apart from resetting the datasource, all the code is the same.
I have a feeling that it could be related to either sorting, or some kind of
event handling firing for each row in the grid each time the grid is added
to. It has to be something related to the size of n... but I don't know
what it could be. Anyone with any experience with this? 5 12010
John,
You are pretty much right in your guess. What you want to do is set the
data source to null, or create a new instance of the table/view, and then
bind to that.
The reason for the slowdown is that every row that is modified in some
way will have to be refreshed in the grid somehow (every change triggers a
refresh of the view). On top of that, the sorting might be affected, as you
suspect.
So, just create a new table/view, and then attach that to the data
source. Don't bother trying to update the original when you know you are
going to bulk load the data (if you were changing a handful of values, I
would say this is fine, but since you are essentially changing everything in
the table, it's a bad idea).
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
"John Richardson" <j3**********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl... I've been bothered for some time about my DataGrid not populating my rows very quickly. I have about 10K rows loading into the grid.
I create a datatable dt with 2 columns, an ID and a display. The ID is a member of the keys array. I then create a DataView dv over the table, and sort it by Display and ID column (in case of duplicate Display). I then set my DataGrid.DataSource = dv;
I then load the datatable with my rows, and this is what I find is very interesting, and any explanation would be very appreciated:
When the form loads, I call a method LoadList(). In this method, I test to see if the DataGrid.DataSource is null, and then I set it if TRUE. If the DataGrid.DataSource has already been set, then I leave it alone. I retrieve the datatable from the source, and load the table.
I can also call LoadList from a user request to refresh the grid.
At the Form.Load the rows are added very quickly to my datatable. At the user request, the rows are added at a factor of speed over 1000x slower, and the speed decreases as n, the number of rows, increases.
I then removed my test to see if the DataGrid.DataSource is null, and now I RESET the datasource each time the LoadList() method is called. So, I recreate my DataTable, Styles each time. And, my speed is lightning fast again. Apart from resetting the datasource, all the code is the same.
I have a feeling that it could be related to either sorting, or some kind of event handling firing for each row in the grid each time the grid is added to. It has to be something related to the size of n... but I don't know what it could be. Anyone with any experience with this?
Thanks for the reply, but I am still a bit confused or maybe just annoyed.
Isn't there a way to achieve the same result without re-assigning a new
datatable? There seems to be a wealth of methods/properties for indicating
that event handling should be suspended. The following is my preparation
before loading the grid, and I guess I'm surprised that it isn't enough:
CurrencyManager c = this.BindingContext[this.DataSource] as CurrencyManager;
if (c != null)
c.SuspendBinding();
this.SuspendLayout
this.Visible = fa;se
dt.BeginLoadData
dt.Clear
....Loading here
and the display is still being updated after each row is being added?!
haha. What I find confusing, I guess, is that the datasource is already set
to the grid when I load it, so regardless of whether or not there were
already rows in the grid or not should not seemingly affect the loading of
the table? And if it's the sorting, then I understand it even less.
Although I already know the solution, I really hate it when I don't
understand why. I guess there is some kind of optimizations happening under
the hood that have a negative impact in this case. Oh well.
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:OY****************@TK2MSFTNGP14.phx.gbl... John,
You are pretty much right in your guess. What you want to do is set the data source to null, or create a new instance of the table/view, and then bind to that.
The reason for the slowdown is that every row that is modified in some way will have to be refreshed in the grid somehow (every change triggers a refresh of the view). On top of that, the sorting might be affected, as you suspect.
So, just create a new table/view, and then attach that to the data source. Don't bother trying to update the original when you know you are going to bulk load the data (if you were changing a handful of values, I would say this is fine, but since you are essentially changing everything in the table, it's a bad idea).
Hope this helps.
-- - Nicholas Paldino [.NET/C# MVP] - mv*@spam.guard.caspershouse.com
"John Richardson" <j3**********@hotmail.com> wrote in message news:%2****************@TK2MSFTNGP10.phx.gbl... I've been bothered for some time about my DataGrid not populating my rows very quickly. I have about 10K rows loading into the grid.
I create a datatable dt with 2 columns, an ID and a display. The ID is a member of the keys array. I then create a DataView dv over the table, and sort it by Display and ID column (in case of duplicate Display). I then set my DataGrid.DataSource = dv;
I then load the datatable with my rows, and this is what I find is very interesting, and any explanation would be very appreciated:
When the form loads, I call a method LoadList(). In this method, I test to see if the DataGrid.DataSource is null, and then I set it if TRUE. If the DataGrid.DataSource has already been set, then I leave it alone. I retrieve the datatable from the source, and load the table.
I can also call LoadList from a user request to refresh the grid.
At the Form.Load the rows are added very quickly to my datatable. At the user request, the rows are added at a factor of speed over 1000x slower, and the speed decreases as n, the number of rows, increases.
I then removed my test to see if the DataGrid.DataSource is null, and now I RESET the datasource each time the LoadList() method is called. So, I recreate my DataTable, Styles each time. And, my speed is lightning fast again. Apart from resetting the datasource, all the code is the same.
I have a feeling that it could be related to either sorting, or some kind of event handling firing for each row in the grid each time the grid is added to. It has to be something related to the size of n... but I don't know what it could be. Anyone with any experience with this?
John,
There might be, but honestly, it isn't worth it. What do you achieve by
NOT assigning a new data table? You end up with a bunch of extra code to
perform virtually the same operation (or at the least, which has pretty much
the same effect).
Suspending the binding, the layout, setting the visibility of the grid
to false... It's all excessive.
If you are insistent on not changing the data source, then check out the
BeginInit and EndInit methods on the data grid. They may help, as they are
the implementations to ISupportInitialize, which is meant to help with the
batch setting of properties.
If you are using .NET 2.0, then this documentation from the
SuspendBinding method should help as well:
This method prevents changes from being pushed into the data source but does
not prevent changes in the data source from affecting the bound controls.
Controls that use complex data binding, such as the DataGridView control,
update their values based on change events such as the ListChanged event.
Calling this method will not prevent these events from occurring. If you
need to suspend change events, you can bind your controls to a BindingSource
object and set the RaiseListChangedEvents property to false.
One would think that BeginLoadData and EndLoadData on the data table
would help here, but it doesn't prevent the change events from firing, so
they don't help.
Just curious, why do you not want to just bind to a new table?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
"John Richardson" <j3**********@hotmail.com> wrote in message
news:uU**************@TK2MSFTNGP12.phx.gbl... Thanks for the reply, but I am still a bit confused or maybe just annoyed. Isn't there a way to achieve the same result without re-assigning a new datatable? There seems to be a wealth of methods/properties for indicating that event handling should be suspended. The following is my preparation before loading the grid, and I guess I'm surprised that it isn't enough:
CurrencyManager c = this.BindingContext[this.DataSource] as CurrencyManager; if (c != null) c.SuspendBinding(); this.SuspendLayout this.Visible = fa;se dt.BeginLoadData dt.Clear ...Loading here
and the display is still being updated after each row is being added?! haha. What I find confusing, I guess, is that the datasource is already set to the grid when I load it, so regardless of whether or not there were already rows in the grid or not should not seemingly affect the loading of the table? And if it's the sorting, then I understand it even less.
Although I already know the solution, I really hate it when I don't understand why. I guess there is some kind of optimizations happening under the hood that have a negative impact in this case. Oh well. "Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in message news:OY****************@TK2MSFTNGP14.phx.gbl... John,
You are pretty much right in your guess. What you want to do is set the data source to null, or create a new instance of the table/view, and then bind to that.
The reason for the slowdown is that every row that is modified in some way will have to be refreshed in the grid somehow (every change triggers a refresh of the view). On top of that, the sorting might be affected, as you suspect.
So, just create a new table/view, and then attach that to the data source. Don't bother trying to update the original when you know you are going to bulk load the data (if you were changing a handful of values, I would say this is fine, but since you are essentially changing everything in the table, it's a bad idea).
Hope this helps.
-- - Nicholas Paldino [.NET/C# MVP] - mv*@spam.guard.caspershouse.com
"John Richardson" <j3**********@hotmail.com> wrote in message news:%2****************@TK2MSFTNGP10.phx.gbl... I've been bothered for some time about my DataGrid not populating my rows very quickly. I have about 10K rows loading into the grid.
I create a datatable dt with 2 columns, an ID and a display. The ID is a member of the keys array. I then create a DataView dv over the table, and sort it by Display and ID column (in case of duplicate Display). I then set my DataGrid.DataSource = dv;
I then load the datatable with my rows, and this is what I find is very interesting, and any explanation would be very appreciated:
When the form loads, I call a method LoadList(). In this method, I test to see if the DataGrid.DataSource is null, and then I set it if TRUE. If the DataGrid.DataSource has already been set, then I leave it alone. I retrieve the datatable from the source, and load the table.
I can also call LoadList from a user request to refresh the grid.
At the Form.Load the rows are added very quickly to my datatable. At the user request, the rows are added at a factor of speed over 1000x slower, and the speed decreases as n, the number of rows, increases.
I then removed my test to see if the DataGrid.DataSource is null, and now I RESET the datasource each time the LoadList() method is called. So, I recreate my DataTable, Styles each time. And, my speed is lightning fast again. Apart from resetting the datasource, all the code is the same.
I have a feeling that it could be related to either sorting, or some kind of event handling firing for each row in the grid each time the grid is added to. It has to be something related to the size of n... but I don't know what it could be. Anyone with any experience with this?
I actually don't care about creating a new DataTable, and I've already
switched it that way (much to the relief of my users, no doubt). The reason
it was done this way is historical... I used to use the Infragistics grid,
but it was old and buggy with certain things, so I replaced it with the
DataGrid. With the Inf. grid, resetting the datasource would reset the
layout (column widths, specifically), which wasn't desirable, and
clearing/reloading the Datatable was fast. The slowness is really
unexpected with the MS datagrid.
I agree with the code being excessive. TBH, some of it is debugging code to
figure out how to get it to load faster. I'll probably remove it now.
As for sending ListChanged events, because I set the datasource BEFORE
loading the grid in both cases, I don't quite see how having a new datatable
or a cleared datatable would make such a dramatic difference in loading
times (ie: they should both be slow!?). I'm going to chalk it up to a
gotcha, and remember it for the next time.
Thanks alot for the feedback, though.
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in
message news:%2****************@TK2MSFTNGP12.phx.gbl... John,
There might be, but honestly, it isn't worth it. What do you achieve by NOT assigning a new data table? You end up with a bunch of extra code to perform virtually the same operation (or at the least, which has pretty much the same effect).
Suspending the binding, the layout, setting the visibility of the grid to false... It's all excessive.
If you are insistent on not changing the data source, then check out the BeginInit and EndInit methods on the data grid. They may help, as they are the implementations to ISupportInitialize, which is meant to help with the batch setting of properties.
If you are using .NET 2.0, then this documentation from the SuspendBinding method should help as well:
This method prevents changes from being pushed into the data source but does not prevent changes in the data source from affecting the bound controls. Controls that use complex data binding, such as the DataGridView control, update their values based on change events such as the ListChanged event. Calling this method will not prevent these events from occurring. If you need to suspend change events, you can bind your controls to a BindingSource object and set the RaiseListChangedEvents property to false.
One would think that BeginLoadData and EndLoadData on the data table would help here, but it doesn't prevent the change events from firing, so they don't help.
Just curious, why do you not want to just bind to a new table?
-- - Nicholas Paldino [.NET/C# MVP] - mv*@spam.guard.caspershouse.com "John Richardson" <j3**********@hotmail.com> wrote in message news:uU**************@TK2MSFTNGP12.phx.gbl... Thanks for the reply, but I am still a bit confused or maybe just annoyed. Isn't there a way to achieve the same result without re-assigning a new datatable? There seems to be a wealth of methods/properties for indicating that event handling should be suspended. The following is my preparation before loading the grid, and I guess I'm surprised that it isn't enough:
CurrencyManager c = this.BindingContext[this.DataSource] as CurrencyManager; if (c != null) c.SuspendBinding(); this.SuspendLayout this.Visible = fa;se dt.BeginLoadData dt.Clear ...Loading here
and the display is still being updated after each row is being added?! haha. What I find confusing, I guess, is that the datasource is already set to the grid when I load it, so regardless of whether or not there were already rows in the grid or not should not seemingly affect the loading of the table? And if it's the sorting, then I understand it even less.
Although I already know the solution, I really hate it when I don't understand why. I guess there is some kind of optimizations happening under the hood that have a negative impact in this case. Oh well. "Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in message news:OY****************@TK2MSFTNGP14.phx.gbl... John,
You are pretty much right in your guess. What you want to do is set the data source to null, or create a new instance of the table/view, and then bind to that.
The reason for the slowdown is that every row that is modified in some way will have to be refreshed in the grid somehow (every change triggers a refresh of the view). On top of that, the sorting might be affected, as you suspect.
So, just create a new table/view, and then attach that to the data source. Don't bother trying to update the original when you know you are going to bulk load the data (if you were changing a handful of values, I would say this is fine, but since you are essentially changing everything in the table, it's a bad idea).
Hope this helps.
-- - Nicholas Paldino [.NET/C# MVP] - mv*@spam.guard.caspershouse.com
"John Richardson" <j3**********@hotmail.com> wrote in message news:%2****************@TK2MSFTNGP10.phx.gbl... I've been bothered for some time about my DataGrid not populating my rows very quickly. I have about 10K rows loading into the grid.
I create a datatable dt with 2 columns, an ID and a display. The ID is a member of the keys array. I then create a DataView dv over the table, and sort it by Display and ID column (in case of duplicate Display). I then set my DataGrid.DataSource = dv;
I then load the datatable with my rows, and this is what I find is very interesting, and any explanation would be very appreciated:
When the form loads, I call a method LoadList(). In this method, I test to see if the DataGrid.DataSource is null, and then I set it if TRUE. If the DataGrid.DataSource has already been set, then I leave it alone. I retrieve the datatable from the source, and load the table.
I can also call LoadList from a user request to refresh the grid.
At the Form.Load the rows are added very quickly to my datatable. At the user request, the rows are added at a factor of speed over 1000x slower, and the speed decreases as n, the number of rows, increases.
I then removed my test to see if the DataGrid.DataSource is null, and now I RESET the datasource each time the LoadList() method is called. So, I recreate my DataTable, Styles each time. And, my speed is lightning fast again. Apart from resetting the datasource, all the code is the same.
I have a feeling that it could be related to either sorting, or some kind of event handling firing for each row in the grid each time the grid is added to. It has to be something related to the size of n... but I don't know what it could be. Anyone with any experience with this?
John,
While I can sympathize with your experience with the Infragistics grid,
the correlation you make is like saying all red objects are apples (the
point being, that most apples are red, but the inverse does not apply).
My assumption with you setting the data source was that you would
actually add a completely filled new table as your data source, preventing
the need for excessive updates to the grid upon each addition of a row to
the grid.
However, this doesn't make much of a difference. Clearing a table
actually requires a bit of overhead. It has to cycle through all the rows,
and set the properties of each row to dissociate it from the data table. It
also performs an operation where it cycles through every column, for every
row (producing an operation that takes R * C, without counting the
additional R operations). This can take a little bit of time, depending on
how large the data set is. For your initial example of 10K rows and 2
columns, thats 30K iterations just to clear.
Then, you have to take the time to re-load the data. If you use a new
table, you eliminate the cost from before. However, the overhead of the
events firing and the grid picking up on each change exists (for 10K
records, that's a lot of updates).
Compare that to just the initial rendering operation that you perform if
you load the data table separately (still R operations, but less than R * N
(where N is a constant cost of firing the change event which the data grid
picks up and acts on)), and then you set the data source to that table, it's
a big difference.
Hopefully, this is a little more along the lines of what you were
looking for.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
"John Richardson" <j3**********@hotmail.com> wrote in message
news:%2****************@TK2MSFTNGP14.phx.gbl... I actually don't care about creating a new DataTable, and I've already switched it that way (much to the relief of my users, no doubt). The reason it was done this way is historical... I used to use the Infragistics grid, but it was old and buggy with certain things, so I replaced it with the DataGrid. With the Inf. grid, resetting the datasource would reset the layout (column widths, specifically), which wasn't desirable, and clearing/reloading the Datatable was fast. The slowness is really unexpected with the MS datagrid.
I agree with the code being excessive. TBH, some of it is debugging code to figure out how to get it to load faster. I'll probably remove it now.
As for sending ListChanged events, because I set the datasource BEFORE loading the grid in both cases, I don't quite see how having a new datatable or a cleared datatable would make such a dramatic difference in loading times (ie: they should both be slow!?). I'm going to chalk it up to a gotcha, and remember it for the next time.
Thanks alot for the feedback, though. "Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in message news:%2****************@TK2MSFTNGP12.phx.gbl... John,
There might be, but honestly, it isn't worth it. What do you achieve by NOT assigning a new data table? You end up with a bunch of extra code to perform virtually the same operation (or at the least, which has pretty much the same effect).
Suspending the binding, the layout, setting the visibility of the grid to false... It's all excessive.
If you are insistent on not changing the data source, then check out the BeginInit and EndInit methods on the data grid. They may help, as they are the implementations to ISupportInitialize, which is meant to help with the batch setting of properties.
If you are using .NET 2.0, then this documentation from the SuspendBinding method should help as well:
This method prevents changes from being pushed into the data source but does not prevent changes in the data source from affecting the bound controls. Controls that use complex data binding, such as the DataGridView control, update their values based on change events such as the ListChanged event. Calling this method will not prevent these events from occurring. If you need to suspend change events, you can bind your controls to a BindingSource object and set the RaiseListChangedEvents property to false.
One would think that BeginLoadData and EndLoadData on the data table would help here, but it doesn't prevent the change events from firing, so they don't help.
Just curious, why do you not want to just bind to a new table?
-- - Nicholas Paldino [.NET/C# MVP] - mv*@spam.guard.caspershouse.com "John Richardson" <j3**********@hotmail.com> wrote in message news:uU**************@TK2MSFTNGP12.phx.gbl... Thanks for the reply, but I am still a bit confused or maybe just annoyed. Isn't there a way to achieve the same result without re-assigning a new datatable? There seems to be a wealth of methods/properties for indicating that event handling should be suspended. The following is my preparation before loading the grid, and I guess I'm surprised that it isn't enough:
CurrencyManager c = this.BindingContext[this.DataSource] as CurrencyManager; if (c != null) c.SuspendBinding(); this.SuspendLayout this.Visible = fa;se dt.BeginLoadData dt.Clear ...Loading here
and the display is still being updated after each row is being added?! haha. What I find confusing, I guess, is that the datasource is already set to the grid when I load it, so regardless of whether or not there were already rows in the grid or not should not seemingly affect the loading of the table? And if it's the sorting, then I understand it even less.
Although I already know the solution, I really hate it when I don't understand why. I guess there is some kind of optimizations happening under the hood that have a negative impact in this case. Oh well. "Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.com> wrote in message news:OY****************@TK2MSFTNGP14.phx.gbl... John,
You are pretty much right in your guess. What you want to do is set the data source to null, or create a new instance of the table/view, and then bind to that.
The reason for the slowdown is that every row that is modified in some way will have to be refreshed in the grid somehow (every change triggers a refresh of the view). On top of that, the sorting might be affected, as you suspect.
So, just create a new table/view, and then attach that to the data source. Don't bother trying to update the original when you know you are going to bulk load the data (if you were changing a handful of values, I would say this is fine, but since you are essentially changing everything in the table, it's a bad idea).
Hope this helps.
-- - Nicholas Paldino [.NET/C# MVP] - mv*@spam.guard.caspershouse.com
"John Richardson" <j3**********@hotmail.com> wrote in message news:%2****************@TK2MSFTNGP10.phx.gbl... > I've been bothered for some time about my DataGrid not populating my > rows very quickly. I have about 10K rows loading into the grid. > > I create a datatable dt with 2 columns, an ID and a display. The ID > is a member of the keys array. > I then create a DataView dv over the table, and sort it by Display and > ID column (in case of duplicate Display). > I then set my DataGrid.DataSource = dv; > > I then load the datatable with my rows, and this is what I find is > very interesting, and any explanation would be very appreciated: > > When the form loads, I call a method LoadList(). In this method, I > test to see if the DataGrid.DataSource is null, and then I set it if > TRUE. > If the DataGrid.DataSource has already been set, then I leave it > alone. > I retrieve the datatable from the source, and load the table. > > I can also call LoadList from a user request to refresh the grid. > > At the Form.Load the rows are added very quickly to my datatable. > At the user request, the rows are added at a factor of speed over > 1000x slower, and the speed decreases as n, the number of rows, > increases. > > I then removed my test to see if the DataGrid.DataSource is null, and > now I RESET the datasource each time the LoadList() method is called. > So, I recreate my DataTable, Styles each time. And, my speed is > lightning fast again. Apart from resetting the datasource, all the > code is the same. > > I have a feeling that it could be related to either sorting, or some > kind of event handling firing for each row in the grid each time the > grid is added to. It has to be something related to the size of n... > but I don't know what it could be. Anyone with any experience with > this? > > > >
This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Matthew |
last post by:
I am not the most talented programmer to grace the earth by a long
shot. But I've got a gripe I need to air about the .NET implementaion
of Visual Basic. I can live with alot of the major changes...
|
by: RickN |
last post by:
We have a C# remoting application that runs thru the web. Assemblies appear
to be loaded from the download cache. Is there any way to have them
automatically copied to the GAC and be loaded from...
|
by: Sunny |
last post by:
Hi,
I am using Databases in my applications, i have a table with an average of 3.5 million records, i am trying to show the search results in a DataGrid from that table, but the results take a very...
|
by: Beren |
last post by:
Hi all
I'm almost braindead on this one, but how can I create a master/detail
datagrid
in this format :
CatA
subcatA1
subcatA2
subcatA3
|
by: Bala |
last post by:
Hi,
Currently i am loading the file names into datagrid (unbound) from a
folder(sub folders too). so for this i am using this below code. but its too
slow to loading all the file names. is it...
|
by: Rob |
last post by:
I am trying to copy some data from one datagrid to another. The first
datagrid containing data is called DocList. The blank Datagrid that I am
trying to copy some data to is called DataGrid1.
...
|
by: natrajsr |
last post by:
Hi,
I want to load the data of a excel sheet or in the exact excel
sheet format into a Rich TextBox control.
I have already worked with loading WORD into a Rich TextBox. It is
working fine.;...
|
by: rn5a |
last post by:
When the EditCommandColumn in a DataGrid is clicked, all the
BoundColumns get replaced by TextBoxes so that users can alter the
data. By default, the Text in the TextBoxes are left-aligned. Is...
|
by: cj2 |
last post by:
I can't remember and can't find my notes anywhere. There were a couple
of commands that when used with I think the data adapter that allowed
for faster reading or writing of tables. I think one...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
|
by: Rahul1995seven |
last post by:
Introduction:
In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
|
by: Johno34 |
last post by:
I have this click event on my form. It speaks to a Datasheet Subform
Private Sub Command260_Click()
Dim r As DAO.Recordset
Set r = Form_frmABCD.Form.RecordsetClone
r.MoveFirst
Do
If...
|
by: DizelArs |
last post by:
Hi all)
Faced with a problem, element.click() event doesn't work in Safari browser.
Tried various tricks like emulating touch event through a function:
let clickEvent = new Event('click', {...
| |