示例#1
0
 public OmegleBot(frmSpy ff, System.Drawing.Color chatCol, OmegleBot OtherTwin, PictureBox recaptcha, TextBox textCaptcha, Label _lblCaptchaId, ToolStripStatusLabel _lblBotStatus)
 {
     f = ff;
     chatColor = chatCol;
     otherBot = OtherTwin;
     pbCaptcha = recaptcha;
     txtCaptcha = textCaptcha;
     lblCaptchaId = _lblCaptchaId;
     lblBotStatus = _lblBotStatus;
     delHandleEvents = new HandleEventsDelegate(HandleEvents);
 }
示例#2
0
 public OmegleBot(frmSpy ff, System.Drawing.Color chatCol, OmegleBot OtherTwin, PictureBox recaptcha, TextBox textCaptcha, Label _lblCaptchaId, ToolStripStatusLabel _lblBotStatus)
 {
     f               = ff;
     chatColor       = chatCol;
     otherBot        = OtherTwin;
     pbCaptcha       = recaptcha;
     txtCaptcha      = textCaptcha;
     lblCaptchaId    = _lblCaptchaId;
     lblBotStatus    = _lblBotStatus;
     delHandleEvents = new HandleEventsDelegate(HandleEvents);
 }
示例#3
0
 public frmSpy()
 {
     InitializeComponent();
     Bot1 = new OmegleBot(this, Color.Red, Bot2, pbCaptcha, txtCaptchaResponse, lblCaptchaId, lblBotStatus);
     Bot2 = new OmegleBot(this, Color.Blue, Bot1, pbCaptcha2, txtCaptchaResponse2, lblCaptchaId2, lblBotStatus2);
 }
示例#4
0
 public frmSpy()
 {
     InitializeComponent();
     Bot1 = new OmegleBot(this, Color.Red, Bot2, pbCaptcha, txtCaptchaResponse, lblCaptchaId, lblBotStatus);
     Bot2 = new OmegleBot(this, Color.Blue, Bot1, pbCaptcha2, txtCaptchaResponse2, lblCaptchaId2, lblBotStatus2);
 }