A rich edit control is a window in which the user can enter and edit text. The text can be assigned character and paragraph formatting, and can include embedded OLE objects. Rich edit controls provide a programming interface for formatting text.
標(biāo)簽: edit text can assigned
上傳時間: 2013-12-06
上傳用戶:lixinxiang
本程序是一個動態(tài)建立鏈表的程序 分為鏈表的建立,打印,按照num大小順序添加節(jié)點(diǎn)和刪除這四個子函數(shù)。源碼程序在src和include文件夾里面,可執(zhí)行程序是Linked_list_demo
上傳時間: 2015-12-21
上傳用戶:wpwpwlxwlx
類似flashget下載工具代碼 本來想在完善了上傳的,但太忙了,有些功能可能沒有實(shí)現(xiàn)或存在一些 bug. 編譯運(yùn)行說明 1)安裝BCG 9.4把BCGCBPRO940d.dll BCGPStyle2007Luna.dll BCGPStyle2007Obsidian.dll BCGPStyle2007Silver.dll copy 到bin目錄下 2)把程序里的SHELLAIP目錄下的SHELLAPI.H覆蓋vc安裝目錄下vc98/include/下 3)編譯,運(yùn)行。公司里下載請?jiān)O(shè)置HTTP代理。 軟件功能特點(diǎn):多線程下載,斷點(diǎn)序傳,暫停下載,方便的目錄管理,支持HTTP代理(我們公司里下高設(shè)置HTTP代碼),方便的個性化設(shè)置,界面美觀,占用內(nèi)存小,下載速度快等等。 不足的地方:里面有些功能只做了界面,沒有實(shí)現(xiàn),:) 比如現(xiàn)在下載文件只能放在C:\MyDown\下 BT下載功能也沒有做。沒有仔細(xì)的測試過,可能存在一些bug. 有什么問題可以聯(lián)系我 QQ:1495501
上傳時間: 2015-12-26
上傳用戶:songyue1991
1 安裝:首先安裝MPLAB IDE V7.42的程序,然后再安裝C的組件PICC8.05-PL.安裝過程中全部確認(rèn)選擇,完畢后重啟計(jì)算機(jī)。 2 激活:(PICC8.05-PL) 運(yùn)行“開始”菜單下的“HI-TECH SOFTWARE”中的 激活(Complier Activation)程序, 再同時啟動算號器程序(HtkeyGen.exe),將Last Name前的勾去掉,填入公司名稱,算出相應(yīng)內(nèi) 容填入激活程序相應(yīng)欄目,OK即可完成激活。 3 設(shè)置: 3.1 將MPLAB 7.42啟動后,在文件欄中打開C的桌面項(xiàng)目文件,在Project欄目中 檢查 select language Toolsuite...中的選項(xiàng),所有路徑須指向安裝路徑如C:\HT-PIC\BIN\PICC.EXE; 3.2 在Project欄目中檢查 setlanguage Tool Locations中的HI-TECH ToolsuiteXDGR 相關(guān)選項(xiàng),executables中各程序應(yīng)指向picc.exe Default Search Paths & Directories中 的相關(guān)路徑應(yīng)為安裝目錄如C:\HT-PIC\include 和C:\HT-PIC\lib; 3.3 設(shè)置programmer中的select programmer選項(xiàng)為"MPLAB IED 2"(經(jīng)驗(yàn):如果不打開編譯器,此選項(xiàng)無法選中)。 3.4 設(shè)置單片機(jī)型號,在Congfigure中的Select Device選擇準(zhǔn)確的芯片型號;
上傳時間: 2016-01-01
上傳用戶:Ants
學(xué)會對文件的記錄鎖定,及解鎖。#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 } 執(zhí)行命令cc lock.c –o lock.out Chmod +x lock.out ./lock.out
標(biāo)簽: 記錄
上傳時間: 2016-01-04
上傳用戶:亞亞娟娟123
Matrix TCL Lite 1.12 This matrix C++ template class library is for performing common matrix operations in your C++ program like any other built-in data types. To install the package, just copy MATRIX.H file into the include directory of your compiler and include this header file in your program source file.
標(biāo)簽: matrix performing template library
上傳時間: 2016-01-05
上傳用戶:h886166
Linux 2.4.18 s3c2440 led driver 使用dev-C++撰寫,需要linux 2.4.18 kernel include,編譯完成後產(chǎn)生led module。 insmod main.o //安裝模組 mknod /dev/leds c 221 0 使用方法: int main(int argc, char *argv[]) { int testdev //led test... testdev = open("/dev/QuickMarkLed",O_RDWR) ioctl(testdev, 2, 1) //ioctl(device, led number, open/close) open=1 ioctl(testdev, argv[1][0]- 0 , argv[2][0]- 0 ) //ioctl(device, led number, open/close) open=1 close(testdev) return 0 }
標(biāo)簽: s3c2440 driver Linux dev-C
上傳時間: 2014-01-01
上傳用戶:qlpqlq
This the second tutorial of the Writing Device Drivers series. There seems to be a lot of interest in the topic, so this article will pick up where the first left off. The main focus of these articles will be to build up little by little the knowledge needed to write device drivers. In this article, we will be building on the same example source code used in part one. In this article, we will expand on that code to include Read functionality, Handle Input/Ouput Controls also known as IOCTLs, and learn a bit more about IRPs.
標(biāo)簽: the interest tutorial Drivers
上傳時間: 2016-01-28
上傳用戶:lmeeworm
gpio驅(qū)動 leddrv.c為驅(qū)動源程序 writeled.c為應(yīng)用程序 writeled.c 編譯方式 arm-elf-gcc -Wall -O2 -Wl,-elf2flt -o writeled writeled.c leddrv.c 編譯方式 arm-elf-gcc -D__KERNEL__ -I你的uClinux目錄/linux-2.4.x/include-Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common -fno-common -pipe -fno-builtin -D__linux__ -DNO_MM -mapcs-32 -march=armv4 -mtune=arm7tdmi -mshort-load-bytes -msoft-float -DMODULE -c -o leddrv.o leddrv.c
標(biāo)簽: writeled arm-elf-gcc leddrv gpio
上傳時間: 2013-12-13
上傳用戶:kytqcool
OpenSVM was developped under Visual C++ 6.0 SP6, You can open the workspace file(*.dsw) in the opensvm-src folder. The folder include the svm.h and svm.cpp which in the libsvm (Copyright (c) 2000-2007 Chih-Chung Chang and Chih-Jen Lin All rights reserved) in the opensvm-src\libsvm. However, the files svm.h and svm.cpp codes were copied/merged into stdafx.h and stdafx.cpp in order to support the development, and OpenSVM still use other codes of libsvm. So you can see the libsvm package in the source package. You can open and build it with Visual C++ 6.0. Note: the problems must be in LIBSVM format. OpenSVM project page: http://sourceforge.net/projects/opensvm If you had any question, please mail to: cloudbyron@gmail.com
標(biāo)簽: developped the workspace OpenSVM
上傳時間: 2016-01-30
上傳用戶:asdfasdfd
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1