以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  是不是个BUG?  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=106994)

--  作者:huangxueyao
--  发布时间:2017/9/19 19:21:00
--  是不是个BUG?

图片点击可在新窗口打开查看此主题相关图片如下:微信截图_20170919192028.png
图片点击可在新窗口打开查看

难道不是这样设置?

--  作者:huangxueyao
--  发布时间:2017/9/19 19:23:00
--  
Dim txt As WinForm.TextBox
txt = e.Form.CreateControl("TextBox9", ControlTypeEnum.TextBox)
\'txt.SetBounds = (100, 100, 50, 60) \'统一设置位置与大小(水平,垂直,宽度,高度)
txt.Left = 100  \'左定位
txt.Top = 100 \'上定位
txt.Value = "9999"  \'显示内容
txt.BackColor = Color.Red  \'背景颜色,可以标志状态
txt.MultiLine = True \'设置为多行文本框
txt.Height = 30 \'高度
txt.ReadOnly = True \'设置为只读
txt.
e.Form.AddControl(txt)


End If

--  作者:有点蓝
--  发布时间:2017/9/19 20:11:00
--  
txt.SetBounds(100, 100, 50, 60)