Welcome![Sign In][Sign Up]
Location:
Search - pop w

Search list

[Internet-NetworkInternetProgramming

Description: See Appendix B for a description of the programs included on this companion disk. RESOURCE.WRI identifies other books and resources for Internet programming. WEBHELP.HLP contains an introduction to the World Wide Web. TCPMAN.HLP provides detailed instructions to help you use the Trumpet Winsock included on this disk. Use the Program Manager s File menu Run option to execute the SETUP.EXE program found on this disk. SETUP.EXE will install the programs on your hard drive and create an Internet Programming group window. Internet编程技术 [配套程序] [涉及平台] VC [作者] void [文件大小] 1032K -See Appendix B for a description of the prog rams included on this companion disk. RESOURCE . WRI identifies books and other resources for I '96 programming. WEBHELP.HLP contains an introduction to the World Wide Web. TCPMAN.HLP provides detailed instructions to help you use the Trumpet Winsock included on this disk. Use t he Program Manager Run s File menu option to exec pop the SETUP.EXE program found on this disk. SE TUP.EXE will install the programs on your hard d RCD and create an Internet Programming group w INDOW. Internet programming techniques [supporting] [procedures involving platform] VC [Author] void [Size] 1032K
Platform: | Size: 980364 | Author: 罗宝生 | Hits:

[Menu controlFormHelp.v3.7.1.For.Delphi5679.CR

Description: he FormHelp component adds the context-sensitive help features to your Delphi/BCB forms without any bulky help files. It traps the context-sensitive help calls and creates its own popup windows from a control s hint. You can choose whether to interpret the hint string as plain text or as kind of rich text allowing you to apply different fonts colors, styles and line breaks. Don t worry about your hints - FormHelp uses the secondary part of a control s hint that is separated by a vertical bar \"|\". Mouse hints still works as well. With FormHelp, neither help context numbers nor extra help files are required to display context sensitive help. FormHelp s popup windows looks and feels like native context help in standard Windows applications. -he FormHelp component adds the context-se nsitive help features to your Delphi / BCB forms without any help bulky files. It traps the Conte xt-sensitive help calls and creates its own pop windows up from a control s hint. You can choose w hether to interpret the hint string as plain tex t or as kind of rich text allowing you to apply dif peptide fonts colors, styles and line breaks. Don t worry about your hi NTs - FormHelp uses the secondary part of a Contr ol s hint that is separated by a vertical bar "|." Mouse hints still works as well. With FormHelp. neither numbers nor help context extra help fil es are required to display context sensitive he lp. FormHelp s popup windows looks and feels designer e native context help in standard Windows appli page 4.
Platform: | Size: 219743 | Author: hfb | Hits:

[Button controlHSYmenus

Description: popups.zip 演示右击鼠标弹出菜单 popmenu.zip 演示右击鼠标弹出菜单 nod_popup.zip 定位弹出菜单 custmnu2.zip 画一个定制的动态菜单,使用的是Picturte Box 与PoP Menu的组合 hidemnu2.zip 用Windows API控制菜单,包括如何显示和隐藏菜单项 历史文件.zip 本程序演示了在菜单中如何用注册表实现保存和显示4 个最近打开的文件记录-popups.zip demonstration right-click pop-up menu popmenu.zip demonstration right click mouse Standard pop-up menu nod_popup.zip positioning pop-up menu painting a set custmnu2.zip the dynamic menu system, using the Picturte Box PoP Menu with a combination of W hidemnu2.zip for Windows API control menu, including how to show hidden menu items and historical documents. zip demonstration of the process from the menu how to achieve preservation registry and recently revealed four open file records
Platform: | Size: 18218 | Author: hsy | Hits:

[OtherLoadGif

Description: 目前在网上有一个CPictureEx类,用于加载GIF动画,不过该类是mfc封装类,对于不使用mfc的c++程序员来讲,不能使用。为了让该类能够让更多的人方便的使用,使其不再被局限于MFC,本人花时间改造了一下这个类,改造后,该类可以应用于任何MFC、 WTL/ATL及其它WINDOWS API编程。   由于原来的CPictureEx是继承于CStatic类,本人改造后,在CPictureEx中直接封装了一个窗口句柄HWND。   假设您在一个弹出式Dialog对话框中加载gif动画,您要做的就是在对话框中放一个控件,可以是BUTTON、STATIC等等。假设您加的这个控件的ID是IDC_FLASH,您的对话框窗口句柄是hDlg,则要使用CPictureEx,将非常简单。详情参见源代码。-present on the Internet which is a CPictureEx category for loading GIF animation, But such is mfc Packaging category for the non-use of the c mfc speaking programmers, which can not be used. To allow such to allow more people to use, it will not be confined to the MFC. I spend time on this transformation of the type that after transformation, and these can be applied to any MFC. WTL / ATL and other Windows API programming. As the original CPictureEx inherited from CStatic category, I transform, In CPictureEx directly Packaging a window handle HWND. Suppose you in a pop-up dialog box loaded Dialog gif animation You need to be done is up in a dialog box controls can be BUTTON, STATIC, and so on. Suppose you added in the control ID is IDC_FLASH, your dialog window handle is hDlg, CPictureEx w
Platform: | Size: 365419 | Author: 王易 | Hits:

[assembly language闰年计算

Description:

 data segment    ;定义数据段

    infon db 0dh,0ah,'Please input a year: $'
    Y db 0dh,0ah,'This is a leap year! $'
    N db 0dh,0ah,'This is not a leap year! $'
    w dw 0
    buf db 8
        db ?
        db 8 dup(?)
data ends
 
stack segment stack
    db 200 dup(0)
stack ends
 
code segment
          assume ds:data,ss:stack,cs:code
    start:mov ax,data
          mov ds,ax
         
          lea dx,infon ;在屏幕上显示提示信息
          mov ah,9
          int 21h
 
          lea dx,buf    ;从键盘输入年份字符串
          mov ah,10
          int 21h
         
          mov cl, [buf+1]
          lea di,buf+2
          call datacate
          call ifyears
          jc a1
         
          lea dx,n
          mov ah,9
          int 21h
          jmp exit
    a1:   lea dx,y
          mov ah,9
          int 21h
    exit: mov ah,4ch
          int 21h
      
 
 
 datacate proc near;
          push cx;                                                      
          dec cx
          lea si,buf+2
     tt1: inc si
          loop tt1
          ;lea si,cx[di]
          pop cx
    
     
          mov dh,30h
          mov bl,10
          mov ax,1
      l1: push ax
          sub byte ptr [si],dh
          mul byte ptr [si]
          add w,ax
          pop ax
          mul bl
          dec si
          loop l1
          ret
 datacate endp
 
 
   ifyears proc near
           push bx
           push cx
           push dx
           mov ax,w
           mov   cx,ax
           mov dx,0
           mov bx,4
           div bx
           cmp dx,0
           jnz lab1
           mov   ax,cx
           mov bx,100
           div bx
           cmp dx,0
           jnz lab2
           mov ax,cx
           mov bx,400
           div bx
           cmp dx,0
           jz lab2
     lab1: clc
           jmp lab3
     lab2: stc
     lab3: pop dx
           pop cx
           pop bx
           ret
   ifyears endp
code ends
   end start
     




[广告] 2008年最受关注楼盘


Platform: | Size: 10752 | Author: jackdawson0@ | Hits:

[Internet-NetworkInternetProgramming

Description: See Appendix B for a description of the programs included on this companion disk. RESOURCE.WRI identifies other books and resources for Internet programming. WEBHELP.HLP contains an introduction to the World Wide Web. TCPMAN.HLP provides detailed instructions to help you use the Trumpet Winsock included on this disk. Use the Program Manager s File menu Run option to execute the SETUP.EXE program found on this disk. SETUP.EXE will install the programs on your hard drive and create an Internet Programming group window. Internet编程技术 [配套程序] [涉及平台] VC [作者] void [文件大小] 1032K -See Appendix B for a description of the prog rams included on this companion disk. RESOURCE . WRI identifies books and other resources for I '96 programming. WEBHELP.HLP contains an introduction to the World Wide Web. TCPMAN.HLP provides detailed instructions to help you use the Trumpet Winsock included on this disk. Use t he Program Manager Run s File menu option to exec pop the SETUP.EXE program found on this disk. SE TUP.EXE will install the programs on your hard d RCD and create an Internet Programming group w INDOW. Internet programming techniques [supporting] [procedures involving platform] VC [Author] void [Size] 1032K
Platform: | Size: 979968 | Author: 罗宝生 | Hits:

[Menu controlFormHelp.v3.7.1.For.Delphi5679.CR

Description: he FormHelp component adds the context-sensitive help features to your Delphi/BCB forms without any bulky help files. It traps the context-sensitive help calls and creates its own popup windows from a control s hint. You can choose whether to interpret the hint string as plain text or as kind of rich text allowing you to apply different fonts colors, styles and line breaks. Don t worry about your hints - FormHelp uses the secondary part of a control s hint that is separated by a vertical bar "|". Mouse hints still works as well. With FormHelp, neither help context numbers nor extra help files are required to display context sensitive help. FormHelp s popup windows looks and feels like native context help in standard Windows applications. -he FormHelp component adds the context-se nsitive help features to your Delphi/BCB forms without any help bulky files. It traps the Conte xt-sensitive help calls and creates its own pop windows up from a control s hint. You can choose w hether to interpret the hint string as plain tex t or as kind of rich text allowing you to apply dif peptide fonts colors, styles and line breaks. Don t worry about your hi NTs- FormHelp uses the secondary part of a Contr ol s hint that is separated by a vertical bar "|." Mouse hints still works as well. With FormHelp. neither numbers nor help context extra help fil es are required to display context sensitive he lp. FormHelp s popup windows looks and feels designer e native context help in standard Windows appli page 4.
Platform: | Size: 219136 | Author: hfb | Hits:

[Button controlHSYmenus

Description: popups.zip 演示右击鼠标弹出菜单 popmenu.zip 演示右击鼠标弹出菜单 nod_popup.zip 定位弹出菜单 custmnu2.zip 画一个定制的动态菜单,使用的是Picturte Box 与PoP Menu的组合 hidemnu2.zip 用Windows API控制菜单,包括如何显示和隐藏菜单项 历史文件.zip 本程序演示了在菜单中如何用注册表实现保存和显示4 个最近打开的文件记录-popups.zip demonstration right-click pop-up menu popmenu.zip demonstration right click mouse Standard pop-up menu nod_popup.zip positioning pop-up menu painting a set custmnu2.zip the dynamic menu system, using the Picturte Box PoP Menu with a combination of W hidemnu2.zip for Windows API control menu, including how to show hidden menu items and historical documents. zip demonstration of the process from the menu how to achieve preservation registry and recently revealed four open file records
Platform: | Size: 18432 | Author: hsy | Hits:

[OtherLoadGif

Description: 目前在网上有一个CPictureEx类,用于加载GIF动画,不过该类是mfc封装类,对于不使用mfc的c++程序员来讲,不能使用。为了让该类能够让更多的人方便的使用,使其不再被局限于MFC,本人花时间改造了一下这个类,改造后,该类可以应用于任何MFC、 WTL/ATL及其它WINDOWS API编程。   由于原来的CPictureEx是继承于CStatic类,本人改造后,在CPictureEx中直接封装了一个窗口句柄HWND。   假设您在一个弹出式Dialog对话框中加载gif动画,您要做的就是在对话框中放一个控件,可以是BUTTON、STATIC等等。假设您加的这个控件的ID是IDC_FLASH,您的对话框窗口句柄是hDlg,则要使用CPictureEx,将非常简单。详情参见源代码。-present on the Internet which is a CPictureEx category for loading GIF animation, But such is mfc Packaging category for the non-use of the c mfc speaking programmers, which can not be used. To allow such to allow more people to use, it will not be confined to the MFC. I spend time on this transformation of the type that after transformation, and these can be applied to any MFC. WTL/ATL and other Windows API programming. As the original CPictureEx inherited from CStatic category, I transform, In CPictureEx directly Packaging a window handle HWND. Suppose you in a pop-up dialog box loaded Dialog gif animation You need to be done is up in a dialog box controls can be BUTTON, STATIC, and so on. Suppose you added in the control ID is IDC_FLASH, your dialog window handle is hDlg, CPictureEx w
Platform: | Size: 365568 | Author: 王易 | Hits:

[Other Gameswarrior_load_source

Description: game.exe - 游戏可执行程序 mcl_edit.exe - 角色编辑器 mil_edit.exe - 物品编辑器 mls_edit.exe - 脚本编辑器 msl_edit.exe - 法术编辑器 游戏玩法: 使用 "W A D"或者"↑ ← →"进行移动,鼠标左键进行攻击或交谈,鼠标右键弹出状态菜单。 点击鼠标左键的同时按住数字键将施放法术攻击,鼠标左键必须点击要施法的目标。 1 - 火球术 2 - 冰锥术 3 - 自我治疗 4 - 传送回城镇 5 - 飞弹术-game.exe- game executable program mcl_edit.exe- the role of editor mil_edit.exe- Articles Editor mls_edit.exe- Script Editor msl_edit.exe- magic editor gameplay: Use the WAD or ↑ ← → mobile, the left mouse button to attack or talk to the state of the right mouse button pop-up menu. Click the left mouse button while holding down the number keys will be used magic attacks, have to click the left mouse button to magic goal. 1- Fireball surgery 2- ice technique 3- self-treatment of 4- to send back to cities and towns 5- missile surgery
Platform: | Size: 4256768 | Author: 邹长昌 | Hits:

[Otherzsxm3.1.1

Description: 2008-11-24日更新 升级版本号为v3.1.0 1、解决中文帐号登陆乱码问题 2、解决自动运输和特殊功能有时候弹出继续按钮的问题 3、修正注册系统、可以通过逗号分割同时注册多个注册码 4、增加电玩巴士服务器-2008-11-24 updated version number to upgrade to v3.1.01, landing garbled account to resolve the issue of Chinese 2, solve the automatic transport and special function buttons sometimes pop-up continue to Question 3, to amend the registration system, you can register more than a comma partition a key 4, to increase the bus video server
Platform: | Size: 2574336 | Author: david | Hits:

[Software Engineeringw

Description: 有效解决 pubwin2007 广告弹出的问题。解决的办法。在此-Pubwin2007 an effective solution to the issue of pop-up ads. Solution. In this
Platform: | Size: 62464 | Author: dddfff | Hits:

[WEB CodePOP_download

Description: 使用OpenPOP实现读取邮箱的所有邮件,测试126邮箱成功。-Use OpenPOP achieve read all messages in mailbox to test 126 mailboxes successfully.
Platform: | Size: 140288 | Author: | Hits:

[JSP/JavafDialog_v1.0.1

Description: fDialog是一个基于jQuery的弹出层插件,几乎能兼容包括IE6在内的所有常用浏览器。同时弹出层上所有元素都可以轻松定义。 fDialog遵循LGPL协议,永久性提供无偿服务。 更新日志 2015-06-03 :发布v1.0.0 2015-06-12 :更新为v1.0.1 1、宽高支持 width或w,height或h 两种方式调用 2、ajax模块,增加ajaxData参数 3、默认插件中增加拖拽功能(drag参数为true代码允许拖拽) 4、默认模板中去掉footer高度限制,防止在CSS3 box-sizing: border-box 模式下按钮超出的问题-FDialog is a jQuery based pop- up layer plug-in, almost compatible with all common browsers, including IE6. While all elements on the pop layer can be easily defined. FDialog follows the LGPL protocol and provides free services for the permanent. Update log 2015-06-03: v1.0.0 2015-06-12: update to v1.0.1 1, wide support for width or W, height or H two way call 2, AJAX module, increase ajaxData parameters 3, the default plug-in to add the drag parameter (true parameter for the drag) 4, the default template to remove the footer height limit, prevent the problem in the box-sizing: border-box CSS3 mode button beyond
Platform: | Size: 44032 | Author: xiaofei | Hits:

CodeBus www.codebus.net