「平成」を感じるもの

マクロ初心者です。
ネットでいろいろ調べて、写真をA3に6枚ずつ貼付できる下記のようなマクロを作りました。
ですが順序がうまくできません。
写真は1から順番に番号をつけてあって、番号順に並べたいのですが、マクロを実行すると文字として読み取るみたいで、
1、10、11、・・・・・・19、2、20、21・・・・
となります。

どなたかわかる方、お教え願います。
初心者なのでコードを書いていただけると助かります。


Sub 画像挿入()

Dim strFilter As String
Dim Filenames As Variant
Dim Pic As Picture

' 「ファイルを開く」ダイアログでファイル名を取得
strFilter = "画像ファイル(*.jpg;*.jpeg;*.gif;*.bmp;*.png),*.jpg;*.jpeg;*.gif;*.bmp;*.png"
Filenames = Application.GetOpenFilename( _
FileFilter:=strFilter, _
Title:="図の挿入(複数選択可)", _
MultiSelect:=True)
If Not IsArray(Filenames) Then Exit Sub

' ファイル名をソート
Call BubbleSort_Str(Filenames, True, vbTextCompare)

' 貼り付け開始セルを選択
range("b4").Select

' マクロ実行中の画面描写を停止
Application.ScreenUpdating = False
' 順番に画像を挿入

j = -1
For i = LBound(Filenames) To UBound(Filenames)
Set Pic = ActiveSheet.Pictures.Insert(Filenames(i))
j = j + 1

'-------------------------------------------------------------
' 画像の各種プロパティ変更
'-------------------------------------------------------------
With Pic
.Top = ActiveCell.Top ' 位置:アクティブセルの上側に重ねる
.Left = ActiveCell.Left ' 位置:アクティブセルの左側に重ねる
.Placement = xlMove ' 移動するがサイズ変更しない
.PrintObject = True ' 印刷する
End With
With Pic.ShapeRange
.LockAspectRatio = msoTrue ' 縦横比維持
' 画像の幅をアクティブセルにあわせる
' 結合セルの場合でも対応
.Height = ActiveCell.MergeArea.Height
End With

' 次の貼り付け先を選択(アクティブセルにする)[例:5個下のセル]
ActiveCell.Offset(5).Select

If i Mod 6 = 3 Then
ActiveCell.Offset(-120, 17).Select

ElseIf i Mod 6 = 0 Then
ActiveCell.Offset(0, -17).Select

End If

Set Pic = Nothing
Next i

' 終了
Application.ScreenUpdating = True
MsgBox i - 1 & "枚の画像を挿入しました", vbInformation

End Sub


' バブルソート(文字列)
Private Sub BubbleSort_Str( _
ByRef Source As Variant, _
Optional ByVal SortAsc As Boolean = True, _
Optional ByVal Compare As VbCompareMethod = vbTextCompare)

If Not IsArray(Source) Then Exit Sub

Dim i As Long, j As Long
Dim vntTmp As Variant
For i = LBound(Source) To UBound(Source) - 1
For j = LBound(Source) To LBound(Source) + UBound(Source) - i - 1
If StrComp(Source(IIf(SortAsc, j, j + 1)), _
Source(IIf(SortAsc, j + 1, j)), Compare) = 1 Then
vntTmp = Source(j)
Source(j) = Source(j + 1)
Source(j + 1) = vntTmp
End If
Next j
Next i

End Sub

A 回答 (2件)

>1、10、11、・・・・・・19、2、20、21・・・・


ファイル名を二桁にする(01,02,03~10,11,12)とかではダメなのでしょうか?
    • good
    • 0

#1 の回答でいいと思います。



もし数値で比較するとなるとこんな感じ。
注意:数値以外のファイルが選択された時のエラー処理等はふくまれてません。

' バブルソート
Private Sub BubbleSort(ByRef Source As Variant)

If Not IsArray(Source) Then Exit Sub

Dim FSO
Set FSO = CreateObject("Scripting.FileSystemObject")
Dim i As Long, j As Long
Dim j2 As Long, jj2 As Long
Dim vntTmp As Variant
For i = LBound(Source) To UBound(Source) - 1
For j = LBound(Source) To LBound(Source) + UBound(Source) - i - 1
j2 = Val(FSO.GetBaseName(Source(j)))
jj2 = Val(FSO.GetBaseName(Source(j + 1)))
If j2 > jj2 Then
vntTmp = Source(j)
Source(j) = Source(j + 1)
Source(j + 1) = vntTmp
End If
Next j
Next i
Set FSO = Nothing

End Sub
    • good
    • 0

お探しのQ&Aが見つからない時は、教えて!gooで質問しましょう!

このQ&Aを見た人はこんなQ&Aも見ています


おすすめ情報