1、参考:
http://www.foxtable.com/help/topics/0640.htm
正常代码,最好设置在全局代码中:
http://www.foxtable.com/help/topics/0671.htm
例如:
if Forms("窗口名").Opened Then
Dim lbl As WinForm.Label
lbl = Forms("窗口名").Controls("当前行")
lbl.Text = "当前第 " & Tables("人员").Position + 1 & " 行"
End if
2、代码:
Syscmd.Project.SwitchUser()
3、用这个事件:
http://www.foxtable.com/help/topics/1323.htm
代码:
If Forms("窗口名").Opened Then
Dim lbl As WinForm.Label
lbl = e.Form.Controls("当前用户")
lbl.Text = User.Name
End if
4、新版本的独立窗口和模式窗口,有个新的窗口属性“最顶层”,将其设置为True即可。
5、不可以。除非你自己定义用户管理、