| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

Excel VBA 固定長の構造体をファイルから読む

提供: MyMemoWiki
ナビゲーションに移動 検索に移動

Excel VBA 固定長の構造体をファイルから読む

Excel VBA |

  1. Type RecClass
  2. field01 as String * 10
  3. field02 as String * 5
  4. field03 as String * 2
  5. End Type
  6.  
  7. Public Sub readReadData()
  8. Dim fno As Integer
  9. Dim fname As String
  10. Dim rec As RecClass
  11. Dim recCnt As Long
  12. Dim recLen As Long
  13. Dim pos As Long
  14. Dim i As Integer
  15.  
  16. fno = FreeFile
  17. Open fname For Binary As fno
  18.  
  19. recLen = Len(rec)
  20. recCnt = FileLen(fname) / recLen
  21.  
  22. pos = 1
  23. For i = 1 To recCnt
  24. Get #fno, pos, rec
  25. pos = pos + recLen
  26. Call SomeProcess(rec)
  27. Next
  28. Close #fno
  29. End Sub