What I have been doing is setting a parameter to a string value and assigning a textbox to that parameter. As an example:

The text box contains
Code:
=Parameters!prmDates.Value
Code:
Dim paramList As New Generic.List(Of Microsoft.Reporting.WinForms.ReportParameter)

paramList.Add(New Microsoft.Reporting.WinForms.ReportParameter("prmDates", strDates))
Now I would like to put some data in a Table in a similar fashion (where the data is computed at runtime, not stored in a database). All the tutorials seems to force you to setup a query to fill the table. Is there any way to fill it manually, ie. Table1.Row(0).Column(0) = "Hello world" ?

Thanks,

Dave