Welcome![Sign In][Sign Up]
Location:
Search - container model

Search list

[GUI DevelopVB6_CommandBar_Full_Source

Description: The vbAccelerator CommandBar control is a full toolbar/menu control which currently offers configurable styles, colours and a full-object model for configuring the buttons and menus. The control can draw in Office 2003, Office XP, MS Money and System styles, supports icons with alpha-channels and runs on any Windows system. The control is currently a pre-release version, and although it can be used now, some important features have not yet been implemented, particularly MDI support, docking container and toolbar borders. -The vbAccelerator CommandBar control is a full toolbar/menu control which currently offers configurable styles, colours and a full-object model for configuring the buttons and menus. The control can draw in Office 2003, Office XP, MS Money and System styles, supports icons with alpha-channels and runs on any Windows system. The control is currently a pre-release version, and although it can be used now, some important features have not yet been implemented, particularly MDI support, docking container and toolbar borders.
Platform: | Size: 262295 | Author: 陈建军 | Hits:

[Multimedia programmp4writer

Description: 利用ffmpeg保存视频到mp4容器文件里面,是ffmpeg在windows下面的一个挺好的示范(有点自夸),它是我给一个项目(匿名)提供的关于mp4的读写、解码、传输(RTP)、和码流识别的所有api的一部分,大概占1/8,就是指写那一部分了。同时,前面上传过一个读的工程,可以搜搜看。-using ffmpeg then no time to preserve video file container, ffmpeg is below the windows of a very good model (somewhat trying) It is a project to the (anonymous) then no time on reading and writing, decoding, transmission (RTP). Recognition and bitstream all part of the api, roughly 1 / 8, this means that part of the writing. Meanwhile, over the previous upload a reading project, Soso can see.
Platform: | Size: 2143674 | Author: goggle | Hits:

[DocumentsWebBrowser的8个方法和13个属性

Description: WebBrowser的8个方法和13个属性,以及它们的功能: 方法 说明  GoBack 相当于IE的“后退”按钮,使你在当前历史列表中后退一项  GoForward 相当于IE的“前进”按钮,使你在当前历史列表中前进一项  GoHome 相当于IE的“主页”按钮,连接用户默认的主页  GoSearch 相当于IE的“搜索”按钮,连接用户默认的搜索页面  Navigate 连接到指定的URL  Refresh 刷新当前页面  Refresh2 同上,只是可以指定刷新级别,所指定的刷新级别的值来自RefreshConstants枚举表, 该表定义在ExDisp.h中,可以指定的不同值如下: REFRESH_NORMAL 执行简单的刷新,不将HTTP pragma: no-cache头发送给服务器 REFRESH_IFEXPIRED 只有在网页过期后才进行简单的刷新 REFRESH_CONTINUE 仅作内部使用。在MSDN里写着DO NOT USE! 请勿使用 REFRESH_COMPLETELY 将包含pragma: no-cache头的请求发送到服务器  Stop 相当于IE的“停止”按钮,停止当前页面及其内容的载入 属性 说明  Application 如果该对象有效,则返回掌管WebBrowser控件的应用程序实现的自动化对象(IDispatch)。如果在宿主对象中自动化对象无效,这个程序将返回WebBrowser 控件的自动化对象  Parent 返回WebBrowser控件的父自动化对象,通常是一个容器,例如是宿主或IE窗口  Container 返回WebBrowser控件容器的自动化对象。通常该值与Parent属性返回的值相同  Document 为活动的文档返回自动化对象。如果HTML当前正被显示在WebBrowser中,则 Document属性提供对DHTML Object Model的访问途径  TopLevelContainer 返回一个Boolean值,表明IE是否是WebBrowser控件顶层容器,是就返回true  Type 返回已被WebBrowser控件加载的对象的类型。例如:如果加载.doc文件,就会返 回Microsoft Word Document  Left 返回或设置WebBrowser控件窗口的内部左边与容器窗口左边的距离  Top 返回或设置WebBrowser控件窗口的内部左边与容器窗口顶边的距离  Width 返回或设置WebBrowser窗口的宽度,以像素为单位  Height 返回或设置WebBrowser窗口的高度,以像素为单位  LocationName 返回一个字符串,该字符串包含着WebBrowser当前显示的资源的名称,如果资源 是网页就是网页的标题;如果是文件或文件夹,就是文件或文件夹的名称  LocationURL 返回WebBrowser当前正在显示的资源的URL  Busy 返回一个Boolean值,说明WebBrowser当前是否正在加载URL,如果返回true 就可以使用stop方法来撤销正在执行的访问操作 如何利用 WebBrowser 控件,显示 .GIF 动画? 要有一定的网页知识(HTML、JavaScript、CSS) 注意细节: 没有"滚动条"和"鼠标右键弹出的 IE 上下文菜单",".HTM 源文件" ... 我写了一个,效果还真不错! ''Objects: Form1、Command1、CommonDialog1、WebBrowser1 Option Explicit Private Sub Command1_Click() CommonDialog1.ShowOpen If VBA.Len(VBA.Trim(CommonDialog1.FileN欢迎光临学网,点击这里查看更多文章教程 [1] [2] [3] [4] [5] [6] [7] [8] ame)) > 0 Then Dim p As stdole.StdPicture Dim sPath As String sPath = VBA.Trim(VBA.Trim(CommonDialog1.FileName)) Set p = VB.LoadPicture(sPath) WebBrowser1.Width = p.Width * 16 / 26 WebBrowser1.Height = p.Height * 16 / 26 '' WebBrowser1.Navigate "about:blank" WebBrowser1.Document.open WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "WebBrowser1.Document.writeln " WebBrowser1.Document.writeln "WebBrowser1.Document.writeln " " WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" End If End Sub Private Sub Form_Load() Command1.Caption = "&Open" WebBrowser1.Navigate "about:blank" WebBrowser1.Document.open WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "WebBrowser1.Document.writeln "" WebBrowser1.Document.writeln "" WebBrowser1.Document.Close End Sub
Platform: | Size: 3992 | Author: weidonglingsir@163.com | Hits:

[GUI DevelopVB6_CommandBar_Full_Source

Description: The vbAccelerator CommandBar control is a full toolbar/menu control which currently offers configurable styles, colours and a full-object model for configuring the buttons and menus. The control can draw in Office 2003, Office XP, MS Money and System styles, supports icons with alpha-channels and runs on any Windows system. The control is currently a pre-release version, and although it can be used now, some important features have not yet been implemented, particularly MDI support, docking container and toolbar borders. -The vbAccelerator CommandBar control is a full toolbar/menu control which currently offers configurable styles, colours and a full-object model for configuring the buttons and menus. The control can draw in Office 2003, Office XP, MS Money and System styles, supports icons with alpha-channels and runs on any Windows system. The control is currently a pre-release version, and although it can be used now, some important features have not yet been implemented, particularly MDI support, docking container and toolbar borders.
Platform: | Size: 262144 | Author: 陈建军 | Hits:

[Multimedia Developmp4writer

Description: 利用ffmpeg保存视频到mp4容器文件里面,是ffmpeg在windows下面的一个挺好的示范(有点自夸),它是我给一个项目(匿名)提供的关于mp4的读写、解码、传输(RTP)、和码流识别的所有api的一部分,大概占1/8,就是指写那一部分了。同时,前面上传过一个读的工程,可以搜搜看。-using ffmpeg then no time to preserve video file container, ffmpeg is below the windows of a very good model (somewhat trying) It is a project to the (anonymous) then no time on reading and writing, decoding, transmission (RTP). Recognition and bitstream all part of the api, roughly 1/8, this means that part of the writing. Meanwhile, over the previous upload a reading project, Soso can see.
Platform: | Size: 2143232 | Author: goggle | Hits:

[Windows DevelopLittleGame

Description: 模拟多个有速度的小球在容器内撞击反弹的物理模型。-Simulation has the speed of a number of small balls in the container of the physical model of the impact rebound.
Platform: | Size: 19456 | Author: Frank | Hits:

[matlab081105

Description: 基于MATLAB的组合模型 在港口吞吐量预测中的应用 以某港1998--2007年集装箱吞吐量为实测数据,建立其集装箱吞吐量的灰色理论、三次指数平滑、三次多项式 等预测模型,在MATLAB下,对比该港集装箱吞吐量各模型预测拟合值与实际值的差异。分析了差异产生的原因及其单一预 测模型的局限性,提出了港口集装箱吞吐量组合预测法。其预测误差明显低于其它单模型。运用组合预测模型.可以降低误 差。提高预测精度。-A combination of MATLAB-based model in port throughput prediction of a Hong Kong 1998- 2007 container throughput for the measured data, the establishment of its container throughput of the gray theory, the three exponential smoothing, prediction models, such as cubic polynomial in MATLAB, the contrast of the Hong Kong container throughput of fitting the models to predict the value of the difference between the actual value. Analysis of the causes of differences and the limitations of a single prediction model, the combination of port container throughput prediction. Its prediction error was significantly lower than other single model. The use of combination forecasting model. Can reduce the error. Improve the prediction accuracy.
Platform: | Size: 148480 | Author: 张学利 | Hits:

[Special EffectsMSChart

Description: 该例子通过labview调用微软图形对象模型来创建图形。-This example uses the Microsoft Chart Object Model to create charts. The MSChart is a ActiveX control. ActiveX container is used in LabVIEW to invoke properties and methods on the object. MSChart object is a part of Microsoft Office Web Components (MSOWC). Microsoft Chart object can be used in LabVIEW not only to create pie charts, polar charts, radar charts of various types but to format them as well. Example includes three top level VIs to demonstrate line chart, bar chart and pie chart. However you can change the "WCSeries.Type" enumerator to switch between different chart types.
Platform: | Size: 158720 | Author: tita | Hits:

[JSP/JavajavaServlet

Description: Servlet技术,Java Servlet是与平台无关的服务器端组件,它可以运行在Servlet容器中.Servlet容器负责Servlet和客户的通信以及调用Servlet的方法,Servlet和客户的通信采用"请求/响应"的模式-Servlet technology, Java Servlet is platform-independent server-side component, it can be run in Servlet container. Servlet container is responsible for Servlet and customer communications, as well as call Servlet methods, Servlet, and customer communications a " request/response" model
Platform: | Size: 221184 | Author: yanzhengreal | Hits:

[DocumentsHLA2

Description: HLA-Based Distributed Simulation Model for Multimodal Operation System on Container Terminals
Platform: | Size: 239616 | Author: ce | Hits:

[source in ebookFlex

Description: 在本教程中,你可以阅读到Flex的简单介绍,还可以利用MXML创建一个简单的分类购物车,从而学习到Macromedia Flex应用程序的基本构成。你将会学到:创建一个应用程序、添加一个布局的容器、添加控件、创建与控件关联的简单数据模型,以及利用ActionScript对事件进行处理。-In this tutorial, you can read a brief introduction to the Flex, you can also use MXML to create a simple classification of shopping cart, so to learn Macromedia Flex application, a basic component. You will learn: Creating an application, add a layout container, add the control to create and control associated with a simple data model, and the use of ActionScript to handle the event.
Platform: | Size: 1021952 | Author: 罗芳 | Hits:

[BREWBUIW

Description: Buiw是一系列基于COM模型的扩展,这些扩展互相联系,组成了一组功能强大的开发包。 本手册从以下几个部分讲述了BUIW的基本知识: 1、Widget 2、Model 3、Container 4、Form 如果要在我们的平台上使用BUIW,需要做BUIW环境配置。 以上四个部分的联系,请参考BUIW结构图及BUIW数据驱动机制图 -Buiw is a set of COM-based model extensions that contact each other to form a set of powerful development package. From the following sections of this manual describes the basics of BUIW: 1, Widget 2, Model 3, Container 4, Form if you want to use our platform BUIW, need to do BUIW environment configuration. The four parts of the contact, please refer to BUIW BUIW chart and graph data-driven mechanism
Platform: | Size: 2201600 | Author: 陈立 | Hits:

[JSP/Javamodel

Description: A data container, which can store data to no limit and with various nodes.
Platform: | Size: 8192 | Author: Kingsly | Hits:

[JSP/JavaServlet_Tech

Description: Java Servlet是与平台无关的服务器端组件,它可以运行在Servlet容器中.Servlet容器负责Servlet和客户的通信以及调用Servlet的方法,Servlet和客户的通信采用"请求/响应"的模式,Servlet的框架是由两个Java包组成的:javax.servlet和javax.servlet.http-Java Servlet is platform-independent server-side component that can run in the Servlet container. Servlet container for Servlet and customer communications, and the method call Servlet, Servlet, and customer communications a " request/response" model, Servlet' s framework is composed of two Java packages: javax.servlet and javax.servlet.http
Platform: | Size: 7168 | Author: 万宴宾 | Hits:

[JSP/JavaMobicents_SLEE_Container_User_Guide

Description: JAIN SLEE is the specification for a Java Service Logic and Execution Environment (SLEE) architecture, done in Java Community Process (JCP) by several individuals and companies, including Red Hat. A SLEE is an application server, or service container, which defines a component model for structuring the logic of communications services as a collection of reusable components, and for composing these components into even more sophisticated services. This model was designed and optimized for event driven applications.
Platform: | Size: 347136 | Author: yakhii | Hits:

[Graph RecognizeCpp.Primer.The.Third.Edition

Description: 本书第二版和第三版之间的变化非常大其中最值得注意的是C++已经通过了国际标 准化这不但为语言增加了新的特性比如异常处理运行时刻类型识别RTTI 名字空 间内置布尔数据类型新的强制转换方式而且还大量修改并扩展了现有的特性比如模 板template 支持面向对象object-oriented 和基于对象object-based 程序设计所需 要的类class 机制嵌套类型以及重载函数的解析机制也许更重要的是一个覆盖面非 常广阔的库现在成了标准C++的一部分其中包括以前称为STL 标准模板库的内容新 的string 类型一组顺序和关联容器类型比如vector list map 和set 以及在这些类型 上进行操作的一组可扩展的泛型算法generic algorithm 都是这个新标准库的特性本书 不但包括了许多新的资料而且还阐述了怎样在C++中进行程序设计的新的思考方法简而 言之实际上不但C++已经被重新创造本书第三版也是如此-econd edition and third edition of the book vary greatly among the most noteworthy of which is C has passed the international standards This standardization not only added a new language features such as exception handling run-time type identification RTTI name space Boolean data type built between the new cast but also a lot of ways to modify and extend the existing features such as model Board template support object-oriented object-oriented and object-based object-based programming required Nested class mechanism to class types and overloaded functions resolution mechanism may be more important, a non-coverage Often broad standard C library is now a part of which includes previously known as the contents of the Standard Template Library STL New The string type of a set of container types such order and the associated vector list map and set well in these classes Type Operate on a set of generic algorithms and scalable generic algorithm are the new features of the standard li
Platform: | Size: 3873792 | Author: xxw | Hits:

[Othersolidworks-API-supports

Description: 制作solidworks模型(容器支座)-Solidworks model of production (container bearing)
Platform: | Size: 1098752 | Author: muanzhi | Hits:

[JSP/JavacodeForsoftwarelabManagmentSystem

Description: 软件研究所管理信息系统是基于B/S架构的,采用数据库服务器与Web服务器分离,客户端通过浏览器访问和管理,具体配置如下: 系统开发采用JSP+Servlet+JavaBean三层结构的开发模式。数据库系统采用SQL Server 2000。JSP容器采用Apache公司的Tomcat 5.0。系统运行环境为Windows XP Professional sp2。开发工具采用Eclipse 3.0、Dreamweaver MX 2004、Photoshop CS2等。 -Institute of Management Information System software is based on B/S structure, using separate database server and Web server, the client browser to access and manage, the specific configuration is as follows: System development using JSP+ Servlet+ JavaBean three-layer structure of the development model. Database system using SQL Server 2000. JSP container is Apache' s Tomcat 5.0. System operating environment is Windows XP Professional sp2. Development tools using Eclipse 3.0, Dreamweaver MX 2004, Photoshop CS2 and so on.
Platform: | Size: 3517440 | Author: 黄楚高 | Hits:

[JSPJ2EEBestPracticesStudy-Springcontainer

Description: 来源于bea官方网站的技术讲义,具体内容: 1、商业模型与服务生态的博弈 SOA(Service-Oriented Architecture 面向服务的架构)是一个热门但是老套的话题,演讲者讲从软件的几个主要矛盾出发,从商业模式的演化谈谈SOA的几种表现形式,结合BEA实际项目的经验和体会,阐述SOA带来服务生态的变化以及和商业模式的互动。希望抛砖引玉,和所有与会者进行充分的交流和探讨。 2、工作流模式及其BPEL实现 作为一个WebService组合语言,BPEL4WS与工作流有着千丝万缕的关系,本讲义分析了几种常用的工作流模式,并以BPEL为标准对这些模式的实现进行了讨论,在分析和讨论中介绍BEA相关产品的基本知识。 3、Spring容器的研究 介绍Spring容器的基本原理,分析了Spring容器和J2EE容器的关系以及Spring容器和J2EE容器整合中碰到的问题。-Specific elements: 1, the business model and service eco-Game SOA (Service-Oriented Architecture Service Oriented Architecture) is a hot topic, but old-fashioned, speaker made several major conflicts from the software starting to talk about the evolution of business models from several manifestations of SOA, combined with the actual BEA experience and understanding of the project, describes SOA brings change and the ecological services and business models of the interaction. Want to initiate, and full exchange of all participants and discussion. 2, the workflow model and its BPEL implementation As a WebService assembly language, BPEL4WS and workflow are inextricably linked, the notes of several common workflow patterns, and BPEL as the standard implementation of these models are discussed in the analysis and discussion presented basic knowledge of BEA-related products. 3, Spring container of Spring container introduces the basic principles of the Spring container and the re
Platform: | Size: 2074624 | Author: javapf | Hits:

[VC/MFCGeneric_Programming_And_The_STL

Description: 本书由知名的C++专家Matthew H.Austern执笔,引导你进入泛型编程思维模型,并将你带往此一模型的最重要成品:C++ Standard Template Library(STL)。本书揭示STL的奥秘,告诉你STL不仅仅是一组方便运用的容器类(container classes)。对于泛型组件和可交互作用的组件而言,STL是一个具备扩充能力的框架(framework)。-Written by renowned experts in C++ written by Matthew H. Austern, Generic programming guide you into thinking model, this model will lead you to the most important products: C++ Standard Template Library (STL). This book reveals the mysteries of STL, to tell you more than just a set of easy to use STL container classes (container classes). For generic components and components can be in terms of interaction, STL is a framework with expanded capacity (framework).
Platform: | Size: 9750528 | Author: | Hits:
« 12 »

CodeBus www.codebus.net