以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  如何在临时表定义长度超过255字符的列  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=116877)

--  作者:kgdce
--  发布时间:2018/4/2 9:50:00
--  如何在临时表定义长度超过255字符的列
如何在临时表定义长度超过255字符的列?
Dim tab As WinForm.Table = e.Form.Controls("Table1")
If DataTables.Contains("学科") Then
Else
    Dim dtb As New DataTableBuilder("学科")
    For Each dc As DataCol In DataTables("典型题目报表").dataCols
        If dc.IsString Then
            dtb.AddDef(dc.name, Gettype(String),255) ‘不知道如何定义超过255字符的列
        End If
    Next
    dtb.Build()
End If

不知道如何定义超过255字符的列?请求帮助

--  作者:有点甜
--  发布时间:2018/4/2 10:30:00
--  
超过255,就是备注列了。随便一个超过255大小的数值,都可以。