'전체 글'에 해당되는 글 142건

  1. 2019.10.14 Excel에서 notepad++ 열기
  2. 2019.10.14 c# 관련사이트
  3. 2019.10.14 Mobile App Tools
  4. 2019.10.14 Highlight Textbox
Programming Language/Excel2019. 10. 14. 00:32
728x90

1.방법 Hyperlink 를 사용해서 열거나,

 

2.vba를 이용하거나.

2번째 벙법으로 하면,
1) 파일을 매크로가 가능한 xlsm파일 형식으로 다른이름으로 저장하고,
2) Alt+F11을 눌러서, 코딩이 가능한 VBA 모드로 변환한다.
3) 해당 시트를 클릭해서, 아래 코드를 붙여 넣기 하고, 저장한다(Ctrl+S).여기서, 파일경로는 1행, 라인은 13라인.
4) 마지막으로, openFileInNotePad.bat 파일을 만든다.

 

# 1. VBA 의 해당 시트 코딩

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Target.Column = 13 Then  // 이벤트가 실행될 컬럼
        Dim filePath As String
        Dim lineNo As String
        Dim RetVal As Integer
            
        filePath = Cells(Target.Row, 1) // 1: 파일경로를 가져올 컬럼
        lineNo = Cells(Target.Row, 5)   // 5: 파일라인을 가져올 컬럼
        If Target.Row > 1 And filePath <> "" Then
            RetVal = MsgBox("Run Batch", vbYesNo)
            If RetVal = 6 Then
                RetVal = Shell("C:\openFileInNotepad.bat" & " " & filePath & " " & lineNo, 1)
            End If
        End If
    End If
End Sub

 

# 2. openFileInNotePad.bat 코딩

"C:\Program Files (x86)\Notepad++\notepad++.exe" "%1" -n%2

 

 

end.

728x90
Posted by 하루y
Programming Language/C#2019. 10. 14. 00:30
728x90

1.Sample Code

2.Component

 

 

728x90

'Programming Language > C#' 카테고리의 다른 글

ChartFX Help  (0) 2020.01.19
remove comments with C#  (0) 2019.10.14
excel upload faster  (0) 2019.10.14
Highlight Textbox  (0) 2019.10.14
Visual Studio Installer 를 이용한 배포(Deployment)  (0) 2019.10.14
Posted by 하루y
Etc/IT info2019. 10. 14. 00:29
728x90

1.스마트메이커
- http://www.smartmaker.com/ups/smweb8/index.html
- 제품구매: http://www.smartmaker.com/ups/smweb8/buy_builder.html
- 동영상합습: http://www.smartmaker.com/ups/smweb8/appschool_movie.html
- 공식카페: https://cafe.naver.com/softmania

 

2. 앱 메이커
- 구글, 로우코드 앱 개발 도구 ‘앱 메이커’ 정식 공개… G 스위트 고객 대상
원문보기: http://www.itworld.co.kr/news/109685#csidx70ec41137f1769e8a1d8cf7027a9594

 

3. React Native
- 리액트 네이티브로 iOS·안드로이드 앱 개발을 한번에
원문: https://www.bloter.net/archives/317326
- https://github.com/ReactNativeNews/React-Native-Apps

 

end.

728x90

'Etc > IT info' 카테고리의 다른 글

IT 북마크  (1) 2023.04.27
CPU Benchmarks 정보  (0) 2022.04.20
VR, AR 관련  (0) 2019.10.14
Site ranking by country  (0) 2019.10.14
Posted by 하루y
Programming Language/C#2019. 10. 14. 00:27
728x90

 

728x90

'Programming Language > C#' 카테고리의 다른 글

ChartFX Help  (0) 2020.01.19
remove comments with C#  (0) 2019.10.14
excel upload faster  (0) 2019.10.14
c# 관련사이트  (0) 2019.10.14
Visual Studio Installer 를 이용한 배포(Deployment)  (0) 2019.10.14
Posted by 하루y