发布网友 发布时间:2022-04-27 05:12
共5个回答
热心网友 时间:2022-06-26 18:37
你需要的是控制台系列API
下面函数设置光标移动至x40 y13
COORD pos = { 40, 13 };热心网友 时间:2022-06-26 18:37
不好弄
void gotoxy(int x, int y)
{
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
COORD c = { x, y };
SetConsoleCursorPosition(hOut, c);
}
还需要#include<Window.h>
热心网友 时间:2022-06-26 18:38
Private Sub Form_Resize()
文本框名.SetFocus
End Sub
热心网友 时间:2022-06-26 18:38
void gotoxy(int x, int y) { HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE); COORD c = { x, y }; SetConsoleCursorPosition(hOut, c); } 还需要#include
热心网友 时间:2022-06-26 18:39
Private Sub Form_Resize()
文本框名.SetFocus
End Sub