Dataset and values on MS Report

谁都会走 提交于 2019-12-10 11:37:32

问题


  1. Added DataSet Add->New Item
  2. Create DataTable1 on DataSet1

  3. Added two columns ValueA, ValueB both int16

  4. Added two values by using this code on Form Load.

      Dim workRow As DataRow = DataSet1.DataTable1.NewRow()
        DataSet1.DataTable1.Rows.Add(New Object() {270, 300})
    
  5. Added a ReportViewer on Form2

  6. Created the Report and put the values from datasource on it.

    When i run the program it won't show me the values on report :S :S :S

If someone can edit this links and put images instead

来源:https://stackoverflow.com/questions/27361113/dataset-and-values-on-ms-report

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!