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.
上傳時間: 2013-12-06
上傳用戶:lixinxiang
本程序是一個動態建立鏈表的程序 分為鏈表的建立,打印,按照num大小順序添加節點和刪除這四個子函數。源碼程序在src和INclude文件夾里面,可執行程序是Linked_list_demo
上傳時間: 2015-12-21
上傳用戶:wpwpwlxwlx
類似flashget下載工具代碼 本來想在完善了上傳的,但太忙了,有些功能可能沒有實現或存在一些 bug. 編譯運行說明 1)安裝BCG 9.4把BCGCBPRO940d.dll BCGPStyle2007Luna.dll BCGPStyle2007Obsidian.dll BCGPStyle2007Silver.dll copy 到bin目錄下 2)把程序里的SHELLAIP目錄下的SHELLAPI.H覆蓋vc安裝目錄下vc98/INclude/下 3)編譯,運行。公司里下載請設置HTTP代理。 軟件功能特點:多線程下載,斷點序傳,暫停下載,方便的目錄管理,支持HTTP代理(我們公司里下高設置HTTP代碼),方便的個性化設置,界面美觀,占用內存小,下載速度快等等。 不足的地方:里面有些功能只做了界面,沒有實現,:) 比如現在下載文件只能放在C:\MyDown\下 BT下載功能也沒有做。沒有仔細的測試過,可能存在一些bug. 有什么問題可以聯系我 QQ:1495501
上傳時間: 2015-12-26
上傳用戶:songyue1991
1 安裝:首先安裝MPLAB IDE V7.42的程序,然后再安裝C的組件PICC8.05-PL.安裝過程中全部確認選擇,完畢后重啟計算機。 2 激活:(PICC8.05-PL) 運行“開始”菜單下的“HI-TECH SOFTWARE”中的 激活(Complier Activation)程序, 再同時啟動算號器程序(HtkeyGen.exe),將Last Name前的勾去掉,填入公司名稱,算出相應內 容填入激活程序相應欄目,OK即可完成激活。 3 設置: 3.1 將MPLAB 7.42啟動后,在文件欄中打開C的桌面項目文件,在Project欄目中 檢查 select language Toolsuite...中的選項,所有路徑須指向安裝路徑如C:\HT-PIC\BIN\PICC.EXE; 3.2 在Project欄目中檢查 setlanguage Tool Locations中的HI-TECH ToolsuiteXDGR 相關選項,executables中各程序應指向picc.exe Default Search Paths & Directories中 的相關路徑應為安裝目錄如C:\HT-PIC\INclude 和C:\HT-PIC\lib; 3.3 設置programmer中的select programmer選項為"MPLAB IED 2"(經驗:如果不打開編譯器,此選項無法選中)。 3.4 設置單片機型號,在Congfigure中的Select Device選擇準確的芯片型號;
上傳時間: 2016-01-01
上傳用戶:Ants
學會對文件的記錄鎖定,及解鎖。#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
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.
標簽: matrix performing template library
上傳時間: 2016-01-05
上傳用戶:h886166
Linux 2.4.18 s3c2440 led driver 使用dev-C++撰寫,需要linux 2.4.18 kernel INclude,編譯完成後產生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 }
標簽: 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.
標簽: the interest tutorial Drivers
上傳時間: 2016-01-28
上傳用戶:lmeeworm
gpio驅動 leddrv.c為驅動源程序 writeled.c為應用程序 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
標簽: 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
標簽: developped the workspace OpenSVM
上傳時間: 2016-01-30
上傳用戶:asdfasdfd