1、首先在电脑中打开VB软件,然后点击窗口。
2、然后找到窗体布局窗口,就可以在这里,直接拖曳鼠标,设置窗体的位置。
3、如果没有默认打开,回到 *** 作页面中,找到并点击如下图的按钮。
4、也可以找到stateUpPosition这个属性。
5、然后在打开点页面中,就可以根据自己的需要,设置预设的类型了。
unit Unit1interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs
type
TForm1 = class(TForm)
private
{ Private declarations }
public
{ Public declarations }
end
var
Form1: TForm1
GlobalVar: String //全局的在这定义,其他单元用这个变量只需uses 一下本单元就可以了
implementation
{$R *.dfm}
end.
很简单://得到当前可以发送消息的窗口,句柄保存到Hwnd
Plugin
Hwnd=Window.GetKeyFocusWnd()
//模拟按键,窗口句柄就填Hwnd
Plugin
Bkgnd.KeyPress(Hwnd,116)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)