根据选择c#

时间:2016-02-11 12:10:48

标签: c# sql datagridview

我一直试图找到答案,我完全迷失了。 我有一个以登录屏幕开头的应用程序,在客户端登录后,它会打开一个MDI表单,其中我在菜单条上有一些项目。其中一个是资产(这是应用程序将用于的),资产菜单有一个下拉列表,可以选择不同的资产,PC,软件等。

单击PC时,另一个窗口在MDI表单中打开,其上有一个DataGridView。它工作得很好但是,我不想为我的数据库中的每个连接或表创建一个窗口,我觉得这是不好的做法。

所以我想要的是,能够根据资产选择改变DGV,但对于我的生活,我无法弄清楚如何做到这一点。我一直试图将参数从一种形式传递到另一种形式,但我只是得到了不同的错误等。

你能指点我正确的方向吗?我是视觉工作室等的新手,想要学习这些东西,所以我不是要求免费赠品,而是逻辑应该看起来或多或少。

感谢名单!!

enter image description here DGV

1 个答案:

答案 0 :(得分:0)

I don't have code for what I'm trying to do because I have no idea what the logic should look like.

I'm still trying wrap my head around how two forms communicate in a way I need. I'm used having variables in a loop and when they change values the result changes. But in visual studio everything needs to be called which makes it a bit difficult for a rookie like me.

I did try sending sql commands via variables, but read that, that is a very bad idea.

I just want the DGV to change the data its showing based on a button selection.