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
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
DateTime.DaysInMonth() is enough for me. Thank you...
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
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
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