TC中的window()函数,在VC的控制台下用什么函数替换?
发布网友
发布时间:2024-10-08 23:16
我来回答
共2个回答
热心网友
时间:2024-10-08 23:54
你所说的子窗口已经被多窗口应用替代了,可以多开几个窗口。
windows中所有可用的MSDOS窗口函数:
"AllocConsole Creates a console for the current process",
"CreateConsoleScreenBuffer Returns a handle to a new screen buffer",
"FillConsoleOutputAttribute Writes attributes to the screen buffer",
"FillConsoleOutputCharacter Writes characters to the screen buffer",
"FlushConsoleInputBuffer Clears the console input buffer",
"FreeConsole Frees the current console",
"GenerateConsoleCtrlEvent Generates a console control event",
"GetConsoleCP Get current console input codepage",
"GetConsoleOutputCP Get current console output codepage",
"GetConsoleCursorInfo Returns console size and visibility",
"GetConsoleMode Returns console input or output mode",
"GetConsoleScreenBufferInfo Returns screen-buffer information",
"GetConsoleTitle Returns console-window title",
"GetLargestConsoleWindowSize Returns largest possible window size",
"GetNumberOfConsoleInputEvents Retrieves number of console-queue events",
"GetNumberOfConsoleMouseButtons Retrieves number of mouse buttons",
"PeekConsoleInput Previews console input data",
"ReadConsoleInput Reads console input data",
"ReadConsoleOutput Reads screen-buffer data",
"ReadConsoleOutputAttribute Reads a console attribute string",
"ReadConsoleOutputCharacter Reads a screen-buffer string",
"ScrollConsoleScreenBuffer Scrolls data in the screen buffer",
"SetConsoleActiveScreenBuffer Changes displayed screen buffer",
"SetConsoleCP Sets console input codepage",
"SetConsoleOutputCP Sets console output codepage",
"SetConsoleCursorInfo Sets cursor size and visibility",
"SetConsoleCursorPosition Sets cursor position",
"SetConsoleMode Sets console input or output mode",
"SetConsoleScreenBufferSize Changes screen-buffer size",
"SetConsoleTextAttribute Sets attributes for screen text",
"SetConsoleTitle Sets console-window title string",
"SetConsoleWindowInfo Sets console window size",
"SetConsoleCtrlHandler Sets console ctrl-c handler",
"WriteConsoleInput Writes to console input buffer",
"WriteConsoleOutput Writes to screen buffer",
"WriteConsoleOutputAttribute Writes an attribute string to console",
"WriteConsoleOutputCharacter Writes a character string to console"
热心网友
时间:2024-10-08 23:53
这个windows函数是16位DOS实模式下的函数,直接调用BIOS的,而WINDOWS系统本身(从2k,XP及以上)开始就不允许这样做了...
不单单是有没有这个函数的问题,而是你的操作系统不允许这样做的问题
TC中的window()函数,在VC的控制台下用什么函数替换?
你所说的子窗口已经被多窗口应用替代了,可以多开几个窗口。windows中所有可用的MSDOS窗口函数:"AllocConsole Creates a console for the current process","CreateConsoleScreenBuffer Returns a handle to a new screen buffer","FillConsoleOutputAttribute Writes attributes to the screen buff...
vlookup 的用法
VLOOKUP是Excel中用于垂直查找的函数,其基本用法包括四个参数:1. 查找值:即在数据表首列中需要搜索的值。2. 数据表:包含查找值的单元格区域或数组。3. 返回值所在列数:指定返回查询区域中第几列的值。4. 查找方式:选择精确匹配(FALSE)或近似匹配(TRUE),前者要求完全匹配,后者则返回最接近且不大于查找值的项。VLOOKUP能够精确查找与大致匹配数据,并跨列提取相关信息,是数据处理中非常实用的工具。Excel一键自动匹配,在线免费vlookup工具,3步完成!Excel在线免费vlookup工具,点击4步自动完成vlookup匹配,无需手写公式,免费使用!
tc中的conio.h中的那些操作光标 控制台颜色的函数在vc中是什么啊
tc中的conio.h中的那些操作光标的函数,像gotoxy()等在VC中已不能用了,因为两个系统在屏幕处理上是完全不同的——可以这样简单理解:前者的屏幕操作是基于字符(点阵)的,而后者的屏幕操作是基于像素的。要在VC的屏幕上像在TC中一样移动光标是较困难的;曾做过,现在也忘了。颜色的控制与操作当然...
tc中的头文件<graphics.h>在vc里面是什么?
那个是tc里的一个头文件,你可以在tc的安装目录下的include 目录里找到,然后放到vc的include里,vc同样可以用<graphics.h>. 这只是一个关于图形的头文件,vc里,也要图形的涵数。具体你可以去百度上查下。
我的vc++不能用Sleep()函数(加了#include<windows.h>
h头文件,这是TC编译器的头文件,支持的暂停为delay()函数,如果用VC编译,那么就是用的windows环境下的32位编程,所以就应该加入windows.h这个头文件,告诉VC编译器这个名字空间,错误提示是由于你的sleep()函数中S要大写,改成大写就能编译通过了。希望对你有所帮助。
请问turbo C和我们在VC开发环境编写的C程序有何不同?
TC和VC是不同厂商提供的编译器,分别对于C进行了扩展,编写了自己的头文件,如TC中的图形、鼠标、菜单之类的,都不是标准C,所以这些东西在VC下找不到或者VC也有类似的头文件,只是一些结构体、头文件名等不同,所以就会出现这种情况。如果在二者中编译的是标准C文件,那么在两个编译器中都可以运行了...
.Tc 下头文件为<dos.h>的getpass()函数在VC下怎么用?
<dos.h>是Turbo C特有的头文件,其余的编译器无此头文件。在VC中想得到当前路径,一般用_getcwd函数,函数原型:char *_getcwd( char *buffer, int maxlen );头文件<direct.h> 第一个参数buffer是指向将要储存的路径的字符指针,第二个参数maxlen是允许的路径最大长度。如果成功,返回值就是...
...TC中<graphics.h>头文件中的graphresult()在VC中有能替代其功能的...
vc不带graphics.h,所以肯定没有graphresult。你要用graphics.h,先安装easyx。
装了easyX的vc++是不是和tc2.0在编辑图形的时候没什么区别了?
例如,tc 中代码:arc(x, y, r, sa, ea);在vc 中修改为:arc(x - r, y - r, x + r, y + r, sa * PI / 180, ea * PI / 180);错误提示:error C2065: 'settextjustify' : undeclared identifier解决办法:删除 settextjustify(xxx) 语句。该函数目前在 vc 下没有特别理想的替换方案。该...
用VC++出现问题是#include<graphics.h>这一句,请问怎么解..求求各位...
<graphics.h>是TC里面的图形库,如果要用的话应该用TC来编译,VC++有他自己的另外图形库!Tc中用initgraph()函数可以切换到图形模式,用closegraph()可以从图形模式切换回字符模式。initgraph()和closegraph()都是图形函数,使用图形函数必须包括头文件"graphics.h"。void far i nitgraph(int far *...
在编译C语言时,为什么无法打开包含文件' GRAPHICS.H '?
1、graphics.h是win-tc自带的函数库——用来图形开发,其他编译器可能不包含这个函数库,特别是VC(里面是比较正统的C函数库),肯定没有。如果一定要用VC或者你的编译器编译——那么应该把win-tc里面的graphic.h的函数库弄到当前编译器文件夹下。2、graphics.h是TC下的,也就是Turbo C,而且要在纯...