Application.StartupPath
응용 프로그램을 시작한 실행 파일의 경로(실행 파일 이름 제외)를 가져옵니다.
private void PrintStartupPath() { textBox1.Text = "The path for the executable file that " + "started the application is: " + Application.StartupPath; }
Application.OpenForms
응용 프로그램에서 소유하는 열려 있는 폼의 컬렉션을 가져옵니다
Application..::.CurrentCulture
현재 스레드에 대한 문화권 정보를 가져오거나 설정합니다.
Application..::.CompanyName
응용 프로그램과 관련된 회사 이름을 가져옵니다.
Application..::.CurrentCulture
현재 스레드에 대한 문화권 정보를 가져오거나 설정합니다.
private void PrintCurrentCulture() { textBox1.Text = "The current culture is: " + Application.CurrentCulture.EnglishName; }
'C#.NET' 카테고리의 다른 글
[MSDN]First Look C#4.0 백서 (0) | 2010.08.25 |
---|---|
[ClickOnece / reportViewer]리포트 배포경로오류 (0) | 2010.08.04 |
windwos 창 전체화면으로 띄우기 (0) | 2010.07.13 |
[PropertyInfo] 임의의 클래스에서 프로퍼티(Property) /메소드(Method) 찾기 (0) | 2010.07.09 |
[VS 2005,비주얼 스튜디오] 잘못된 바인딩 핸들입니다. (0) | 2010.06.01 |
[#if/조건부 지시문] 디버그모드 릴리즈모드 사용하기 (0) | 2010.05.24 |
[AssemblyName] 파일이 어셈블리인지 확인 / 외부어셈블리 정보 확인 (0) | 2010.05.20 |
[Microsoft Translator] Bing API를 이용한 초간단 번역기 만들기 (2) | 2010.05.13 |
[BindingList 추가/삭제/수정 ] Update Insert Delete 한꺼번에 처리하기 (0) | 2010.04.08 |
엑셀출력시 0 사라짐 (0) | 2010.04.08 |