Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~546 People Reached
Favorite Forums
Member Avatar for cljlxwater

OleDbConnection thisConnection = new OleDbConnection( @"Provider = Microsoft.Jet.OLEDB.4.0;Data Source=e:\DataMoney.mdb"); OleDbDataAdapter thisAdapter = new OleDbDataAdapter( "SELECT * FROM SchoolMoney", thisConnection); DataSet thisDataSet = new DataSet(); thisAdapter.Fill(thisDataSet, "SchoolMoney"); OleDbCommandBuilder thisBuilder = new OleDbCommandBuilder(thisAdapter); thisBuilder.QuotePrefix = "["; thisBuilder.QuoteSuffix = "]"; //set up keys object for defining primary key DataColumn[] keys = new DataColumn[1]; …

Member Avatar for cljlxwater
0
69
Member Avatar for cljlxwater

hello, i want to guide dates from Excel to use in C# Form . can you tell me how to do ? or, i should look which books ? thank you

Member Avatar for mcriscolo
0
91
Member Avatar for cljlxwater

if i define a array, for example private int[] lendMoney = new int[10]; do i can use a use property to match this private array? thank you

Member Avatar for Rashakil Fol
0
110
Member Avatar for cljlxwater

private void ToolStripButtonBold_CheckedChanged(object sender, EventArgs e) { Font oldFont; Font newFont; bool checkState = ((ToolStripButton)sender).Checked; //Get the font that is being used in the selected text. oldFont = this.richTextBoxText.SelectionFont; if (!checkState) newFont = new Font(oldFont, oldFont.Style & ~FontStyle.Bold); else newFont = new Font(oldFont, oldFont.Style | FontStyle.Bold); //Insert the new font …

Member Avatar for LizR
0
108
Member Avatar for cljlxwater

hello, i've intalled framework2.0,but i still can't use ArrayList in the .NET 2003. Why? thank you

Member Avatar for Rashakil Fol
0
80
Member Avatar for cljlxwater

hello , i've intalled .NET 2003 and framework1.1 . if i want to use the some methods from framework2.0. please tell me do you have methods?

Member Avatar for cljlxwater
0
88