2
Answers

make string bold in c#

Photo of priyanka

priyanka

7y
191
1
Hello,
 
How to make string bold in c#,or any alternative to use this.
 
string ss="welcome happy"
 
suppose the value of ss,i want to make it bold ,so how, i can do this.
Actually i want to pass this string for printing content and printer does not support html.
 
Plz suggest me this.
 
 
 
 

Answers (2)

3
Photo of Tapan Patel
NA 8.1k 101k 7y
  1. Select DeptName, sum(salaries)  
  2. from   
  3. T1   
  4. inner join T2 on T1.empid=T2.empid  
  5. group by DeptName  
please mark it as answer if it addresses the issue.
1
Photo of Ravi Sangtani
NA 806 6k 7y
Hi, bala krishna
 
you can write below query....
 
select T1.d_name, sum(T2.salaries) from T1,T2 where T1.id=T2.id group by T1.d_name 
 
NOTE : d_name is department name
 
Happy Coding...
 
Thank you,
(Ravi D. Sangtani)