以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  [求助]如何设置字体为微软雅黑,细体  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=131764)

--  作者:智友软件工作室
--  发布时间:2019/3/6 11:26:00
--  [求助]如何设置字体为微软雅黑,细体

如何设置“产品品牌”“约克”“产品种类”“单壁挂炉”的字体,我想设置为微软雅黑

 

 

        Dim txt As String
        Dim wb As New WeUI
        wb.AddPageTitle("","pt1","高端集成","用户报修")
        wb.AddForm("","form1","yonghubaoxiujieguo.htm")
        txt = DataTables("基础信息").GetComboListString("一类","名称 = \'产品品牌\'","排序")
        With wb.AddInputGroup("form1","ig1","基本信息")
            .AddSelect("sl1","产品品牌",txt)
            .AddSelect("sl2","产品种类","单壁挂炉|暗管暖气片系统|明管暖气片系统")
        End With
        wb.InsertHTML("<div style=\'height:100px\'></div>")
        wb.AddPage("form1","page1").Attribute = "style=\'position: fixed;bottom: 0;right: 0;left: 0\'"
        With wb.AddButtonGroup("page1","btg1", False)
            .Add("btn1", "确定上报","submit")
        End With
        e.WriteString(wb.Build)
End Select

 

 

 


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

--  作者:有点甜
--  发布时间:2019/3/6 11:38:00
--  

加入代码

 

wb.InsertHTML("<style>#ig1{font-family:\'微软雅黑\';font-size:7px}</style>")