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

C#

 
QuestionStereo Image Rectification Software! Pin
farid_colombia13-Nov-08 15:06
farid_colombia13-Nov-08 15:06 
AnswerRe: Stereo Image Rectification Software! Pin
Dave Kreskowiak13-Nov-08 18:24
mveDave Kreskowiak13-Nov-08 18:24 
GeneralRe: Stereo Image Rectification Software! Pin
farid_colombia13-Nov-08 18:57
farid_colombia13-Nov-08 18:57 
QuestionC# XNA & and the dreaded Global Variables Pin
Zircon13-Nov-08 14:54
Zircon13-Nov-08 14:54 
AnswerRe: C# XNA & and the dreaded Global Variables Pin
DaveyM6913-Nov-08 15:47
professionalDaveyM6913-Nov-08 15:47 
AnswerRe: C# XNA & and the dreaded Global Variables Pin
Mycroft Holmes13-Nov-08 16:49
professionalMycroft Holmes13-Nov-08 16:49 
QuestionRe: C# XNA & and the dreaded Global Variables Pin
Zircon14-Nov-08 1:53
Zircon14-Nov-08 1:53 
QuestionDataGridView <-> xml: can load but can´t save Pin
nelsonpaixao13-Nov-08 13:28
nelsonpaixao13-Nov-08 13:28 
Hi,

I have a DGV that load´s a table from a xml file, but after i make changes i can´t save them, see bellow. Help me debug this

Class_Helper.DataSet_Xml = new DataSet();
Class_Helper.Assembly_This = Assembly.GetExecutingAssembly();
Class_Helper.Stream_Resource = Class_Helper.Assembly_This.GetManifestResourceStream(Class_Helper.ResourceXml_login); // the xml file here
Class_Helper.DataSet_Xml.ReadXml(Class_Helper.Stream_Resource);

DataRow DataRow_user = Class_Helper.DataSet_Xml.Tables[0].NewRow();
DataRow_user["id"] = 10;
DataRow_user["f_name"] = ToolStripTextBox_FName.Text;
DataRow_user["l_name"] = ToolStripTextBox_LName.Text;
DataRow_user["username"] = ToolStripTextBox_Username.Text;
DataRow_user["password"] = ToolStripTextBox_Password.Text;
DataRow_user["role"] = ToolStripComboBox_Role.Text;
Class_Helper.DataSet_Xml.Tables[0].Rows.Add(DataRow_user);

DataGridView_Administrator.DataSource = Class_Helper.DataSet_Xml.Tables[0];
            
Class_Helper.DataSet_Xml.WriteXml(Class_Helper.ResourceXml_login, XmlWriteMode.WriteSchema);


Thanks Big Grin | :-D

nelsonpaixao@yahoo.com.br

trying to help & get help

QuestionSend http link to Asterisk server Pin
Kit Fisto13-Nov-08 13:24
Kit Fisto13-Nov-08 13:24 
Questioncall MFC-dialog from managed code Pin
Yevgen Lisovenko13-Nov-08 8:16
Yevgen Lisovenko13-Nov-08 8:16 
AnswerRe: call MFC-dialog from managed code Pin
Edmundpaida8-Oct-12 0:24
Edmundpaida8-Oct-12 0:24 
Questionreading XML Pin
Planker13-Nov-08 8:01
Planker13-Nov-08 8:01 
AnswerRe: reading XML Pin
Ennis Ray Lynch, Jr.13-Nov-08 8:08
Ennis Ray Lynch, Jr.13-Nov-08 8:08 
GeneralRe: reading XML Pin
Planker13-Nov-08 8:26
Planker13-Nov-08 8:26 
GeneralRe: reading XML Pin
Ennis Ray Lynch, Jr.13-Nov-08 8:36
Ennis Ray Lynch, Jr.13-Nov-08 8:36 
GeneralRe: reading XML Pin
Planker13-Nov-08 8:46
Planker13-Nov-08 8:46 
AnswerRe: reading XML Pin
Wendelius13-Nov-08 8:40
mentorWendelius13-Nov-08 8:40 
GeneralRe: reading XML Pin
Planker13-Nov-08 9:12
Planker13-Nov-08 9:12 
GeneralRe: reading XML Pin
Wendelius13-Nov-08 9:21
mentorWendelius13-Nov-08 9:21 
AnswerRe: reading XML Pin
netJP12L13-Nov-08 8:48
netJP12L13-Nov-08 8:48 
AnswerRe: reading XML Pin
sph3rex13-Nov-08 8:50
sph3rex13-Nov-08 8:50 
AnswerRe: reading XML [modified] Pin
Planker13-Nov-08 9:33
Planker13-Nov-08 9:33 
GeneralRe: reading XML Pin
sph3rex13-Nov-08 10:45
sph3rex13-Nov-08 10:45 
GeneralRe: reading XML Pin
Planker14-Nov-08 6:43
Planker14-Nov-08 6:43 
AnswerRe: reading XML Pin
Planker14-Nov-08 10:12
Planker14-Nov-08 10:12 

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.