Click here to Skip to main content
16,004,833 members
Home / Discussions / C#
   

C#

 
GeneralHiiiii developers, I am interested with C# Pin
Anas Nawwaf Alhussein17-Apr-05 6:25
Anas Nawwaf Alhussein17-Apr-05 6:25 
GeneralRe: Hiiiii developers, I am interested with C# Pin
eggie517-Apr-05 6:33
eggie517-Apr-05 6:33 
GeneralRe: Hiiiii developers, I am interested with C# Pin
DavidNohejl17-Apr-05 6:41
DavidNohejl17-Apr-05 6:41 
GeneralRe: Hiiiii developers, I am interested with C# Pin
Imran Adam18-Apr-05 6:57
Imran Adam18-Apr-05 6:57 
GeneralUsing WebServices Pin
alexdg0417-Apr-05 5:24
alexdg0417-Apr-05 5:24 
GeneralRe: Using WebServices Pin
MoustafaS17-Apr-05 14:17
MoustafaS17-Apr-05 14:17 
Generaldisplaying data in datagrid...?? 2nd try Pin
Imran Adam17-Apr-05 5:18
Imran Adam17-Apr-05 5:18 
GeneralRe: displaying data in datagrid...?? 2nd try Pin
Polis Pilavas17-Apr-05 14:48
Polis Pilavas17-Apr-05 14:48 
A simple example:

//Load data from the XML document into a dataSet<br />
DataSet ds = new DataSet();<br />
ds.ReadXml("99999.xml");<br />
<br />
//Show all of the records instead of the table name and the "+" symbol<br />
this.dataGrid1.DataSource = ds.Tables[0].DefaultView;<br />
<br />
//No adding of new rows through dataview is to take place<br />
CurrencyManager cm = (CurrencyManager)this.BindingContext[this.dataGrid1.DataSource, this.dataGrid1.DataMember];      <br />
((DataView)cm.List).AllowNew = false;<br />
<br />
//# of Rows (records) in the dataGrid<br />
this.dataGrid1.CaptionText = "Total Tasks: " + dataGrid1.BindingContext[dataGrid1.DataSource, dataGrid1.DataMember].Count.ToString();


Hope this helps

Regards,
Polis

Can you practice what you teach?
QuestionI want to get the value of a curve from a .jpg file? Pin
Member 185560817-Apr-05 4:15
Member 185560817-Apr-05 4:15 
AnswerRe: I want to get the value of a curve from a .jpg file? Pin
Christian Graus17-Apr-05 14:29
protectorChristian Graus17-Apr-05 14:29 
GeneralI got stuck with streamwriter and cryptostream classes Pin
Mohammed Aijaz Mohiuddin17-Apr-05 4:05
Mohammed Aijaz Mohiuddin17-Apr-05 4:05 
GeneralRe: I got stuck with streamwriter and cryptostream classes Pin
Kodanda Pani17-Apr-05 19:13
Kodanda Pani17-Apr-05 19:13 
GeneralRe: I got stuck with streamwriter and cryptostream classes Pin
Mohammed Aijaz Mohiuddin17-Apr-05 22:15
Mohammed Aijaz Mohiuddin17-Apr-05 22:15 
GeneralRe: I got stuck with streamwriter and cryptostream classes Pin
zagzagzag18-Apr-05 1:28
zagzagzag18-Apr-05 1:28 
GeneralRe: I got stuck with streamwriter and cryptostream classes Pin
Kodanda Pani18-Apr-05 18:41
Kodanda Pani18-Apr-05 18:41 
GeneralExporting Chartfx graph to excel.... Pin
sunilv7816-Apr-05 19:16
sunilv7816-Apr-05 19:16 
GeneralRe: Exporting Chartfx graph to excel.... Pin
Heath Stewart16-Apr-05 23:51
protectorHeath Stewart16-Apr-05 23:51 
GeneralRe: Exporting Chartfx graph to excel.... Pin
eggie517-Apr-05 4:34
eggie517-Apr-05 4:34 
GeneralProgressBar ,I can't get it Pin
MoustafaS16-Apr-05 12:07
MoustafaS16-Apr-05 12:07 
GeneralRe: ProgressBar ,I can't get it Pin
Polis Pilavas17-Apr-05 14:58
Polis Pilavas17-Apr-05 14:58 
GeneralDrawing over controls Pin
Ista16-Apr-05 11:29
Ista16-Apr-05 11:29 
GeneralRe: Drawing over controls Pin
MoustafaS16-Apr-05 12:02
MoustafaS16-Apr-05 12:02 
GeneralRe: Drawing over controls Pin
Ista16-Apr-05 12:27
Ista16-Apr-05 12:27 
GeneralRe: Drawing over controls Pin
MoustafaS16-Apr-05 14:35
MoustafaS16-Apr-05 14:35 
GeneralRe: Drawing over controls Pin
Ista16-Apr-05 16:30
Ista16-Apr-05 16:30 

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.