登录
首页 » C# » Csharpyanzhengma

Csharpyanzhengma

于 2010-03-05 发布 文件大小:206KB
0 186
下载积分: 1 下载次数: 243

代码说明:

  用C#写的验证码识别源码,需要的童鞋下载修改吧!(With code written in C# source code identifying the need to modify the bar of children' s shoes to download!)

文件列表:

WindowsFormsApplication6
........................\WindowsFormsApplication6

........................\........................\bin
........................\........................\...\Debug
........................\........................\...\.....\WindowsFormsApplication6.exe
........................\........................\...\.....\WindowsFormsApplication6.pdb
........................\........................\...\.....\WindowsFormsApplication6.vshost.exe
........................\........................\...\.....\WindowsFormsApplication6.vshost.exe.manifest
........................\........................\Form1.cs
........................\........................\Form1.Designer.cs
........................\........................\Form1.resx
........................\........................\obj
........................\........................\...\Debug
........................\........................\...\.....\Refactor
........................\........................\...\.....\TempPE
........................\........................\...\.....\WindowsFormsApplication6.csproj.FileListAbsolute.txt
........................\........................\...\.....\WindowsFormsApplication6.csproj.GenerateResource.Cache
........................\........................\...\.....\WindowsFormsApplication6.exe
........................\........................\...\.....\WindowsFormsApplication6.Form1.resources
........................\........................\...\.....\WindowsFormsApplication6.pdb
........................\........................\...\.....\WindowsFormsApplication6.Properties.Resources.resources
........................\........................\Program.cs
........................\........................\Properties
........................\........................\..........\AssemblyInfo.cs
........................\........................\..........\Resources.Designer.cs
........................\........................\..........\Resources.resx
........................\........................\..........\Settings.Designer.cs
........................\........................\..........\Settings.settings
........................\........................\UnCodebase.cs
........................\........................\WindowsFormsApplication6.csproj
........................\WindowsFormsApplication6.sln

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Desktop1
    The 6 OMRON PLC password cracking, CP1H, CP1E, CQM1H, CJ1M, CJ1M, CJ1G, CJ1H, CS1D, CS1G, CS1H, CP1L password cracking, ( including the ban pass card + can cover +UM protection + task read protection + function block password cracking, ) 7 Koyo ( solar ) password cracking, Koyo SH/SH1, SM/SM1, SN, ...
    2018-03-15 02:58:44下载
    积分:1
  • 东软嵌入式高级C培训
    东软嵌入式高级C培训(2007)),看了就知道了,很多提高程序效率的方法,和调试的技巧都很经典实用。(Neusoft Senior C Embedded Training (2007)), looking to know, a lot of ways to improve process efficiency, and debugging skills are very classic and practical.)
    2020-06-26 02:40:02下载
    积分:1
  • KOROSTERMADDEN08---Copy-(4)
    ochocinco ochocinco toy soldier
    2013-12-11 02:53:49下载
    积分:1
  • C# Outcome 03
    说明:  List / ClassLibrary 信息传递, 页面交互(List/ClassLibrary information transfer, page interaction)
    2019-05-16 15:53:07下载
    积分:1
  • 11111
    Thanks for downloading my Logix RC flight simulator. This is a Micro Visual C++ project, so it would be easiest for you to open it with MSVC++ but if you dont have it, you can always use your own compiler, the source files are all there. My program uses some free library offered by Microsoft that make direct X much easier and faster to use. They are located in the 3dPlus directory, you will have to add them to the lib, and include directory on your compiler. The EXE is included, it searches for a bitmap to use as the ground, this is determined in the source. Im know the commenting on the source leaves some to be expected, but i‘ve run low on time. If you need help, source code to the librarys, or anything else email me at: logix@ionet.net I‘ll even send you a CD with everything on it if you mail me a few dollars. Please feel free to distribute this but leave it intact. 本站提供飞行模拟器免费下载,版权归其软件公司或原作者所有。如果你喜欢,请支持正版!
    2010-02-02 17:50:59下载
    积分:1
  • nativequickwidgets-0.1
    QT + QML 用QML实现QT的基本控件。包括label,button(QT+ QML)
    2012-06-19 08:52:31下载
    积分:1
  • c# 扫描IP Http Header
    c# 扫描IP Http Headerusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Threading;using System.IO;namespace HScan{ public partial class Form1 : Form { int _currentThreads = 0; int _maxThreads = 100; Thread main = null; Thread mt = null; List threads = new List(); public Form1() { InitializeComponent(); Control.CheckForIllegalCrossThreadCalls = false; } private void btnStart_Click(object sender, EventArgs e) { btnStart.Enabled = false; if (txtStart.Text.Trim() == "") { MessageBox.Show("起始IP不能为空."); return; } if (txtEnd.Text.Trim() == "") { MessageBox.Show("结束IP不能为空."); return; } int ts = Convert.ToInt32(txtThreads.Text); _maxThreads = ts; string startIp = txtStart.Text; string endIp = txtEnd.Text; TParameter tp=new TParameter(); tp.StartIp=startIp; tp.EndIp=endIp; tp.ThreadCount=ts; main = new Thread(new ParameterizedThreadStart(StartMe)); main.Start(tp); } protected void ThreadManage() { Thread c=null; while (true) { System.Object lockThis = new System.Object(); lock (lockThis) { for (int i = 0; i < threads.Count; i ) { if (threads[i] != null && !threads[i].IsAlive) { c = threads[i]; break; } } if (c != null) { threads.Remove(c); } } } } protected void StartMe(object ob) { mt = new Thread(new ThreadStart(ThreadManage)); mt.Start(); TParameter p = ob as TParameter; string curIp = p.StartIp; while (true) { for (int i = 0; i < _maxThreads; i ) { if (curIp != "") { if (_currentThreads >= _maxThreads) break; System.Object lockThis = new System.Object(); lock (lockThis) { _currentThreads ; if (_currentThreads > _maxThreads) _currentThreads = _maxThreads; string tip = curIp; Thread t = new Thread(new ParameterizedThreadStart(Run)); t.Start(tip); threads.Add(t); curIp = IPUtility.getLastIp(curIp, p.EndIp, 1); } } else { break; } } } } protected void Run(object ob) { string ip = ob.ToString(); SocketGetHead h = new SocketGetHead(); string ret = h.GetHtml(ip, 80); if (ret.IndexOf("DVRDVS-Webs") > 0) { ListViewItem item = new ListViewItem(); item.SubItems[0].Text = (listView1.Items.Count 1).ToString(); ListViewItem.ListViewSubItem lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = ip; item.SubItems.Add(lvSubItem); lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = "DVRDVS-Webs"; item.SubItems.Add(lvSubItem); listView1.Items.Add(item); } System.Object lockThis = new System.Object(); lock(lockThis) { lblCurIp.Text = ip; _currentThreads--; if (_currentThreads < 0) _currentThreads = 0; } } private void tsmCopy_Click(object sender, EventArgs e) { if (listView1.SelectedItems.Count > 0) { string ip = listView1.SelectedItems[0].SubItems[1].Text; Clipboard.SetText(ip); } } private void tsmExport_Click(object sender, EventArgs e) { StreamWriter writer = new StreamWriter(AppDomain.CurrentDomain.BaseDirectory "\export.txt",true); foreach (ListViewItem item in listView1.Items) { string ip=item.SubItems[1].Text; writer.WriteLine(ip); writer.Flush(); } writer.Flush(); writer.Close(); MessageBox.Show("导出成功!"); } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } Thread.Sleep(5000); } private void btnStop_Click(object sender, EventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } btnStart.Enabled = true; } }}
    2014-06-23下载
    积分:1
  • TCP IP客户端
    输控制协议(TCP,Transmission Control Protocol)是一种面向连接的、可靠的、基于字节流的传输层通信协议,由IETF的RFC 793定义。TCP旨在适应支持多网络应用的分层协议层次结构。(Transmission Control Protocol (TCP) is a connection-oriented, reliable, byte-stream-based transport layer communication protocol defined by IETF RFC 793. TCP aims at adapting to the hierarchical protocol structure supporting multi-network applications.)
    2020-06-18 11:00:01下载
    积分:1
  • moshishibiesuanfashiyanshuju
    该数据集中的数据是由鸢尾属植物的三种花——Setosa、Versicolor与Virginica——的测量结果所组成,数据集中共包含150组数据信息,每一类别植物有50组数据。( The data in the dataset is composed of three species of Iris flowers- Setosa, Versicolor and Virginica- consisting of the measurement results, the data set contains a total of 150 groups of data, each class plants have 50 sets of data.)
    2014-02-22 22:18:42下载
    积分:1
  • Lab0_tutorial
    这是opnet 建立无线网络模型的教程,对于初学opnet仿真的学者很有帮助(This is set up a wireless network model of OPNET tutorial for beginners and scholars OPNET Simulation helpful)
    2007-08-19 09:14:40下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载