Changeset 1287
- Timestamp:
- 2/2/2010 3:55:36 AM (6 weeks ago)
- Location:
- trunk/EveHQ.Prism
- Files:
-
- 3 modified
-
Forms/frmPrism.Designer.vb (modified) (2 diffs)
-
Forms/frmPrism.vb (modified) (4 diffs)
-
My Project/AssemblyInfo.vb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/EveHQ.Prism/Forms/frmPrism.Designer.vb
r1286 r1287 24 24 Private Sub InitializeComponent() 25 25 Me.components = New System.ComponentModel.Container 26 Dim ListViewGroup 3As System.Windows.Forms.ListViewGroup = New System.Windows.Forms.ListViewGroup("Corporation", System.Windows.Forms.HorizontalAlignment.Left)27 Dim ListViewGroup 4As System.Windows.Forms.ListViewGroup = New System.Windows.Forms.ListViewGroup("Personal", System.Windows.Forms.HorizontalAlignment.Left)26 Dim ListViewGroup7 As System.Windows.Forms.ListViewGroup = New System.Windows.Forms.ListViewGroup("Corporation", System.Windows.Forms.HorizontalAlignment.Left) 27 Dim ListViewGroup8 As System.Windows.Forms.ListViewGroup = New System.Windows.Forms.ListViewGroup("Personal", System.Windows.Forms.HorizontalAlignment.Left) 28 28 Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmPrism)) 29 29 Me.ctxAssets = New System.Windows.Forms.ContextMenuStrip(Me.components) … … 1099 1099 Me.lvwCharFilter.CheckBoxes = True 1100 1100 Me.lvwCharFilter.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.colOwnerName}) 1101 ListViewGroup 3.Header = "Corporation"1102 ListViewGroup 3.Name = "grpCorporation"1103 ListViewGroup 4.Header = "Personal"1104 ListViewGroup 4.Name = "grpPersonal"1105 Me.lvwCharFilter.Groups.AddRange(New System.Windows.Forms.ListViewGroup() {ListViewGroup 3, ListViewGroup4})1101 ListViewGroup7.Header = "Corporation" 1102 ListViewGroup7.Name = "grpCorporation" 1103 ListViewGroup8.Header = "Personal" 1104 ListViewGroup8.Name = "grpPersonal" 1105 Me.lvwCharFilter.Groups.AddRange(New System.Windows.Forms.ListViewGroup() {ListViewGroup7, ListViewGroup8}) 1106 1106 Me.lvwCharFilter.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None 1107 1107 Me.lvwCharFilter.Location = New System.Drawing.Point(32, 31) -
trunk/EveHQ.Prism/Forms/frmPrism.vb
r1286 r1287 950 950 Dim accountID As Integer = flagID + 885 951 951 If accountID = 889 Then accountID = 1000 952 If IsCorp = True And groupName <> "Station Services" Then952 If IsCorp = True And itemName <> "Office" Then 953 953 If divisions.ContainsKey(selPilot.CorpID & "_" & accountID.ToString) = True Then 954 954 flagName = CStr(divisions.Item(selPilot.CorpID & "_" & accountID.ToString)) 955 If assetCorpMode = True And locNode.Items.Count < 7 Then955 If assetCorpMode = True And locNode.Items.Count < 7 And itemName <> "Office" Then 956 956 ' Build the corp division nodes 957 957 For div As Integer = 0 To 6 … … 966 966 967 967 ' Add the asset to the treelistview 968 If assetCorpMode = True And (flagID = 4 Or (flagID >= 116 And flagID <= 121)) Then968 If assetCorpMode = True And itemName <> "Office" And (flagID = 4 Or (flagID >= 116 And flagID <= 121)) Then 969 969 If (accountID - 1000) >= 0 And (accountID - 1000) < locNode.Items.Count Then 970 970 locNode.Items(accountID - 1000).Items.Add(newAsset) … … 1150 1150 Dim accountID As Integer = subFlagID + 885 1151 1151 If accountID = 889 Then accountID = 1000 1152 If assetOwner = selPilot.Corp And groupName <> "Station Services" Then1152 If assetOwner = selPilot.Corp And itemName <> "Office" Then 1153 1153 If divisions.ContainsKey(selPilot.CorpID & "_" & accountID.ToString) = True Then 1154 1154 subFlagName = CStr(divisions.Item(selPilot.CorpID & "_" & accountID.ToString)) 1155 If assetCorpMode = True And parentAsset.Items.Count < 7 Then1155 If assetCorpMode = True And parentAsset.Items.Count < 7 And itemName <> "Office" Then 1156 1156 ' Build the corp division nodes 1157 1157 For div As Integer = 0 To 6 … … 1164 1164 End If 1165 1165 End If 1166 If assetCorpMode = True And (subFlagID = 4 Or (subFlagID >= 116 And subFlagID <= 121)) Then1166 If assetCorpMode = True And itemName <> "Office" And (subFlagID = 4 Or (subFlagID >= 116 And subFlagID <= 121)) Then 1167 1167 parentAsset.Items(accountID - 1000).Items.Add(subAsset) 1168 1168 AssetIsInHanger = True -
trunk/EveHQ.Prism/My Project/AssemblyInfo.vb
r1286 r1287 32 32 ' <Assembly: AssemblyVersion("1.0.*")> 33 33 34 <Assembly: AssemblyVersion("1.14.1.128 6")>35 <Assembly: AssemblyFileVersion("1.14.1.128 6")>34 <Assembly: AssemblyVersion("1.14.1.1287")> 35 <Assembly: AssemblyFileVersion("1.14.1.1287")>
