
how display all data from a sql command in a textbox/richtex
i have problem in displaying the result from a sql command in my textbox,it only display just a word,but i want to display all of it just like in this picture


Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Upendra Pratap ShahiPosted Jun 29, 2015, 1:16 AM
Upendra Pratap ShahiPosted Jun 29, 2015, 4:43 AM
King UmarPosted Jun 29, 2015, 4:22 AM
Upendra Pratap ShahiPosted Jun 29, 2015, 3:58 AM
public class Test : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; private string _PropertyText = string.Empty; public string PropertyText { get { return _PropertyText; } set { _PropertyText = value; OnPropertyChanged("PropertyText"); } } private void OnPropertyChanged(string propertyName) { if (PropertyChanged != null) PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } }rtxt_chatLog.DataBindings.Add("Text", t, "PropertyText");
King UmarPosted Jun 29, 2015, 3:44 AM
Dim cmd As SqlCommand
need help,still just a word not all of it
Upendra Pratap ShahiPosted Jun 29, 2015, 2:15 AM
King UmarPosted Jun 29, 2015, 2:05 AM