window.onload = function() {} - html이 처음 열렸을때 한번 실행 함수


listBox는 text만 바로 넣을 수 없고 형 변환을 해야함

 ex) var option = new Option();

option.text = sInput;

list.options.add(option); 


listbox item초기화방법

-  list.options.length = 0


string문자열 자르는방법

- string.substr(index, length);


배열에서 특정된번호부터 삭제하는 방법

     - Array.splice(index, count);


label에 값 전달방법

- var label = document.getElementById('Label_ID');

label.innerHTML = String;




'Programming > JavaScript' 카테고리의 다른 글

데이터 비교시 유의해야할점  (0) 2016.05.27
블로그 이미지

SherryBirkin

,

메모장을 열고 아래 내용을 붙여넣고


파일명.bat로 저장하고 실행하면된다.


파일형식은 모든파일로 할 것.


taskkill /f /im explorer.exe 

attrib %userprofile%\appdata\local\IconCache.db -s -r -h 

del /q %userprofile%\appdata\local\IconCache.db 

start explorer.exe 

exit

블로그 이미지

SherryBirkin

,

TrayIcon에서 


우클릭했을떄랑, 좌클릭했을때 ContextMenu를 다르게 보는 방법


private void notifyIcon1_MouseClick(object senderMouseEventArgs e)

        {

            if (e.Button == MouseButtons.Left)

            {

                notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;

                System.Reflection.MethodInfo methodInfo = 

                       typeof(NotifyIcon).GetMethod("ShowContextMenu"

                       System.Reflection.BindingFlags.Instance | 

System.Reflection.BindingFlags.NonPublic);

                methodInfo.Invoke(notifyIcon1null);

            }

            else if (e.Button == MouseButtons.Right)

            {

                notifyIcon1.ContextMenuStrip = contextMenuStrip2;

                System.Reflection.MethodInfo methodInfo = 

                       typeof(NotifyIcon).GetMethod("ShowContextMenu",

                        System.Reflection.BindingFlags.Instance |

                           System.Reflection.BindingFlags.NonPublic);

                methodInfo.Invoke(notifyIcon1null);

            }

        }




코드에 관한 설명 - 질문자 우시와카는 본인임.


http://www.hoons.net/Board/QACSHAP/Content/31613?Key=Name&Value=%EC%9A%B0%EC%8B%9C%EC%99%80%EC%B9%B4

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

DataTable 사용방법  (0) 2016.08.14
ComboBox에 항목별로 Tag를 사용하는 방법 (DataTable)  (0) 2016.08.14
xml Element  (0) 2016.08.02
메시지박스 자동 종료하기  (0) 2016.04.24
DataGridView RowHeader에 숫자 넣는법  (0) 2016.02.26
블로그 이미지

SherryBirkin

,