- من کدی که نوشتی رو نگرفتم (درک نکردم). این خط های برنامه برای چیه؟
- من ایده ای ندارم (که این خط ها چی هستن). ولی برنامه بدون این ها کار نمی کنه!
- ۹۲/۱۰/۰۵
- من کدی که نوشتی رو نگرفتم (درک نکردم). این خط های برنامه برای چیه؟
- من ایده ای ندارم (که این خط ها چی هستن). ولی برنامه بدون این ها کار نمی کنه!
using System.Data;
using System.Data.SqlClient;
pictureBox1.BackgroundImage = Image.FromFile("i:\\y.jpg");
pictureBox1.Image.RotateFlip(RotateFlipType.Rotate180FlipX);
pictureBox1.Refresh();
موفق باشید.
for (int s = 0; s {
button1_Click(null, null);
System.Threading.Thread.Sleep(500);
}
button1.Click(sender,e);
من پیشنهاد می کنم خودتون یه متد بصورت زیر بسازید و کد های مربوط به دکمه رو داخل این متد قرار دهید. سپس این متد رو در دکمه صدا بزنید. (کد های قبلی دکمه رو بعد از اینکه در داخل متد قرار دادید، پاک کنید و فقط متد رو صدا بزنید). این متد رو در حلقه for هم صدا بزنید. بصورت زیر:
حلقه for را بصورت زیر بازنویسی کنید:
for (int i = 0; i < 100; i++) { myMethod(); System.Threading.Thread.Sleep(100); }
using (Graphics g = Graphics.FromImage(img)) { g.FillRectangle(Brushes.Green, 0, 0, this.Width / 2, this.Height / 2); g.FillRectangle(Brushes.Yellow, 0, this.Height / 2, this.Width / 2, this.Height); g.FillRectangle(Brushes.Red, this.Width / 2, this.Height / 2, this.Width, this.Height); g.FillRectangle(Brushes.Blue, this.Width / 2, 0, this.Width, this.Height / 2); ggg = g; }
TextBox1.Text=e.X.ToString();
Graphics g = e.Graphics;Brush b = System.Drawing.Brushes.Yellow,b1 = System.Drawing.Brushes.Green,b2 = System.Drawing.Brushes.Red,b3 = System.Drawing.Brushes.Brown;g.FillRectangle(b, 0, 0, this.Width / 2, this.Height / 2);g.FillRectangle(b2, 0, this.Height / 2, this.Width / 2, this.Height);g.FillRectangle(b1, this.Width / 2, this.Height / 2, this.Width, this.Height);g.FillRectangle(b3, this.Width / 2, 0, this.Width, this.Height / 2);Bitmap bm = new Bitmap(this.Width, this.Height, g);Color pcolor = bm.GetPixel(this.Height / 3, this.Width / 3);label1.BackColor = pcolor;
سلام وققتون بخیر من میخواهم DLL ایجاد کنم ولی همش error زیر را می دهد.میشه لطف کنید و هرچه سریعتر جواب من را بدهید.با تشکر
The name 'connect' does not exist in the current context
که برنامه ام هم این هست :
private void button1_Click(object sender, EventArgs e)
{
strConnection =
"Data Source = " + textBox1.Text.Trim() + " ; Initial Catalog = " + textBox2.Text.Trim() + " ; Integrated Security =True";
connect =
new SqlConnection(strConnection);
Connect.Open();
MessageBox.Show("Connection OK");
}
}