Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
SMK
Starting Member
6 Posts |
Posted - 2012-02-22 : 00:14:43
|
can a text be associated with a dataset.SMK :) |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-02-22 : 00:16:59
|
sorry thats not clear. if you're asking on how to show data from dataset you need to use expression like=Fields!YourField.Value------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
SMK
Starting Member
6 Posts |
Posted - 2012-02-22 : 00:24:10
|
sorry, can i associate a textbox to a dataset.SMK :) |
|
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2012-02-22 : 00:29:03
|
yep..but keep in mind that a textbox can show only single value at a time so you need to apply some kind of aggregation over field with scope as datasetsomething likeFirst(Fields!yourField.value,"dataset")Max(Fields!yourField.value,"dataset")Sum(Fields!yourField.value,"dataset") ...------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
|
|
|