Monday, May 24, 2010

How to find the data rate/bandwidth of a node in d network..s any code available in c#.net?

If you're using sharepoint:





SPsite. Usageinfo. Bandwidth. ToString()





MSDN KB: SPGlobalAdmin Class


http://msdn2.microsoft.com/en-us/library...


How can I Compile C# (CIL) To Native Machine Code to distribute WITHOUT the .NET framework?

I make C# programs in .NET 2.0 and i want to be able to run these programs without the .NET framework. I have heard about using NGEN but i want an executable that can be run on other computers.

How can I Compile C# (CIL) To Native Machine Code to distribute WITHOUT the .NET framework?
http://www.xenocode.com/Products/Postbui...





Its a commercial product.


I have 10 datagrid views in a form i want to write a loop for it in c#.net.How do i wirte the code.?

I have written in this way


for(i=0;i%26lt;10;i++)


{


(DataGridView+i).DataSource=Da...


(DataGridView+i).Datamember=Da...


}


But for this iam getting a error .








Pls tell me how to write the code for the following.

I have 10 datagrid views in a form i want to write a loop for it in c#.net.How do i wirte the code.?
Sounds to me like you want a list of DataGridViews, so first you have to create the list.





Note you will need to declare System.Collections.Generic to have access to List.





using System.Collections.Generic;





dataGridViews = new List%26lt;DataGridView%26gt;();








Next you need to populate the list





dataGridVIews.Add( new DataGridView );





then to loop through it, simply do this:





foreach( DataGridView mGrid in dataGridViews )


{


mGrid.DataSource=blah;


mGrid.DataMember=blah;


}





This will loop through all of them in the list. I'm pretty sure you can also use your method and just use dataGridViews[i].DataSource=blah;





Hopefully that accomplishes what you needed.
Reply:for(i=0;i%26lt;10;i++)


{


(DataGridView+i+).DataSource=Da...


(DataGridView+i+).Datamember=Da...


}


The way it was before does not get that i is variable.


Hope this will work.


I have 10 datagrid views in a form i want to write a loop for it in c#.net.How do i wirte the code.?

I have written in this way


for(i=0;i%26lt;10;i++)


{


(datagridview+i).DataSource=DataSet;


(datagridView+i).Datamember=DatsSet.Ta...


}


But for this iam getting a error .








Pls tell me how to write the code for the following.

I have 10 datagrid views in a form i want to write a loop for it in c#.net.How do i wirte the code.?
for(i=0;i%26lt;10;i++)


{


(datagridview + i +).DataSource=Da...


(datagridView + i+ ).Datamember=Da...


}


The problem was taht the gridview is required to be appended.Hope this will work.And if the value of i is appened to the datasourse the way it was before will give error as the compiler does not know that it is the variable.So we require to append it the i have descrided

cabbage

How can i get programs of c computer language on net?

hi i wanna know that can i get the prorams of data structure in c on the net if u know plz reply imiditaly

How can i get programs of c computer language on net?
you can try


http://homework.teamtutorial.com/
Reply:http://en.wikibooks.org/wiki/Main_Page


its good
Reply:www.cprogramming.com/


www.codeproject.com


www.programmersheaven.com/
Reply:http://www.planet-source-code.com/


How can I pass multiple lines of text from text box to list box using c#.net?

I would like to enter multiple e-mail id's in text box at a time and get it stored in listbox. I also have to void the email_id which is already in the listbox with out entering any duplicates. I am using a button control also i.e., if I enter the value in textbox and press the button I want it to be in list box.





Hope my question is clear!! Can any one help? Thanks in advance

How can I pass multiple lines of text from text box to list box using c#.net?
Basically, you'll need a global array that holds all the values you want stored in the listbox. You'll bind that listbox's values to the array.





Or, if you prefer, you could declare a global DataTable or similar data structure, and store the values for the listbox in that, to make things simpler, if you're more comfortable using ADO.





Your button control will call a function that picks up the global array (or DataTable). It examines all entries in the array (using foreach or a reader or similar) to see if the entry is already in the array.





If not, you'll push the choice onto the end of the array (or add a record to the DataTable), then rebind the listbox with the array (or DataTable).
Reply:check out http://www.pscode.com for great sample codes.


I have done BCA now thinking to do MCA by distance (open uni) with it c# .net am i in right path for IT job?

IGNOU is the open univesity,for better career what should i do.

I have done BCA now thinking to do MCA by distance (open uni) with it c# .net am i in right path for IT job?
Special Education refers to children in school who have special learning needs.





If you are a student, please talk to your school counselor, they can set up a practice interview with you and give you specific advice.





a better category for this question might be the BUSINESS section under CAREERS





I hope this helps you in your job search!
Reply:Yes you are in right path. If you have completed BCA, why don't you start looking for an IT job while studying for MCA by distance education.





In IT Industry experience counts.