473,778 Members | 1,862 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Multiple datagridviews same form

I am using VB within VS 2005. How can I have multiple datagridviews on the
same form pulling from the same table? e.g. I want to see all clients from
New York in one view and all clients from LA in another view on the same
form. I've set up a parameterized tableadapter and pass it the city. How can
I load the two views in VB code when the form loads?

Thanks,

Tom
Sep 29 '06 #1
3 4482

Hi Tom,

Pull all of your data into a dataset and then just create two dataviews from
your dataset. Then assign each dataview to a separate grid.

ex:

.....code to load dataset

Dim dv1 As DataView = New DataView(ds.Tab le ("MyTableName") , "city=NY", "",
DataViewRowStat e.CurrentRows)

Dim dv2 As DataView = New DataView(ds.Tab le ("MyTableName") , "city=LA", "",
DataViewRowStat e.CurrentRows)

--
Franklin M. Gauer III
Applications Development Manager
Integrated Companies, Inc.
"TomH" wrote:
I am using VB within VS 2005. How can I have multiple datagridviews on the
same form pulling from the same table? e.g. I want to see all clients from
New York in one view and all clients from LA in another view on the same
form. I've set up a parameterized tableadapter and pass it the city. How can
I load the two views in VB code when the form loads?

Thanks,

Tom
Sep 29 '06 #2

....or (thinking more in terms of performance) just call your table adapter
query twice - once for LA and once for NY - assigning the results to a
different dataset (i.e. create two datasets in your client application). Then
assign each dataset to a different grid.

You can essentially have as many datasets as you want in your app:

ex:

Dim ds as new system.data.dat aset
Dim ds2 as new system.data.dat aset
Dim ds3 as new system.data.dat aset

....and just fill each one of them up with different calls to your table
adapter.

--
Franklin M. Gauer III
Applications Development Manager
Integrated Companies, Inc.
"Franklin M. Gauer III" wrote:
>
Hi Tom,

Pull all of your data into a dataset and then just create two dataviews from
your dataset. Then assign each dataview to a separate grid.

ex:

....code to load dataset

Dim dv1 As DataView = New DataView(ds.Tab le ("MyTableName") , "city=NY", "",
DataViewRowStat e.CurrentRows)

Dim dv2 As DataView = New DataView(ds.Tab le ("MyTableName") , "city=LA", "",
DataViewRowStat e.CurrentRows)

--
Franklin M. Gauer III
Applications Development Manager
Integrated Companies, Inc.
"TomH" wrote:
I am using VB within VS 2005. How can I have multiple datagridviews on the
same form pulling from the same table? e.g. I want to see all clients from
New York in one view and all clients from LA in another view on the same
form. I've set up a parameterized tableadapter and pass it the city. How can
I load the two views in VB code when the form loads?

Thanks,

Tom
Sep 29 '06 #3
Thanks for the responses. Creating multiple datasets works. However, I would
prefer to create my datasets and dataviews on the form at design time, rather
than create them on the fly at runtime. It also appears multiple datasets
will require me to create duplicate queries (in seperate tableadapters),
resulting in more difficult maintenance if the query changes.

Thanks again,

Tom

"Franklin M. Gauer III" wrote:
>
...or (thinking more in terms of performance) just call your table adapter
query twice - once for LA and once for NY - assigning the results to a
different dataset (i.e. create two datasets in your client application). Then
assign each dataset to a different grid.

You can essentially have as many datasets as you want in your app:

ex:

Dim ds as new system.data.dat aset
Dim ds2 as new system.data.dat aset
Dim ds3 as new system.data.dat aset

...and just fill each one of them up with different calls to your table
adapter.

--
Franklin M. Gauer III
Applications Development Manager
Integrated Companies, Inc.
"Franklin M. Gauer III" wrote:

Hi Tom,

Pull all of your data into a dataset and then just create two dataviews from
your dataset. Then assign each dataview to a separate grid.

ex:

....code to load dataset

Dim dv1 As DataView = New DataView(ds.Tab le ("MyTableName") , "city=NY", "",
DataViewRowStat e.CurrentRows)

Dim dv2 As DataView = New DataView(ds.Tab le ("MyTableName") , "city=LA", "",
DataViewRowStat e.CurrentRows)

--
Franklin M. Gauer III
Applications Development Manager
Integrated Companies, Inc.
"TomH" wrote:
I am using VB within VS 2005. How can I have multiple datagridviews on the
same form pulling from the same table? e.g. I want to see all clients from
New York in one view and all clients from LA in another view on the same
form. I've set up a parameterized tableadapter and pass it the city. How can
I load the two views in VB code when the form loads?
>
Thanks,
>
Tom
Oct 2 '06 #4

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

Similar topics

2
1708
by: jpenn44 | last post by:
I have multiple datagridviews on one form. I am allowing editing in the grid, and am performing error checking. I am validating the data, if it isn't valid, I am cancelling any other events fired. My problem is, I am validating in grid A, if they click in Grid B, I am popping up a message box informing them of the error, but if they click ok on the message box, and then click in grid B again, it goes on. The following is a code...
2
983
by: martin1 | last post by:
all, is it possible to have more than one DataGridView within one Form? I try to bind dataset to different DatagridViews. Thanks
0
1224
by: hangdee | last post by:
I want to create 2 same structure datagridview in a form. But when I set same column name in datagridview, it prompts that same name is used by another component. So is it true that we cannot have same column names for 2 datagridview in the same form? I have a function to format the 2 datagridviews, so I cannot use column names to refer?
0
1564
by: Bruce HS | last post by:
I use DataGridViews for the detail part of lots of Master/Detail entry forms. This time I need the user to see a dozen fields all at once for each detail record, and the best way to do this would be to show two or three lines of controls for each record (not just scroll off to the right). Can I get the DataGridView to allow multiple rows per record, or is there some other control I should use?
7
15661
by: =?Utf-8?B?TG9zdEluTUQ=?= | last post by:
Hi All :) I'm converting VB6 using True DBGrid Pro 8.0 to VB2005 using DataGridView. True DBGrid has a MultipleLines property that controls whether individual records span multiple lines. Is there an equivalent property for the DataGridView? I have searched, but have not found one. I would like the user to be able to see all the columns of the table on one screen - thus eliminating the need to use the horizontal scroll bar to view...
10
2092
by: =?Utf-8?B?UGV0ZXI=?= | last post by:
I'm using this coding to get 2 resultsets thru datareader and then load them into 2 datatables and bind the datatables to datagridviews. But sdrGrid.NextResult() is returning false for some reason. Is that possible the connection is closed? Dim strConn As String = "Server=localhost;Database=northwind;" + _ "Integrated Security=SSPI" Dim cnnNwind As SqlConnection = New SqlConnection(strConn) Try Dim strSql As String = "select * from...
0
978
by: Chris | last post by:
I have two datagridviews on a form that are linked via a datarelation. I am using: "foreach ( DataGridViewRow tripRow in scenario_TripsDataGridView.Rows )" to loop thru all the rows in the parent datagridview. For each parent row I want to get values out of each child datagridview row also. The child datagridview has DataGridViewComboBoxColumn columns that I want to get the formatedvalue from so I do not want to get data from the...
1
1481
by: Stefan Hoffmann | last post by:
hi @ll, VS2008, .Net 2.0 (migrated source from VS2003) I have a form with three DataGrids (not DataGridViews). When I set the CaptionFont in the designer, it is not correctly persisted. It will be displayed correctly in the designer view. After (re-)building the solution, the value for the font is neither set in Form.Designer.cs nor in Form.resx nor Form.en.resx.
6
4157
by: Gun Slinger | last post by:
Hi guys, I have a quick question which i have pondered for a little while. I'm not sure if its even a good idea (so maybe advice on whether or not to do it would be helpful as well). I want to have my first datagridview to have a multi-select (which i have currently), but what i want to happen when multiple rows are selected is different. I have a sub datagridview which is using a relationship in a dataset which allows the two...
0
9465
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
10296
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
10127
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
10068
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
8954
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
7474
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
5370
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
5497
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4031
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

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.