Click here to Skip to main content
16,006,531 members

Comments by zahra1991 (Top 23 by date)

zahra1991 22-Jan-12 10:40am View    
hey thanx alot . i need some help from u . if i give u my code then would help me in putting the scores ?
zahra1991 2-Jan-12 4:37am View    
oh ok thanx alot , i am creating thread for the time time .. i really dont have any idea regarding threads . kindly can u guide me about Win32 API threading functions ?
zahra1991 21-Dec-11 13:18pm View    
yeah u are right have made some changes but the black eye balls are not moving plz have alook what should i do ?
zahra1991 21-Dec-11 13:13pm View    
have tried this so far but the black eye balls are not moving :( what should i do ?
zahra1991 21-Dec-11 13:13pm View    
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication5
{
public partial class Form1 : Form
{

public Form1()
{
InitializeComponent();
}

private void Form1_Paint(object sender, PaintEventArgs e)
{
e.Graphics.DrawEllipse(Pens.Red, 50, 50, 100, 100);
}

private void Form1_Paint_1(object sender, PaintEventArgs e)
{
e.Graphics.FillEllipse(new SolidBrush(Color.White), 200, 100, 100, 100);
e.Graphics.FillEllipse(new SolidBrush(Color.Black), 210, 110, 30, 30);
}

private void Form1_MouseMove(object sender, MouseEventArgs e)
{


}

private void Form1_Load(object sender, EventArgs e)
{

}

private void pictureBox1_MouseMove(object sender, MouseEventArgs e)
{
int mouseX = e.X;
int mouseY = e.Y;

}