Thanh Bình PV
Thành viên hoạt động
- Tham gia
- 30/10/19
- Bài viết
- 151
- Được thích
- 19
Bác nào giúp em ghi dữ liệu ra thành 2 cột với ạ.
AddInIterator.DisplayName : cột A
AddInIterator.FileExtensions : cột B
Em cảm ơn.
AddInIterator.DisplayName : cột A
AddInIterator.FileExtensions : cột B
Em cảm ơn.
Mã:
Public Sub GetOptions()
Dim AddInIterator As ApplicationAddIn
'Find the DWFAddIn based on description string
For Each AddInIterator In ThisApplication.ApplicationAddIns
If AddInIterator.AddInType = kTranslationApplicationAddIn Then
Dim binh As Variant
binh = binh & vbLf & AddInIterator.DisplayName & " (*" & AddInIterator.FileExtensions & ")"
End If
Next
MsgBox binh
End Sub