Dim dlg As New OpenFileDialog dlg.MultiSelect = True dlg.filter = "|*.bmp;*.jpg;*.gif" If dlg.ShowDialog = DialogResult.OK Then Dim fls As String = Tables("表A").Current("图片") For Each fl As String In dlg.FileNames If fls >"" Then fls = fls & vbcrlf End If fls = fls & fl Next Tables("表A").Current("图片") = fls End If