vaSpread 특정 행, 열 숨기기

컨트롤다루기/Farpoint Spread 2015. 12. 29. 16:37

열 숨기기

      With vaSpread1

        .Col = 0: .ColHidden = True '왼쪽 컬럼헤더 숨기기
      End With



행 숨기기

      With vaSpread1

        .Row = 0: .RowHidden = True '위쪽 컬럼헤더 숨기기
      End With


:

vaspread cell에 멀티라인 적용하기

컨트롤다루기/Farpoint Spread 2015. 12. 29. 16:24
Private Sub Command1_Click()
    Dim iRow, iCol As Long
    
    
    With vaSpread1
    
            iRow = 1: .row = iRow
    
            iCol = 1: .col = iCol: .Text = "테스트11"
            iCol = 2: .col = iCol: .Text = "테스트12"
            iCol = 3: .col = iCol: .Text = "테스트13"
           
    
            iRow = 2: .row = iRow
            iCol = 1: .col = iCol: .Text = "테스트" & vbCrLf & "21"
    
            .CellType = CellTypeEdit: .TypeEditMultiLine = True '멀티라인 적용
            .RowHeight(iRow) = .RowHeight(1) * 2 '1번 행의 높이의 2배를 적용
    
            iCol = 2: .col = iCol: .Text = "테스트22"
    
            iCol = 3: .col = iCol: .Text = "테스트23"
    
    End With
    

End Sub





:

폴더 동기화 FreeFileSync

유틸_리뷰 2013. 1. 9. 10:31

http://sourceforge.net/projects/freefilesync/?source=dlp


사용법 : 5.3 버전 기준 http://rdsong.com/602



'유틸_리뷰' 카테고리의 다른 글

[윈도 최적화 프로그램 프리웨어]C 클리너  (0) 2013.01.08
스티브 잡스는 아이클라우드로 또 뒤집는다  (0) 2012.08.09
gimp  (0) 2012.07.12
: