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
M

memix

@memix
About
Posts
5
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How can I delete a row record with C# 2005 in an access table?
    M memix

    Dear friends, Let say I have a connection from C# 2005 to MS Access database and table name "personal", and dataset name "myDataSet". How can I delete a current row record from that dataset also in access database? Thanks in advise...

    memix

    C# question csharp database

  • How can I determine total day size of a specific month?
    M memix

    DateTime.DaysInMonth() is enough for me. Thank you...

    memix

    C# question tutorial

  • How can I determine total day size of a specific month?
    M memix

    Hi dear friends, How can I determine "day size" of a specific month using a MonthCalender or a DateTimePicker? --- For example, I put a MonthCalender to my form and it shows the 2007-April month. How can I manage my software that shows me the "April 2007 has totally 30 days" Thanks...

    memix

    C# question tutorial

  • How can I build a ListBox array?
    M memix

    Dear friends, Thanks for all of you, I succeed it, it works what I want, at the end my solution is here: public int numberOfListBoxes =0; ListBox[] lbArray; private void button1_Click(object sender, EventArgs e) { numberOfListBoxes = Convert.ToInt32(textBox1.Text); lbArray = new ListBox[numberOfListBoxes]; int i; int listBoxDistances=100; for (i = 0; i < numberOfListBoxes; i++) { lbArray[i] = new ListBox(); this.lbArray[i].Location = new System.Drawing.Point(100+(i*listBoxDistances), 200); this.lbArray[i].Name = "lbArray"+"["+i+"]"; this.lbArray[i].Size = new System.Drawing.Size(57, 100); this.lbArray[i].TabIndex = 2; this.lbArray[i].Text = "lb"; this.Controls.Add( lbArray[i]); }

    memix

    C# question data-structures

  • How can I build a ListBox array?
    M memix

    Hi everybody, I need to constitute a ListBox array (like listBox[i]) , which the user can add various number of listboxes to form in runtime. Is there any way to do that? Thanks... memix

    C# question data-structures
  • Login

  • Don't have an account? Register

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