以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  带子表的窗体怎样保存  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=158795)

--  作者:dahaiforever
--  发布时间:2020/12/2 18:14:00
--  带子表的窗体怎样保存

图片点击可在新窗口打开查看此主题相关图片如下:360截图20201202181214383.jpg
图片点击可在新窗口打开查看


我用的代码如下,但是只能保存选定行。我想在保存本张单据的同时,保存本张单据内的子表。不保存本本张单据外的子表数据With Tables("销售单")
    If .Current IsNot Nothing Then
        .Current.Save()
    End If
End With
With Tables("销售单.销售单明细")
    If .Current IsNot Nothing Then
        .Current.Save()
    End If
End With


--  作者:有点蓝
--  发布时间:2020/12/3 8:31:00
--  
Tables("销售单.销售单明细").Save()