Welcome![Sign In][Sign Up]
Location:
Search - VISUAL

Search list

[Graph programICOEdit

Description: Visual Basic编写的ICO编辑软件源码,界面和功能都非常专业。-written in Visual Basic source ICO editing software, interface and functions are very professional.
Platform: | Size: 161792 | Author: pp | Hits:

[Windows DevelopVisualC++sigal

Description: Visual C++数字图像实用工程案例精选—源码-Visual C Digital Image practical projects selected case-source
Platform: | Size: 16634880 | Author: 朱炜聪 | Hits:

[ComboBoxXPDTPicker

Description: 一个使用Visual Basic 编写的XP风格的日期选择控件,非常的好用!-a Visual Basic XP prepared by the date to choose the style controls, very handy!
Platform: | Size: 33792 | Author: xz | Hits:

[VC/MFCVCDigiImPro

Description: Visual C++数字图象处理 何斌 人民邮电出版社 电子书-Visual C digital image processing He Bin Posts And Telecommunications News Publishing e-books
Platform: | Size: 15142912 | Author: Mr .Wang | Hits:

[CommunicationVisualBasic&RS-232

Description: 电子书《Visual Basic与 RS-232 串行通信控》详细介绍vb与232通信编程,用于开发基于单片机通信的上位机程序-electronic book "Visual Basic and RS-232 serial communication control" with detailed vb 2 32 Communication Programming for the development of microcontroller-based PC communication procedures
Platform: | Size: 7972864 | Author: | Hits:

[VC/MFCVisual.C++.2005

Description: vc++教程,英文版本,希望能给大家帮助-vc Guide, in the English version, we wanted to give help
Platform: | Size: 8379392 | Author: 蔡刚 | Hits:

[Windows DevelopVisualC++.NET_Devolop

Description: Visual C++.NET 开发手册 pdf文档格式 英文版-Visual C.NET development manual pdf file format in English
Platform: | Size: 6290432 | Author: 虚幻雄斌 | Hits:

[GDI-BitmapImagelwf

Description: Visual Basic实现的图像合并程序-Visual Basic Image merger proce
Platform: | Size: 22528 | Author: wflee | Hits:

[GDI-Bitmap3DImagelwf

Description: Visual Basic实现的一个完整的三维图形设计系统 ,强烈推荐!! -a complete 3D design system and strongly recommended! !
Platform: | Size: 498688 | Author: wflee | Hits:

[SQL ServerDatabaseEditor

Description: Microsoft Visual Basic 6.0+sql DatabaseEditor-Microsoft Visual Basic 6.0 sql DatabaseEd ITOR
Platform: | Size: 119808 | Author: 翁祥俊 | Hits:

[GUI Developcvisualtoolbarv1.0

Description: 对 Visual C++ 和 Delphi 的程序员来说,设计一个漂亮的真彩色工具栏是一件很麻烦的事情。C-Visual Toolbar 是专门为上述程序设计人员进行真彩色工具条设计的强大工具。有时候,您要花几个小时的时间,来生成真彩色工具条的位图资源!现在好了,C-Visual Toolbar 1.0 可以自动读入小位图文件(支持16×16,24×24,32×32,48×48),自动合并所有小的位图,然后输出您整合以后的位图资源文件。此外,Visual Toolbar 允许用户动态调整按钮图标的顺序!合并以后的位图,再次读入的时候,可以自动重新分割成各个合并前的小图标,方便您插入新的按钮图标!支持剪贴板操作,可以通过剪贴板输入,输出小按钮的位图,而所有的操作,只是在瞬间完成!Visual Toolbar 尤其适合 Visual C++ 程序开发人员,可以自动生成真彩色的位图资源,让您的程序更Cool!” -err
Platform: | Size: 555008 | Author: wwwwppp | Hits:

[Mathimatics-Numerical algorithmsVB0099

Description: Visual Basic 常用数值算法集。包括各种常用数值算法。-Visual Basic used numerical algorithm sets. Including various commonly used algorithm.
Platform: | Size: 792576 | Author: zhangtao | Hits:

[VC/MFCVisual_C++

Description: Visual C++.NET课程设计案例精编 源代码,基于VC.net开发环境.-Visual C.NET curriculum design intensive case Provision source code, based on VC.net development environment.
Platform: | Size: 55316480 | Author: 李海超 | Hits:

[Graph program2002asp

Description: Visual c++ 实践与提高——图形和图像编程片是一本用vc实现图形图像的使用参考书,对初学vc图像编程人员有很大的帮助。-Visual Practice and improve-- graphics and images Programming is a film with graphic images vc make the with reference books for beginners vc images programmers will be very helpful.
Platform: | Size: 39163904 | Author: 李一凡 | Hits:

[VC/MFCVCnetworkGaojiBianCheng

Description: < Visual c++网络高级编程序>>,例子丰富,详细讲解VC网络编程的-<Visual c++ Network of senior-programmed>>, for example, is rich in detail on the VC network programming
Platform: | Size: 2581504 | Author: peng | Hits:

[Other resourceK_select

Description: 描述:Design a program to find k longest itemsets in a database of N records. 分析:因为题目的要求是找到k longest itemsets,在本程序中为了模拟这个目的,我对算法进行简单化,即简化为这样一个题目:在若干个比较大的数字中找到k 个最大的数字,这个等价于在若干记录中找到k个最长的记录集,因为k个最大的数字自然也是最长的。 思想: 1、数据由程序随机生成,保存到文件out.txt中,以进行读取。 2、这里的方法为堆排序操作,对所有的输入放置在out.txt的文件中,并 逐一读入,对所有数据建造大根堆。 3、最终结果以文件的方法输出:out1.txt为选定的K-项集。 4、数值大的元素放在后部,输出时,从最后一个元素开始。 5、所有的数据都由文件调入内存进行堆筛选,在得到K-项集后再送回到文件中去,而若要是在实际数据库中则是把关键字调入内存进行筛选操作。 程序的详细说明,因为涉及许多细节,所以附在原代码中,因为效率的提高往往是许多细节的改进,而这些必须定量来考察。 实验环境:Win2000,Visual C++6.0,MS Access2000.mfc7.0情况下能否运行没有测试 -err
Platform: | Size: 139264 | Author: 孙东一 | Hits:

[BooksVisualBasic_6.0_Reference_Manual

Description: Visual Basic 6.0中文版语言参考手册-Visual Basic 6.0 Chinese language reference manual version
Platform: | Size: 2930688 | Author: | Hits:

[OS programVB.NET101_Sample

Description: Visual Basic.Net 实例,共101例-Visual Basic.Net example, a total of 101 cases
Platform: | Size: 5452800 | Author: | Hits:

[GUI Developcsharpshili

Description: Visual C#案例集锦 第一章C# Windows编程基础 实例1 循环语言的学习-砝码程序验证 实例2 随机数的案例-洗牌程序 实例3 通过实例来剖析C#继承机制 实例4 递归与全局变量的案例1-打靶程序 实例5 递归与全局变量的案例2-二叉树 实例6 引用类型的举例---消去字符串空格 实例7 委托的使用方法实例---加减大小比较 实例8 用C#索引器实现文本文件的倒叙输入 实例9 C#文本文件操作实例---杨辉三角形写入读出 第二章 图形图像处理 实例1 一个简易的绘图程序 实例2 电子石英钟显示 实例3 用C#制作字幕显示屏幕保护 实例4 移动的按钮 实例5 抓图软件的实现 第三章 多媒体应用 实例1 WinForm中播放音频与Flash动画 实例2 模拟贪食蛇游戏 实例3 人民币大写转换案例 实例4 模拟俄罗斯方块游戏 实例5 模拟联五子游戏 第四章 系统文件处理 实例1 文件资源管理器 实例2 模拟IE浏览器 实例3 一个具有查找打印功能的文本编译器-Visual C# case highlights the first chapter C# Windows based programming language example of a cycle learning-weight certification procedure two random examples of cases- shuffling through three examples of procedures to analyze examples of C# is the succession mechanism four cases with the global variable recursive case 1-5 shooting recursive procedure examples of global variables and the case of 2-6 cited examples Binary Tree with the type of strings, for example-- to eliminate seven spaces commissioned by the examples use examples-- examples of relatively small Modified 8 C# Index for the realization of a text file input examples Flashback 9 C# examples text file manipulation-- Yang Hui into triangles read Chapter II graphics processing an example of a simple drawing program tw
Platform: | Size: 6444032 | Author: 史进 | Hits:

[ERP-EIP-OA-PortalVFPEMS

Description: “现代流通企业综合管理系统”是专门针对中小型企业各项管理业务而开发的通用性很强的管理系统。该软件集进、销、存、决策于一体,同时还集成了报表打印、查询统计等多种实用的功能,真正实现了进、销、存一体化。本软件采用微软可视化编程工具Microsoft Visual FoxPro开发,软件的界面美观大方,系统运行稳定。该软件有以下特点。 功能强大:该软件以中小型企业为应用对象,结合中小型企业当前和未来发展的管理需求提供实用先进的应用模式,实现多商品、多规格、大范围复杂的经营理念,为经营决策提供及时准确的信息,真正面向市场提高企业效益。 实用高效:建立规范的业务管理模式,使业务人员从繁忙的手工开票、统计报表工作中解脱出来,提高工作效率,减少人为差错。 用户界面操作简洁:系统的每个功能都经过精心设计,充分考虑到使用人员计算机知识较少的特点,全部使用业务人员最熟悉的业务流程、提示用语和操作方式,即使不熟悉此软件的人也能熟练使用本软件完成业务处理。 系统性能稳定:严格按照规范的软件工程管理,充分利用面向对象技术,采用FoxPro为后台数据库,利用Windows系统的内存管理和多任务特性,从技术上保证了系统的稳定性、可靠性和先进性。 -"modern circulation enterprises integrated management system" is targeted at the small and medium business enterprises and the management of common development strong management systems. Set into the software, and marketing, depositors and the decision to integration, but also integrates print statements, statistics and other inquiries practical function, Progressive truly realized, and marketing, depositors integration. The software uses Microsoft Visual programming tools for Microsoft Visual FoxPro development, the software interface stylish, stable system operation. The software has the following characteristics. Powerful : The software to small and medium-sized enterprises as the target application, SMEs combining the present and future development of the management needs to
Platform: | Size: 944128 | Author: 阳东 | Hits:
« 1 2 ... 43 44 45 46 47 4849 50 »

CodeBus www.codebus.net