虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Front-End

  • Linux in a Nutshell, 5th Edition By Stephen Figgins, Robert Love, Arnold Robbins, Ellen Siever, Aa

    Linux in a Nutshell, 5th Edition By Stephen Figgins, Robert Love, Arnold Robbins, Ellen Siever, Aaron Weber ... ... ... ... ... ... ... ..... Publisher: O Reilly Pub Date: July 2005 ISBN: 0-596-00930-5 Pages: 944 Over the last few years, Linux has grown both as an operating system and a tool for personal and business use. Simultaneously becoming more user friendly and more powerful as a back-end system, Linux has achieved new plateaus: the newer filesystems have solidified, new commands and tools have appeared and become standard, and the desktop--including new desktop environments--have proved to be viable, stable, and readily accessible to even those who don t consider themselves computer gurus.

    标签: Nutshell Edition Figgins Stephen

    上传时间: 2015-12-03

    上传用户:frank1234

  • unit Video interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, stdctrl

    unit Video interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, stdctrls, ExtCtrls, avicap, mmsystem, dsgnintf // Types for event-procedures type TCapStatusProc = procedure(Sender: TObject) of object TCapStatusCallback = procedure(Sender: TObject nID: integer status: string) of object TVideoStream = procedure(sender: TObject lpVhdr: PVIDEOHDR) of object TAudioStream = procedure(sender: TObject lpWHdr: PWAVEHDR) of object // Property Editor for driver selection type TDrivereditor = class(TPropertyEditor) function GetAttributes: TPropertyAttributes override procedure GetValues(Proc: TGetStrProc) override function GetValue: string override procedure SetValue(const Value: string) override end

    标签: interface Messages Graphics Controls

    上传时间: 2013-12-21

    上传用户:heart520beat

  • This package consists of the executable (UCW), a default script file, this file, and the library fi

    This package consists of the executable (UCW), a default script file, this file, and the library files. It is important that the header files end up in a include subdirectory of the directory where UCW is found. If you unzip this file using its path information ( use folder names ) this will automatically happen. You can optionally specify the UnderC directory with the environment variable UC_HOME note that this points to the directory containing ucw.exe. If you do this, then you can copy the executable anywhere and it will still be able to find the header files.

    标签: file executable the consists

    上传时间: 2013-12-17

    上传用户:asddsd

  • Welcome to UnderC version 1.2.9w This package consists of the executable (UCW), a default script

    Welcome to UnderC version 1.2.9w This package consists of the executable (UCW), a default script file, this file, and the library files. It is important that the header files end up in a include subdirectory of the directory where UCW is found. If you unzip this file using its path information ( use folder names ) this will automatically happen. You can optionally specify the UnderC directory with the environment variable UC_HOME note that this points to the directory containing ucw.exe. If you do this, then you can copy the executable anywhere and it will still be able to find the header files.

    标签: executable consists Welcome package

    上传时间: 2015-12-18

    上传用户:baiom

  • procedureTForm1.Button1Click(Sender:TObject) var S:String begin S:=idhttp1.Get(PostURL.text+

    procedureTForm1.Button1Click(Sender:TObject) var S:String begin S:=idhttp1.Get(PostURL.text+ ?username= +EdUserName.Text+ &password= +EdPassWord.Text+ &password2= +EdPassWord.Text+ &email= + EdEMail.Text+ &gendernew=1&year=&month=&day=&locationnew =&site=&oicq=&icq=&yahoo=&msn=&bio=&styleidnew =&tppnew=0&pppnew=0&timeformatnew=12&cstatus=&dateformatnew =yyyy-mm-dd&showemail=1&newsletter=1&timeoffsetnew=8&avatar =&sig=®submit=注册 )  //一句代码 ifPos( 非常感谢您的注册 ,s)>1then //判断部分  ShowMessage( 注册成功! ) else  ifPos( 已经被注册了 ,S)>1then   ShowMessage( 该用户名或E-Mail已被注册! )  else   ShowMessage( 已关闭注册,注册失败! ) end

    标签: procedureTForm PostURL TObject Button

    上传时间: 2014-08-24

    上传用户:努力努力再努力

  • TRAFFIC LIGHT CONTROLLER using C51 and RTX-51 tiny

    TRAFFIC LIGHT CONTROLLER using C51 and RTX-51 tiny,This program is a simple Traffic Light Controller. Between start time and end time the system controls a traffic light with pedestrian self-service. Outside of this time range the yellow caution lamp is blinking.

    标签: CONTROLLER TRAFFIC LIGHT using

    上传时间: 2013-12-27

    上传用户:123456wh

  • 图形显示技巧,这是其中一段代码 procedure TForm1.Button1Click(Sender: TObject) var newbmp:TBitmap i,bmphei

    图形显示技巧,这是其中一段代码 procedure TForm1.Button1Click(Sender: TObject) var newbmp:TBitmap i,bmpheight,bmpwidth:integer //推拉 begin newbmp:=TBitmap.Create newbmp.Width:=image1.Width newbmp.Height:=image1.Height bmpheight:=image1.Height bmpwidth:=image1.Width for i:=0 to bmpheight do begin newbmp.Canvas.CopyRect(Rect(0,bmpheight-i,bmpwidth,bmpheight),image1.Canvas,Rect(0,0,bmpwidth,i)) form1.Canvas.Draw(120,100,newbmp) end newbmp.free end

    标签: procedure TBitmap TObject Button

    上传时间: 2016-01-18

    上传用户:comua

  • 其中:ClientInfor.inf 文件: 第一行的数据表示: 客户端游戏版本号 第一行的数据表示: 更新文件存放的网络路径 UpdateInfor.inf文件: 第一行的数据表示:

    其中:ClientInfor.inf 文件: 第一行的数据表示: 客户端游戏版本号 第一行的数据表示: 更新文件存放的网络路径 UpdateInfor.inf文件: 第一行的数据表示: 最新游戏版本号 第二行的数据表示: 有多少文件需要更新 后面每行的数据表示: 需要更新的文件的名称 frmUpdate.frm窗体: 负责下载 modZip.BAS模块: 只负责用来压缩文件和解压缩文件的 其中的 UnZipTo 函数用来解压缩的 zlib.dll: 为WinZip的dll文件 更新完毕后,ClientInfor.inf文件的第一行的数据会变为最新版本号 frmUpdate.frm窗体代码如下: Private Sub cmdExit_Click() Unload Me End Sub Private Sub cmdUpdate_Click() Dim strClientInfor() As String Dim strUpdateInfor() As String Dim nNum As Integer 存

    标签: ClientInfor UpdateInfor inf 数据表示

    上传时间: 2013-12-24

    上传用户:hanli8870

  • These Simulink blocks contain transfer functions that model the pressure and flow transients for axi

    These Simulink blocks contain transfer functions that model the pressure and flow transients for axisymmetric 2D viscous flow of a compressible fluid in a straight rigid circular cross section pipelines. Three models are available: (1) pressures at the ends (2) flow rates at the ends (3) pressure at one end and flow rate at the other Filtering is incorporated to reduce numerical oscillation (Gibbs phenomenon). See J. Dyn. Systems, Meas. & Control vol 122 (2000) pp. 153-162.

    标签: transients functions Simulink transfer

    上传时间: 2014-01-22

    上传用户:Shaikh

  • this procedure is a game of basketball or subsystems time, the competition will record the entire ti

    this procedure is a game of basketball or subsystems time, the competition will record the entire time, and can amend the Competition time suspended contest time, the two can be set at any time during the competition process of the match, the two teams exchanged scores midfielder position, Competition can end report issued directives

    标签: competition basketball subsystems procedure

    上传时间: 2016-02-14

    上传用户:cuibaigao