Click here to Skip to main content
15,903,175 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to Convert C++ unsigned char * to C# byte[] Pin
Michel Godfroid25-Apr-10 23:45
Michel Godfroid25-Apr-10 23:45 
AnswerRe: How to Convert C++ unsigned char * to C# byte[] Pin
Luc Pattyn26-Apr-10 0:58
sitebuilderLuc Pattyn26-Apr-10 0:58 
QuestionSaving the execution of website as XML file Pin
aforaries25-Apr-10 10:41
aforaries25-Apr-10 10:41 
AnswerRe: Saving the execution of website as XML file Pin
Ravi Bhavnani25-Apr-10 15:41
professionalRavi Bhavnani25-Apr-10 15:41 
AnswerRe: Saving the execution of website as XML file Pin
Luc Pattyn25-Apr-10 16:26
sitebuilderLuc Pattyn25-Apr-10 16:26 
GeneralRe: Saving the execution of website as XML file Pin
aforaries25-Apr-10 23:59
aforaries25-Apr-10 23:59 
GeneralRe: Saving the execution of website as XML file Pin
Luc Pattyn26-Apr-10 0:41
sitebuilderLuc Pattyn26-Apr-10 0:41 
QuestionHow to extract data from DataGridView in csharp smart device????? Pin
Tunisien8625-Apr-10 8:34
Tunisien8625-Apr-10 8:34 
Hello everybody,
I develop a GMAO csharp smart device application using Visual studio 2008.I try to show my data stocked in my tables in my database .sdf.I use DataGridView tool.I add in the proprietes of my dataGridView the table i wanna show its data.My DataGridViewForm's code is:
using System;
using System.Linq;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
 
namespace ModeDifféré
{
    public partial class DataGridT : Form
    {
        public DataGridT()
        {
            InitializeComponent();
        }
 
        private void DataGridT_Load(object sender, EventArgs e)
        {
            // TODO: This line of code loads data into the 'baseGmaoLocaleDataSet2.Travaux' table. You can move, or remove it, as needed.
            this.travauxTableAdapter.Fill(this.baseGmaoLocaleDataSet2.Travaux);
 
        }
 
        private void dataGrid1_CurrentCellChanged(object sender, EventArgs e)
        {
 
        }
    }
}
But the problem is when running,an error occurs :
<pre>The column name is not valid. [ Node name (if any) = ,Column name = Effectué/Non ]

what is the problem?
Any help will be very helpful
Smile | :)
Regards

AnswerRe: How to extract data from DataGridView in csharp smart device????? Pin
Michel Godfroid25-Apr-10 10:00
Michel Godfroid25-Apr-10 10:00 
QuestionAssign a variable a series of values Pin
Wogboiii25-Apr-10 3:41
Wogboiii25-Apr-10 3:41 
AnswerRe: Assign a variable a series of values Pin
#realJSOP25-Apr-10 3:49
professional#realJSOP25-Apr-10 3:49 
GeneralRe: Assign a variable a series of values Pin
Wogboiii25-Apr-10 3:51
Wogboiii25-Apr-10 3:51 
GeneralRe: Assign a variable a series of values Pin
PIEBALDconsult25-Apr-10 5:38
mvePIEBALDconsult25-Apr-10 5:38 
AnswerRe: Assign a variable a series of values [modified] Pin
PIEBALDconsult25-Apr-10 4:03
mvePIEBALDconsult25-Apr-10 4:03 
GeneralRe: Assign a variable a series of values Pin
Wogboiii25-Apr-10 4:06
Wogboiii25-Apr-10 4:06 
GeneralRe: Assign a variable a series of values Pin
PIEBALDconsult25-Apr-10 4:20
mvePIEBALDconsult25-Apr-10 4:20 
AnswerRe: Assign a variable a series of values Pin
Moreno Airoldi25-Apr-10 4:40
Moreno Airoldi25-Apr-10 4:40 
GeneralRe: Assign a variable a series of values Pin
harold aptroot25-Apr-10 4:42
harold aptroot25-Apr-10 4:42 
GeneralRe: Assign a variable a series of values Pin
PIEBALDconsult25-Apr-10 4:56
mvePIEBALDconsult25-Apr-10 4:56 
GeneralRe: Assign a variable a series of values Pin
Moreno Airoldi25-Apr-10 6:21
Moreno Airoldi25-Apr-10 6:21 
GeneralRe: Assign a variable a series of values Pin
Moreno Airoldi25-Apr-10 6:21
Moreno Airoldi25-Apr-10 6:21 
GeneralRe: Assign a variable a series of values Pin
harold aptroot25-Apr-10 6:26
harold aptroot25-Apr-10 6:26 
GeneralRe: Assign a variable a series of values Pin
Moreno Airoldi25-Apr-10 6:33
Moreno Airoldi25-Apr-10 6:33 
GeneralRe: Assign a variable a series of values Pin
PIEBALDconsult25-Apr-10 6:42
mvePIEBALDconsult25-Apr-10 6:42 
GeneralRe: Assign a variable a series of values Pin
Moreno Airoldi25-Apr-10 6:48
Moreno Airoldi25-Apr-10 6:48 

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.