| 5318 | | _section.DisplayIndex1 = tmpList.Columns(0).DisplayIndex |
| 5319 | | _section.Width1 = tmpList.Columns(0).Width |
| 5320 | | If _iconCol = False Then |
| 5321 | | _section.DisplayIndex2 = tmpList.Columns(1).DisplayIndex |
| 5322 | | _section.DisplayIndex3 = tmpList.Columns(2).DisplayIndex |
| 5323 | | _section.DisplayIndex4 = tmpList.Columns(3).DisplayIndex |
| 5324 | | _section.DisplayIndex5 = tmpList.Columns(4).DisplayIndex |
| 5325 | | _section.Width2 = tmpList.Columns(1).Width |
| 5326 | | _section.Width3 = tmpList.Columns(2).Width |
| 5327 | | _section.Width4 = tmpList.Columns(3).Width |
| 5328 | | _section.Width5 = tmpList.Columns(4).Width |
| 5329 | | End If |
| 5330 | | _section.SortColumn = listViewItemSorter.Column |
| 5331 | | _section.SortOrder = listViewItemSorter.Order |
| | 5331 | If tmpList.Columns.Count > 0 Then '起動処理中に終了処理が走ると参照できないため |
| | 5332 | _section.DisplayIndex1 = tmpList.Columns(0).DisplayIndex |
| | 5333 | _section.Width1 = tmpList.Columns(0).Width |
| | 5334 | If _iconCol = False Then |
| | 5335 | _section.DisplayIndex2 = tmpList.Columns(1).DisplayIndex |
| | 5336 | _section.DisplayIndex3 = tmpList.Columns(2).DisplayIndex |
| | 5337 | _section.DisplayIndex4 = tmpList.Columns(3).DisplayIndex |
| | 5338 | _section.DisplayIndex5 = tmpList.Columns(4).DisplayIndex |
| | 5339 | _section.Width2 = tmpList.Columns(1).Width |
| | 5340 | _section.Width3 = tmpList.Columns(2).Width |
| | 5341 | _section.Width4 = tmpList.Columns(3).Width |
| | 5342 | _section.Width5 = tmpList.Columns(4).Width |
| | 5343 | End If |
| | 5344 | _section.SortColumn = listViewItemSorter.Column |
| | 5345 | _section.SortOrder = listViewItemSorter.Order |
| | 5346 | End If |
| 5381 | | For Each myTab As TabStructure In _tabs |
| 5382 | | If myTab.tabName = tabName Then |
| 5383 | | _section.ListElement(tabName).Notify = myTab.notify |
| 5384 | | _section.ListElement(tabName).SoundFile = myTab.soundFile |
| 5385 | | _section.ListElement(tabName).UnreadManage = myTab.unreadManage |
| 5386 | | For Each fc As FilterClass In myTab.filters |
| 5387 | | Dim bf As String = "" |
| 5388 | | For Each bfs As String In fc.BodyFilter |
| 5389 | | bf += " " + bfs |
| 5390 | | Next |
| 5391 | | Dim su As New SelectedUser(cnt.ToString) |
| 5392 | | cnt += 1 |
| 5393 | | su.BodyFilter = bf |
| 5394 | | su.IdFilter = fc.IDFilter |
| 5395 | | su.MoveFrom = fc.moveFrom |
| 5396 | | su.SetMark = fc.SetMark |
| 5397 | | su.SearchBoth = fc.SearchBoth |
| 5398 | | su.UrlSearch = fc.SearchURL |
| 5399 | | su.RegexEnable = fc.UseRegex |
| 5400 | | su.TabName = tabName |
| 5401 | | _section.SelectedUser.Add(su) |
| 5402 | | Next |
| 5403 | | End If |
| | 5396 | 'For Each myTab As TabStructure In _tabs |
| | 5397 | ' If myTab.tabName = tabName Then |
| | 5398 | _section.ListElement(tabName).Notify = ts.notify |
| | 5399 | _section.ListElement(tabName).SoundFile = ts.soundFile |
| | 5400 | _section.ListElement(tabName).UnreadManage = ts.unreadManage |
| | 5401 | For Each fc As FilterClass In ts.filters |
| | 5402 | Dim bf As String = "" |
| | 5403 | For Each bfs As String In fc.BodyFilter |
| | 5404 | bf += " " + bfs |
| | 5405 | Next |
| | 5406 | Dim su As New SelectedUser(cnt.ToString) |
| | 5407 | cnt += 1 |
| | 5408 | su.BodyFilter = bf |
| | 5409 | su.IdFilter = fc.IDFilter |
| | 5410 | su.MoveFrom = fc.moveFrom |
| | 5411 | su.SetMark = fc.SetMark |
| | 5412 | su.SearchBoth = fc.SearchBoth |
| | 5413 | su.UrlSearch = fc.SearchURL |
| | 5414 | su.RegexEnable = fc.UseRegex |
| | 5415 | su.TabName = tabName |
| | 5416 | _section.SelectedUser.Add(su) |