亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

project

Microsoftproject(或MSPROJ)是一個國際上享有盛譽的通用的項目管理工具軟件,凝集了許多成熟的項目管理現代理論和方法,可以幫助項目管理者實現時間、資源、成本計劃、控制。
  • /* RSA Demo 1.0 版 * 版權所有 (C) 2004 趙春生 * 2004.04.25 * http://timw.yeah.net * http://timw.126.com * 本程

    /* RSA Demo 1.0 版 * 版權所有 (C) 2004 趙春生 * 2004.04.25 * http://timw.yeah.net * http://timw.126.com * 本程序調用Miracl ver 4.82大數運算庫,詳見其附帶手冊。 * P,Q,N,D,E使用RSATool2生成。 */ 編譯提示: 一:將project-Settings-Settings For(All Configuration)-C/C++中Category項的 Precompiled Headers設置成:Automatic use of precompiled headers(圖1)。 二:將ms32.lib添加到工程中(圖2)。 三:MIRACL是C庫。 extern "C" { #include "miracl.h" #include "mirdef.h" } #pragma comment( lib, "ms32.lib" )

    標簽: 2004 http timw Demo

    上傳時間: 2013-12-17

    上傳用戶:liansi

  • The JDOM build system is based on Jakarta Ant, which is a Java building tool originally developed fo

    The JDOM build system is based on Jakarta Ant, which is a Java building tool originally developed for the Jakarta Tomcat project but now used in many other Apache projects and extended by many developers.

    標簽: originally developed building Jakarta

    上傳時間: 2014-01-19

    上傳用戶:xg262122

  • 先編寫MFC DLL

    先編寫MFC DLL,打開VC++6.0 => File => New => project => MFC AppWizzard(dll),在 project name 里輸入Calc =>Next => Finish. 好了,現在你打開Workspace的FileView就可以看到已經有Calc.h、Calc.cpp、stdafx.h、stdafx.cpp這4個文件了.

    標簽: MFC DLL 編寫

    上傳時間: 2013-12-21

    上傳用戶:13681659100

  • Bochs is a highly portable open source IA-32 (x86) PC emulator written in C++, that runs on most po

    Bochs is a highly portable open source IA-32 (x86) PC emulator written in C++, that runs on most popular platforms. It includes emulation of the Intel x86 CPU, common I/O devices, and a custom BIOS. Currently, Bochs can be compiled to emulate a 386, 486, Pentium, Pentium Pro or AMD64 CPU, including optional MMX, SSE, SSE2 and 3DNow! instructions. Bochs is capable of running most Operating Systems inside the emulation including Linux, DOS, Windows 95/98 and Windows NT/2000. Bochs was written by Kevin Lawton and is currently maintained by the Bochs project at "http://bochs.sourceforge.net".

    標簽: emulator portable written highly

    上傳時間: 2015-04-06

    上傳用戶:FreeSky

  • Many many developers all over the net respect NASM for what i s - a widespread (thus netwide), port

    Many many developers all over the net respect NASM for what i s - a widespread (thus netwide), portable (thus netwide!), very flexible and mature assembler tool with support for many output formats (thus netwide!!). Now we have good news for you: NASM is licensed under LGPL. This means its development is open to even wider society of programmers wishing to improve their lovely assembler. The NASM project is now situated at SourceForge.net, the most famous Open Source development center on The Net. Visit our development page at http://nasm.2y.net/ and our SF project at http://sf.net/projects/nasm/

    標簽: developers widespread netwide respect

    上傳時間: 2014-01-20

    上傳用戶:2404

  • 關于tts語音引擎的使用方法!很多軟件具有英文發音和朗讀功能

    關于tts語音引擎的使用方法!很多軟件具有英文發音和朗讀功能,它們都使用了MSTTS(Microsoft Text To Speech)技術。微軟遵照COM的標準,提供了一套Speech API來對MSTTS進行編程。要在程序中使用這套API,必須確保系統已經安裝了MSTTS和Spchapi軟件包。   Speech API可以作為類型庫引用到Delphi中,方法是:打開project選單下的Import Type Litrary,點擊“Add”加入Windows\Speech目錄下的Vtxauto.tlb文件,在Delphi的Import目錄中就會生成VTxtAuto—TLB.pas文件,其中定義了VTxtAuto—TLB單元,把它加到Uses成員中來。設計如圖2所示的窗口,定義全局變量: var VoTxt:IVTxtAuto   然后在Form的OnCreate事件中加入:   VoTxt:=CoVTxtAuto_.Create   VoTxt.Register(′′,′Speech Test′) {注冊}   “Read”按鈕代碼為:   VoTxt.Speak(Memo1.Lines.Text,10) {朗讀}   “Stop”按鈕代碼為:   VoTxt.StopSpeaking {停止朗讀}   至此,應用程序已具有朗讀功能,10表示使用普通語氣。借住VoTxt的屬性和方法,我們還可以控制閱讀速度和語氣,實現暫停、跳句等功能,Speech API編程就這么簡單。

    標簽: tts 語音 引擎 多軟件

    上傳時間: 2014-01-21

    上傳用戶:13681659100

  • 1 程序開發步驟如下 (1) 打開vc

    1 程序開發步驟如下 (1) 打開vc,選擇菜單項file->new,選擇projects選項并建立一個名為"floppy"的win32 console applicatoin工程;創建時注意指定創建該工程的目錄; (2) 在工程中創建源文件"floppy.cpp":選擇菜單項project->add to project->files,在選擇框中輸入自己想要創建的文件名,這里是"floppy.cpp";在接下來詢問是否創建新文件時回答"yes";然后通過Workspace->FileView->Source Files打開該文件,在其中編輯本程序的源代碼;編輯結束后通過菜單項File->Save進行保存; (3) 同(2)步驟再加入文件"floppy.h"; (4) 通過調用菜單命令項build->build all進行編譯連接,可以在指定的工程目錄下得到debug->floppy.exe程序;現在即可以運行該程序;由于沒有命令行參數,故不必在控制臺下來運行,直接運行即可; 2 補充說明 這里僅僅給出了編譯結果和源程序,沒有所創建工程的其他文件。

    標簽: 程序開發

    上傳時間: 2014-01-02

    上傳用戶:wpt

  • 用LPC213X系列的PWM來產生語音。語音數據來源于PC機轉換后得到的。最大可以是16位的。 由于是PWM所以輸出端口需要低通濾波才能夠得到比較干凈的聲音。 可以經過修改使用LPC2132以上的

    用LPC213X系列的PWM來產生語音。語音數據來源于PC機轉換后得到的。最大可以是16位的。 由于是PWM所以輸出端口需要低通濾波才能夠得到比較干凈的聲音。 可以經過修改使用LPC2132以上的ARM的D/A來產生。 This project outputs audio on PWM0 using wave samples that are stored in the on-chip Flash ROM.

    標簽: LPC PWM 213X 2132

    上傳時間: 2014-11-07

    上傳用戶:zhanditian

  • this is a trade sale system realized by java. It can run some easy functions and has a good design p

    this is a trade sale system realized by java. It can run some easy functions and has a good design pattern CVS. A good project to learn CVS.

    標簽: functions realized design system

    上傳時間: 2015-04-17

    上傳用戶:sz_hjbf

  • ICA can be used in brain activation studies to reduce the number of dimension and filter out indepen

    ICA can be used in brain activation studies to reduce the number of dimension and filter out independent and interesting activations. This demonstration shows two studies. One provided by Hvidovre Universitets Hospital, Denmark, that consists of fMRI scannings of humans. Another provided by the EU sponsored MAPAWAMO project from fMRI scannings of monkeys. In the demo comparison between icaMS, icaML, icaMF, icaMF (positive sources) and PCA can be made. More detailes can found in [2].

    標簽: activation dimension studies indepen

    上傳時間: 2015-04-19

    上傳用戶:zukfu

主站蜘蛛池模板: 贡觉县| 贡山| 叙永县| 安丘市| 巴楚县| 仪陇县| 宜昌市| 隆子县| 建阳市| 东方市| 两当县| 多伦县| 交城县| 辉县市| 盐边县| 高唐县| 永定县| 甘洛县| 茌平县| 衡水市| 双江| 荥经县| 固镇县| 辛集市| 灌阳县| 徐水县| 商水县| 城步| 凌海市| 和林格尔县| 靖宇县| 北海市| 隆林| 乐平市| 兴和县| 米脂县| 上思县| 巴塘县| 石泉县| 和林格尔县| 财经|