Wrox Programmer Forums
Go Back   Wrox Programmer Forums > .NET > Other .NET > General .NET
|
General .NET For general discussion of MICROSOFT .NET topics that don't fall within any of the other .NET forum subcategories or .NET language forums.  If your question is specific to a language (C# or Visual Basic) or type of application (Windows Forms or ASP.Net) try an applicable forum category. ** PLEASE BE SPECIFIC WITH YOUR QUESTION ** When posting here, provide details regarding the Microsoft .NET language you are using and/or what type of application (Windows/Web Forms, etc) you are working in, if applicable to the question. This will help others answer the question without having to ask.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the General .NET section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 23rd, 2005, 01:47 PM
Registered User
 
Join Date: Aug 2005
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default Adding items to datagrid at runtime

I have a system.windows.forms.form with a datagrid in it. in the load method i bind a dataTable into it.
and i have a method that in runtime adds some items to the dataTable after an event. i did the following:

DataTable dataTable =(DataTable)dataGrid.dataSourse;
DataRow dataRow = dataTable.newRow();
dataRow[0] = "some string";
dataRow[1] = "another string";
dataTable.Rows.Add(dataRow);

it works, but when there are more than 10 items (the max display without a scrollBar), the scrollBar is added.
sometimes it's stuck, and if not, when adding a new item there are two scrollBars, and other freak things.
When adding items "slowly" it doesn't always do that, it happens when adding 4-5 items one after another.


Thanks in advance,
Hisham


 
Old August 24th, 2005, 02:11 AM
Registered User
 
Join Date: Aug 2005
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default

I got the solution (and i feel very stupid).
The dataGrid updates came from different threads, that's the reason for the problem.
I solved it using BeginInvoke.

Thanks,
Hisham





Similar Threads
Thread Thread Starter Forum Replies Last Post
adding items to list box using javascript k.manisha ASP.NET 1.0 and 1.1 Professional 3 February 16th, 2007 06:32 AM
Adding Menu Items using VB SamuelP ASP.NET 2.0 Professional 0 October 23rd, 2006 08:01 AM
Adding items to datagrid/Uploading files PT C# 0 September 9th, 2005 08:21 AM
Adding Items to the combobox from the second form Raghavendra_Mudugal C# 7 May 12th, 2005 06:12 AM
Adding items to ListBox on the client. chessgame General .NET 4 August 7th, 2004 12:05 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.