Click here to Skip to main content
15,902,189 members
Home / Discussions / C#
   

C#

 
GeneralRe: Cryptografy in .NET Pin
Anonymous31-Mar-04 3:58
Anonymous31-Mar-04 3:58 
GeneralRe: Cryptography in .NET Pin
Heath Stewart31-Mar-04 5:12
protectorHeath Stewart31-Mar-04 5:12 
GeneralCompilation Time and Date Pin
JM_FL31-Mar-04 3:01
JM_FL31-Mar-04 3:01 
GeneralRe: Compilation Time and Date Pin
Dave Kreskowiak31-Mar-04 3:21
mveDave Kreskowiak31-Mar-04 3:21 
GeneralRe: Compilation Time and Date Pin
leppie31-Mar-04 6:16
leppie31-Mar-04 6:16 
GeneralRe: Compilation Time and Date Pin
JM_FL31-Mar-04 6:40
JM_FL31-Mar-04 6:40 
GeneralDataGrids and XML Pin
Skylo31-Mar-04 2:42
Skylo31-Mar-04 2:42 
GeneralRe: DataGrids and XML Pin
Charlie Williams31-Mar-04 4:09
Charlie Williams31-Mar-04 4:09 
You don't need to use an XmlReader to display your data in a DataGrid. You can use the ReadXml method of DataSet and then assign that DataSet to be the data source of the grid in question.
DataSet ds = new DataSet();
ds.ReadXml(@"C:\MyXmlFile.xml");
MyDataGrid.SetDataBinding(ds, "MyTable");
Apply a DataGridTableStyle to gain more control over how the data is displayed.

Charlie

if(!curlies){ return; }
GeneralPaste nodes Pin
bertcox31-Mar-04 1:53
bertcox31-Mar-04 1:53 
GeneralRe: Paste nodes Pin
partyganger31-Mar-04 4:44
partyganger31-Mar-04 4:44 
GeneralRe: Paste nodes Pin
partyganger31-Mar-04 4:44
partyganger31-Mar-04 4:44 
GeneralLoad Huge Data to SQL Server Pin
mhmoud rawas31-Mar-04 0:32
mhmoud rawas31-Mar-04 0:32 
GeneralRe: Load Huge Data to SQL Server Pin
Mazdak31-Mar-04 1:33
Mazdak31-Mar-04 1:33 
GeneralRe: Load Huge Data to SQL Server Pin
Heath Stewart31-Mar-04 4:54
protectorHeath Stewart31-Mar-04 4:54 
GeneralRe: Load Huge Data to SQL Server Pin
mhmoud rawas31-Mar-04 9:36
mhmoud rawas31-Mar-04 9:36 
GeneralRe: Load Huge Data to SQL Server Pin
Heath Stewart31-Mar-04 9:39
protectorHeath Stewart31-Mar-04 9:39 
GeneralRe: Load Huge Data to SQL Server Pin
ian mariano31-Mar-04 6:35
ian mariano31-Mar-04 6:35 
GeneralRe: Load Huge Data to SQL Server Pin
Jesse Squire1-Apr-04 7:23
Jesse Squire1-Apr-04 7:23 
GeneralRe: Load Huge Data to SQL Server Pin
mhmoud rawas2-Apr-04 4:26
mhmoud rawas2-Apr-04 4:26 
GeneralTextBox control Pin
Andy H31-Mar-04 0:27
Andy H31-Mar-04 0:27 
GeneralRe: TextBox control Pin
leppie31-Mar-04 6:19
leppie31-Mar-04 6:19 
GeneralClose resource Open by a web cam Pin
Daminda30-Mar-04 22:34
Daminda30-Mar-04 22:34 
GeneralRe: Close resource Open by a web cam Pin
Dave Kreskowiak31-Mar-04 3:26
mveDave Kreskowiak31-Mar-04 3:26 
GeneralAttributes Pin
Appelz30-Mar-04 20:36
Appelz30-Mar-04 20:36 
GeneralRe: Attributes Pin
Mazdak30-Mar-04 20:46
Mazdak30-Mar-04 20:46 

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.