Changeset 1287

Show
Ignore:
Timestamp:
2/2/2010 3:55:36 AM (6 weeks ago)
Author:
vessper
Message:

02/02/2010


- Prism: Fixed Hangar Mode issues
- Prism: Update version

Location:
trunk/EveHQ.Prism
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/EveHQ.Prism/Forms/frmPrism.Designer.vb

    r1286 r1287  
    2424    Private Sub InitializeComponent() 
    2525        Me.components = New System.ComponentModel.Container 
    26         Dim ListViewGroup3 As System.Windows.Forms.ListViewGroup = New System.Windows.Forms.ListViewGroup("Corporation", System.Windows.Forms.HorizontalAlignment.Left) 
    27         Dim ListViewGroup4 As 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) 
    2828        Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmPrism)) 
    2929        Me.ctxAssets = New System.Windows.Forms.ContextMenuStrip(Me.components) 
     
    10991099        Me.lvwCharFilter.CheckBoxes = True 
    11001100        Me.lvwCharFilter.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.colOwnerName}) 
    1101         ListViewGroup3.Header = "Corporation" 
    1102         ListViewGroup3.Name = "grpCorporation" 
    1103         ListViewGroup4.Header = "Personal" 
    1104         ListViewGroup4.Name = "grpPersonal" 
    1105         Me.lvwCharFilter.Groups.AddRange(New System.Windows.Forms.ListViewGroup() {ListViewGroup3, 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}) 
    11061106        Me.lvwCharFilter.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None 
    11071107        Me.lvwCharFilter.Location = New System.Drawing.Point(32, 31) 
  • trunk/EveHQ.Prism/Forms/frmPrism.vb

    r1286 r1287  
    950950                            Dim accountID As Integer = flagID + 885 
    951951                            If accountID = 889 Then accountID = 1000 
    952                             If IsCorp = True And groupName <> "Station Services" Then 
     952                            If IsCorp = True And itemName <> "Office" Then 
    953953                                If divisions.ContainsKey(selPilot.CorpID & "_" & accountID.ToString) = True Then 
    954954                                    flagName = CStr(divisions.Item(selPilot.CorpID & "_" & accountID.ToString)) 
    955                                     If assetCorpMode = True And locNode.Items.Count < 7 Then 
     955                                    If assetCorpMode = True And locNode.Items.Count < 7 And itemName <> "Office" Then 
    956956                                        ' Build the corp division nodes 
    957957                                        For div As Integer = 0 To 6 
     
    966966 
    967967                            ' Add the asset to the treelistview 
    968                             If assetCorpMode = True And (flagID = 4 Or (flagID >= 116 And flagID <= 121)) Then 
     968                            If assetCorpMode = True And itemName <> "Office" And (flagID = 4 Or (flagID >= 116 And flagID <= 121)) Then 
    969969                                If (accountID - 1000) >= 0 And (accountID - 1000) < locNode.Items.Count Then 
    970970                                    locNode.Items(accountID - 1000).Items.Add(newAsset) 
     
    11501150                Dim accountID As Integer = subFlagID + 885 
    11511151                If accountID = 889 Then accountID = 1000 
    1152                 If assetOwner = selPilot.Corp And groupName <> "Station Services" Then 
     1152                If assetOwner = selPilot.Corp And itemName <> "Office" Then 
    11531153                    If divisions.ContainsKey(selPilot.CorpID & "_" & accountID.ToString) = True Then 
    11541154                        subFlagName = CStr(divisions.Item(selPilot.CorpID & "_" & accountID.ToString)) 
    1155                         If assetCorpMode = True And parentAsset.Items.Count < 7 Then 
     1155                        If assetCorpMode = True And parentAsset.Items.Count < 7 And itemName <> "Office" Then 
    11561156                            ' Build the corp division nodes 
    11571157                            For div As Integer = 0 To 6 
     
    11641164                    End If 
    11651165                End If 
    1166                 If assetCorpMode = True And (subFlagID = 4 Or (subFlagID >= 116 And subFlagID <= 121)) Then 
     1166                If assetCorpMode = True And itemName <> "Office" And (subFlagID = 4 Or (subFlagID >= 116 And subFlagID <= 121)) Then 
    11671167                    parentAsset.Items(accountID - 1000).Items.Add(subAsset) 
    11681168                    AssetIsInHanger = True 
  • trunk/EveHQ.Prism/My Project/AssemblyInfo.vb

    r1286 r1287  
    3232' <Assembly: AssemblyVersion("1.0.*")>  
    3333 
    34 <Assembly: AssemblyVersion("1.14.1.1286")>  
    35 <Assembly: AssemblyFileVersion("1.14.1.1286")>  
     34<Assembly: AssemblyVersion("1.14.1.1287")>  
     35<Assembly: AssemblyFileVersion("1.14.1.1287")>