Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以在 VB 2010 中创建一个与数据库无关的表。该表将能够在其单元格中显示文本并更改其行号。如果有一个允许这样做的对象?
该对象同名DataTable,您可以手动创建它:
DataTable
Dim dt as New DataTable '... dt.Columns.Add(...) '... dt.Rows.Add(...)