2012-07-14-C语言课设进度

今天任务:完成录入模块;

实际完成:

菜单都还没做出来;

认识了几个函数和几种windows structure:

结构:(structure)

COORD                                                 定义一个坐标

HANDLE                                                定义一个句柄

CONSOLE_SCREEN_BUFFER_INFO           Contains information about a console screen buffer.

SMALL_RECT                                         Defines the coordinates of the upper left and lower right corners of a rectangle.

CHAR_INFO                                            Specifies a Unicode or ANSI character and its attributes. This structure is                                                             used by console functions to read from and write to a console screen buffer.

函数(function)

GetStdHandle(DWORD )                                      included in windows.h,返回标准的输入、输出或错误的设备的句柄,也就是获得输入、输出/错误的屏幕缓冲区的句柄

 SetConsoleCursorPosition(HANDLE,COORD)          included in windows.h 是光标定位函数

SetConsoleTextAttribute(HANDLE,WORD)              included in window.h   文本配置信息

SetConsoleTitle(_in LPCTSTR IpConsoleTitle)        included in windows.h设置控制台的标题

GetConsoleTitel(_out LPTSTR IpConsoleTitle,_in DWORD nSize) included in windows.h获得控制台的标题

_getch                                                               included in conio.h 从控制台读取一个字符,但不显示在屏幕上

 明天任务:

完成菜单设计,并开始录入模块初步

你可能感兴趣的:(2012-07-14-C语言课设进度)