hai all, i am using .net 2005.i doing my project in vb.net windows application.i want to display nos like 1,2,3,4 in horizontally in details section of crystal report for visual studio.net. i have stored nos 1,2,3,4 in sql 2000 server.then i extract these datas from sql 2000 server and to display the nos 1,2,3,4 in crystalreport. in my project,these nos are displayed in vertical like follow, output: bill nos are 1 2 3 4 i don't want above output in vertical.i want output in horizontal like follow: billnos are 1,2,3,4
|
| Author: sathyanarayanan 12 Jun 2008 | Member Level: Silver | Rating: Points: 2 |
hai all, its very urgent...plz help...the above question can't understand nplz ask me...
|
| Author: jayapragash.D 12 Jun 2008 | Member Level: Gold | Rating: Points: 2 |
hai sathya use this code String incomedetid="";
for (int x = 0; x <= DataTable.rows.Count;x++) { incomedetid = incomedetid + DataTable.Rows[x]["Values"].ToString() + ","; } incomedetid = incomedetid.Remove(incomedetid.Length - 1, 1);
Regards D.Jayapragash
|