Excel開發學習筆記:文件選擇控件、查找匹配項、單元格格式及數據有效性

 一個自用的基於excel的小工具。工具

開發環境基於VSTO,具體配置:visual studio 2010,VB .Net,excel 2007,文檔級別的定製程序。
oop

 

 

Private OpenFileDialog1  As  New OpenFileDialog  
Private  Sub test()  
    OpenFileDialog1.Filter =  " cfg file|*.srp.cfg "  
     If OpenFileDialog1.ShowDialog() = DialogResult.OK  Then  
         MsgBox(OpenFileDialog1.FileName)  
         MsgBox(OpenFileDialog1.SafeFileName)  
     Else  
         Return  
     End  If  
End Sub  
  
' 在工做表中查找關鍵字,返回最後一個匹配項的單元格  
Public  Function findLastCell(key  As  StringAs Excel.Range  
         Dim findResult  As Excel.Range = Cells.Find(key)  
         Dim lastRecord  As Excel.Range =  Nothing  
         If (findResult  IsNot  NothingThen  
             Dim firstRecordRow = findResult.Row  
             Do  
                lastRecord = findResult  
                findResult = Cells.FindNext(findResult)  
             Loop  Until findResult  Is  Nothing  OrElse findResult.Row = firstRecordRow  
         End  If  
         Return lastRecord  
End Function  
  
' 設置單元格的格式  
Private  Sub test()  
     With Globals.Sheet1  
         Dim sysKpiRow  As Excel.Range = .Range(.Cells( 01), .Cells( 010))  
        sysKpiRow.Interior.ColorIndex =  34  ' 淺青綠,詳見下 
        sysKpiRow.Borders.LineStyle = Excel.XlLineStyle.xlContinuous  ' 顯示邊框  
        sysKpiRow.Cells( 1).value =  " 系統KPI "  
        sysKpiRow.Columns.AutoFit()  ' 根據內容自動擴張列寬  
  
         ' range的offset仍然是等大小的range  
         Dim sysKpiVal  As Excel.Range = sysKpiRow.Offset( 10)  
        sysKpiVal.Borders.LineStyle = Excel.XlLineStyle.xlContinuous  
         ' 設置單元格,添加數據有效性,下拉框選擇yes和no  
         With sysKpiVal.Validation  
            .Add(Type:=Excel.XlDVType.xlValidateList, AlertStyle:=Excel.XlDVAlertStyle.xlValidAlertStop, _  
             Operator:=Excel.XlFormatConditionOperator.xlBetween, Formula1:= " yes,no ")  
            .IgnoreBlank =  True  
            .InCellDropdown =  True  
            .ShowInput =  True  
            .ShowError =  True  
         End  With  
        sysKpiVal.Value =  " yes "  ' 統一設置默認值爲yes  
     End  With  
End Sub 

 完整的colorIndex效果見微軟網站:網站

https://msdn.microsoft.com/en-us/library/cc296089%28v=office.12%29.aspx#xlDiscoveringColorIndex_ColorIndexProperty
相關文章
相關標籤/搜索