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

YOUR-MTD

  • Base64算法

    Base64算法,This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application

    标签: Base 64 算法

    上传时间: 2015-12-22

    上传用户:wangyi39

  • This a small hack I wrote to bypass the "No previous installation!" error of Microchip s C18 Upgrade

    This a small hack I wrote to bypass the "No previous installation!" error of Microchip s C18 Upgrade. Simply run C18Fake and select your C18 installation directory (create if necessary) and click Save button. A "fake" file will now be created into that directory, and this will fool the Upgrade into thinking you already have a former legit installation. After that you run the C18 Upgrade setup and select the same directory you created/selected before. Your installation will now begin installing the full C18 package.

    标签: installation Microchip previous Upgrade

    上传时间: 2014-01-21

    上传用户:zhuyibin

  • The LabVIEW Development Guidelines describe many of the issues that arise when developing large app

    The LabVIEW Development Guidelines describe many of the issues that arise when developing large applications. The guidelines are based on the advice of LabVIEW developers, and provide a basic survey of software engineering techniques you might find useful when developing your own projects. There is also a discussion of style for creating VIs. Developers who have used LabVIEW and are comfortable in the LabVIEW environment can use the LabVIEW Development Guidelines to maintain a consistent and effective style in their projects.

    标签: Development Guidelines developing describe

    上传时间: 2015-12-26

    上传用户:iswlkje

  • 《JavaServer Faces》 In JavaServer Faces, developers learn how to use the new JavaServer Faces framew

    《JavaServer Faces》 In JavaServer Faces, developers learn how to use the new JavaServer Faces framework to build real-world web applications. The book contains everything you ll need: how to construct the HTML on the front end how to create the user interface components that connect the front end to your business objects how to write a back-end that s JSF-friendly and how to create the deployment descriptors that tie everything together. This book is a complete guide to the crucial new JSF technology.

    标签: JavaServer Faces developers framew

    上传时间: 2016-01-02

    上传用户:redmoons

  • Example to support XML files using MSXML. ========================================= XML (Extensi

    Example to support XML files using MSXML. ========================================= XML (Extensible Markup Language) is a commonly used basis for representing a huge range of structured data file formats. The specification is maintained by the World Wide Web Consortium (W3C?. This plugin is intended as an example of how XML data can be read with a DataPlugin. You can adjust it to meet the needs of your own XML file format. After installing the URI file (double click on it), you can find the VBScript file located at "C:\Program Files\National Instruments\Shared\USI\plugins\DataPlugins\XML Example" You can make changes to this file to read your specific XML file.

    标签: XML Example support Extensi

    上传时间: 2016-01-03

    上传用户:cooran

  • XML (Extensible Markup Language) is a commonly used basis for representing a huge range of structu

    XML (Extensible Markup Language) is a commonly used basis for representing a huge range of structured data file formats. The specification is maintained by the World Wide Web Consortium (W3C?. This plugin is intended as an example of how XML data can be read with a DataPlugin. You can adjust it to meet the needs of your own XML file format.

    标签: representing Extensible Language commonly

    上传时间: 2014-03-04

    上传用户:685

  • XML (Extensible Markup Language) is a commonly used basis for representing a huge range of structu

    XML (Extensible Markup Language) is a commonly used basis for representing a huge range of structured data file formats. The specification is maintained by the World Wide Web Consortium (W3C?. This plugin is intended as an example of how XML data can be read with a DataPlugin. You can adjust it to meet the needs of your own XML file format.

    标签: representing Extensible Language commonly

    上传时间: 2016-01-03

    上传用户:semi1981

  • XML (Extensible Markup Language) is a commonly used basis for representing a huge range of structu

    XML (Extensible Markup Language) is a commonly used basis for representing a huge range of structured data file formats. The specification is maintained by the World Wide Web Consortium (W3C?. This plugin is intended as an example of how XML data can be read with a DataPlugin. You can adjust it to meet the needs of your own XML file format.

    标签: representing Extensible Language commonly

    上传时间: 2016-01-03

    上传用户:nanfeicui

  • 说明文件: XML (Extensible Markup Language) is a commonly used basis for representing a huge range of

    说明文件: XML (Extensible Markup Language) is a commonly used basis for representing a huge range of structured data file formats. The specification is maintained by the World Wide Web Consortium (W3C?. This plugin is intended as an example of how XML data can be read with a DataPlugin. You can adjust it to meet the needs of your own XML file format.

    标签: representing Extensible Language commonly

    上传时间: 2016-01-03

    上传用户:dreamboy36

  • 学会对文件的记录锁定

    学会对文件的记录锁定,及解锁。#include <stdio.h> #include <unistd.h> #include <fcntl.h> int main() { int fd int i struct { char name[20] uint ID int age } myrec fd =open("name", O_RDWR|O_CREAT, 0755) if (fd == -1) return -1 printf("Input your name:") scanf("%s", myrec.name) printf("Inpute your ID :") scanf("%d", &myrec.ID) printf("Input your age :") scanf("%d", &myrec.age) lseek(fd, 0,SEEK_END) lockf(fd, 1, 0) write(fd, (void *)&myrec, sizeof(myrec)) lockf(fd, 0 ,0) return 0 } 执行命令cc lock.c –o lock.out Chmod +x lock.out ./lock.out

    标签: 记录

    上传时间: 2016-01-04

    上传用户:亚亚娟娟123