Click here to Skip to main content
16,008,010 members

Comments by ashishtanwar88 (Top 2 by date)

ashishtanwar88 27-Jan-14 5:41am View    
Initial i was using that information in character (starting 200 characters) but in some cases last word not full displaying.

example :

"In an attempt to facilitate the learning process of students, the book aims at bringing out the conceptual aspects of biochemistry in a magnified view with a complete picture of the context in a diffe"

Last word is difference but it showing only "diffe" because 200 characters limit finished. this issue i need to resolve. I want end of given information with complete word.

I am using sql 2005 with vs 2008. i am retrieving this information from a table named as Book_Information and the column name is Overview.

My current code is :
Dim Bkdesc as String
Bkdesc = RsProdesc("Overview")
Bkdesc = Bkdesc.Substring(0, 200)
ashishtanwar88 27-Jan-14 5:25am View    
Initial i was using that information in character (starting 200 characters) but in some cases last word not full displaying.

example :

"In an attempt to facilitate the learning process of students, the book aims at bringing out the conceptual aspects of biochemistry in a magnified view with a complete picture of the context in a diffe"

Last word is difference but it showing only "diffe" because 200 characters limit finished. this issue i need to resolve. I want end of given information with complete word.

I am using sql 2005 with vs 2008. i am retrieving this information from a table named as Book_Information and the column name is Overview.

My current code is :

Dim Bkdesc as String

Bkdesc = RsProdesc("Overview")
Bkdesc = Bkdesc.Substring(0, 200)