معادل این کد به زبان vb.net چی میشه
string ReportPath = "D:\\YourReport.frx";
Report FReport = new Report();
string ConStr = "Your ConnectionString";
FReport.Preview = previewControl1;
FReport.Load(ReportPath);
FReport.Dictionary.Connections[0].ConnectionString = ConStr;
TableDataSource TBL = new TableDataSource
TBL = FReport.GetDataSource("YourTable") as TableDataSource
TBL.SelectCommand = ("SELECT * FROM YourTable");
FReport.Show
این TableDataSourceچیه؟
ایکاش یه مثال از فست ریپورت بود