Click here to Skip to main content
15,888,984 members
Home / Discussions / C#
   

C#

 
GeneralRe: datagridview doesn´t show the datasource Pin
OriginalGriff6-Apr-14 23:00
mveOriginalGriff6-Apr-14 23:00 
GeneralRe: datagridview doesn´t show the datasource Pin
tom_ma6-Apr-14 23:08
tom_ma6-Apr-14 23:08 
GeneralRe: datagridview doesn´t show the datasource Pin
OriginalGriff6-Apr-14 23:24
mveOriginalGriff6-Apr-14 23:24 
GeneralRe: datagridview doesn´t show the datasource Pin
tom_ma7-Apr-14 0:14
tom_ma7-Apr-14 0:14 
GeneralRe: datagridview doesn´t show the datasource Pin
OriginalGriff7-Apr-14 0:25
mveOriginalGriff7-Apr-14 0:25 
GeneralRe: datagridview doesn´t show the datasource Pin
tom_ma7-Apr-14 1:38
tom_ma7-Apr-14 1:38 
GeneralRe: datagridview doesn´t show the datasource Pin
OriginalGriff7-Apr-14 1:43
mveOriginalGriff7-Apr-14 1:43 
GeneralRe: datagridview doesn´t show the datasource Pin
tom_ma7-Apr-14 1:55
tom_ma7-Apr-14 1:55 
this is testInfo class:

C#
public class TestInfoClass : INotifyPropertyChanged
    {
        private string fileName;

        
        private List<BLF_InfoClass> information;

        public event PropertyChangedEventHandler PropertyChanged;

        public string FileName
        {
            get
            {
                return this.fileName;
            }
            set
            {
                this.fileName = value;
                this.OnPropertyChanged("BlfFileName");
            }
        }

       public List<InfoClass> Information
        {
            get
            {
                return this.information;
            }
            set
            {
               this.information = value;
                this.OnPropertyChanged("Information");
            }
        }

        private void OnPropertyChanged(string propertyName)
        {
            if (this.PropertyChanged != null)
            {
                this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }
    }

and this is list_to_dgv (UC_Configuration is a Form)
C#
public partial class UC_ChannelConfiguration : UserControl
   {


       public UC_ChannelConfiguration()
       {
           InitializeComponent();

       }

       public void seedatagrid(List<BLF_InfoClass> liste2)
       {
           dgv_TraceItems.DataSource = liste2;

       }


     }

GeneralRe: datagridview doesn´t show the datasource Pin
OriginalGriff7-Apr-14 2:19
mveOriginalGriff7-Apr-14 2:19 
GeneralRe: datagridview doesn´t show the datasource Pin
tom_ma7-Apr-14 4:04
tom_ma7-Apr-14 4:04 
GeneralRe: datagridview doesn´t show the datasource Pin
OriginalGriff7-Apr-14 4:42
mveOriginalGriff7-Apr-14 4:42 
GeneralRe: datagridview doesn´t show the datasource Pin
tom_ma7-Apr-14 20:32
tom_ma7-Apr-14 20:32 
GeneralRe: datagridview doesn´t show the datasource Pin
OriginalGriff7-Apr-14 21:01
mveOriginalGriff7-Apr-14 21:01 
Questionbutton not disabled Pin
Member 107293186-Apr-14 19:27
Member 107293186-Apr-14 19:27 
AnswerRe: button not disabled Pin
Pete O'Hanlon6-Apr-14 19:53
mvePete O'Hanlon6-Apr-14 19:53 
GeneralRe: button not disabled Pin
Jay Nardev13-Apr-14 7:50
Jay Nardev13-Apr-14 7:50 
GeneralRe: button not disabled Pin
Pete O'Hanlon13-Apr-14 7:57
mvePete O'Hanlon13-Apr-14 7:57 
Questionhow to add all ip address of client to listview when client connected server Pin
Member 107057406-Apr-14 18:15
Member 107057406-Apr-14 18:15 
AnswerRe: how to add all ip address of client to listview when client connected server Pin
Richard MacCutchan6-Apr-14 21:24
mveRichard MacCutchan6-Apr-14 21:24 
QuestionDoes anyone knows how to extract .pkg file in C# .Net 3.5 ? Pin
Thant Thi6-Apr-14 17:34
professionalThant Thi6-Apr-14 17:34 
AnswerRe: Does anyone knows how to extract .pkg file in C# .Net 3.5 ? Pin
Mycroft Holmes6-Apr-14 19:15
professionalMycroft Holmes6-Apr-14 19:15 
AnswerRe: Does anyone knows how to extract .pkg file in C# .Net 3.5 ? Pin
Pete O'Hanlon6-Apr-14 19:52
mvePete O'Hanlon6-Apr-14 19:52 
QuestionDevexpress gridview conditional row color based on value Pin
Member 106494956-Apr-14 11:52
Member 106494956-Apr-14 11:52 
QuestionFrom project to other project in one solution Pin
Member 97331316-Apr-14 3:55
Member 97331316-Apr-14 3:55 
AnswerRe: From project to other project in one solution Pin
Peter Leow6-Apr-14 4:50
professionalPeter Leow6-Apr-14 4:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.