Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
C

clj19870503

@clj19870503
About
Posts
6
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • about DataRow
    C clj19870503

    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]; keys[0] = thisDataSet.Tables["SchoolMoney"].Columns[0]; thisDataSet.Tables["SchoolMoney"].PrimaryKey = keys; DataRow findRow = thisDataSet.Tables["SchoolMoney"].Rows.Find(this.textBox1.Text); if (findRow != null) { // } thisConnection.Close(); } } } can you tell me how i get the number of row about findRow thank you

    C#

  • Excel and C#
    C clj19870503

    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

    C# tutorial csharp question

  • about dynamic change a expressions in methods
    C clj19870503

    hello, for example, i have three Textbox and a button int the Form(textBox1,textBox2,textBox3, button2). private void button2_Click(object sender, EventArgs e) { int temp; temp = int.Parse(textBox2.Text) + int.Parse(textBox1.Text); textBox3.Text = temp.ToString(); } A question is : i have two roles (system administrator and commmon user) in this software. if i have written this button2_Click(), can i let system administrator change button2_Click() when software is running. eg,temp = int.Parse(textBox2.Text) * int.Parse(textBox1.Text); instead of temp = int.Parse(textBox2.Text) + int.Parse(textBox1.Text); thank you

    C# tutorial question

  • about array and property
    C clj19870503

    for exampel , do i use this : this.testProtery[0].TestProtery; i don't understand, thank you .

    C# data-structures regex

  • about array and property
    C clj19870503

    if i use this code, do it have no sense private int[] testProtery = new int[3]; public int[] TestProtery { get { return this.testProtery; } set { this.testProtery = value; } } i want to uee the property to match the private filed of testProtery, i feel this code don't work. please let me understand. thank you

    C# data-structures regex

  • about const member function
    C clj19870503

    class Text { public: void bad( const string &parm ) const; private: char *_text; }; void Text::bad( const string &parm ) const { _text = parm.c_str(); // error: _text cannot be modified for ( int ix = 0; ix < parm.size(); ++ix ) _text[ix] = parm[ix]; // bad style but not an error } this example show a pointer refer change a data member in the const member function , why?

    C / C++ / MFC help tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups