Hello,
[1] I have created one data report(student report).
[2] which shows records of students as per the fields selected from various combos situated at form2 for that I wrote a record set (bunch of sql statements) fired on command_click and it works well.....
[3] Now I am having fields like: FIRST_NAME,MIDDLE_NAME,LAST_NAME in database table
[4] For that I have to take one TextBox as FULLNAME which is not included in table but I have to concatenate these 3 fields to view FULLNAME......
[5] I don't know how to do so.......
Loading
Vinay SinghPosted Jul 18, 2016, 2:11 AM
dt.Rows[0]["LAST_NAME"].ToString();
Hima BinduPosted Jul 18, 2016, 1:50 AM
If you need only one space please remove the concatenations in Rajeesh Code
For ex: SELECTFIRST_NAME +MIDDLE_NAME +''+ LAST_NAMEAsFULLNAMEFROMTable_Name
ketan borsdiyaPosted Jul 18, 2016, 12:34 AM
anurag guhePosted Jul 17, 2016, 2:07 PM
Rajeesh MenothPosted Jul 17, 2016, 12:33 PM