convert.xls.vb 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. Option Explicit
  2. Private Declare Function GetCommandLine& Lib "kernel32" _
  3. Alias "GetCommandLineA" ()
  4. Private Declare Function lstrlen Lib "kernel32" ( _
  5. ByVal str As Long) As Long
  6. Private Declare Function lstrcpy Lib "kernel32" ( _
  7. ByVal dest As String, _
  8. ByVal src As Long) As Long
  9. Private Function Befehlsparameter(plngAscii As Long) As String
  10. Dim lngAnzahl&, strName$
  11. lngAnzahl = lstrlen(plngAscii)
  12. strName = String(lngAnzahl, 0)
  13. lstrcpy strName, plngAscii
  14. If InStr(1, strName, Chr(0)) <> 0 Then
  15. strName = Left$(strName, InStr(1, strName, Chr(0)) - 1)
  16. End If
  17. Befehlsparameter = strName
  18. End Function
  19. Private Function WertVonFlag(liste As String, flag As String) As String
  20. Dim wert As String
  21. wert = Right$(liste, Len(liste) - 2 - InStr(1, LCase(liste), flag))
  22. wert = Left$(wert, InStr(1, wert, "/") - 1)
  23. WertVonFlag = wert
  24. End Function
  25. Private Sub Workbook_Open()
  26. Application.DisplayAlerts = False
  27. Dim datei As String
  28. datei = WertVonFlag(Befehlsparameter(GetCommandLine()), "/e/")
  29. If datei <> "" And Mid(datei, 1, 1) <> ":" Then
  30. Workflow datei
  31. Application.Quit
  32. End If
  33. Application.DisplayAlerts = True
  34. End Sub
  35. Sub Workflow(folder As String)
  36. Dim file As String
  37. file = dir(folder & "\*.xls")
  38. Do While file <> ""
  39. If file Like "*xls" Then
  40. Workbooks.Open Filename:=folder + "\" + file
  41. ActiveWorkbook.SaveAs Filename:=folder + "\" + file, FileFormat:=xlExcel8
  42. ActiveWorkbook.SaveAs Filename:=folder + "\" + file + "x", FileFormat:=xlOpenXMLWorkbook
  43. ActiveWorkbook.Close
  44. End If
  45. file = dir
  46. Loop
  47. Application.Quit
  48. End Sub
  49. Sub Macro1()
  50. Workflow "D:\Projekte\GlobalCube\makro_MVC\Fibu"
  51. End Sub