Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 


            /*
            
assemblypath : c:\program files\.netxpert\dxef2005\dxef2005customsetup.dll
logfile :
installtype : notransaction
action : install            
            
            */
            foreach ( string key in this.Context.Parameters.Keys )
            {
                MessageBox.Show( Context.Parameters[ key ], key );
            }
            

            // Count == 0
            for ( int i = 0; i < this.Installers.Count; i ++ )
            {
                Installer aInst = this.Installers[ i ];
                MessageBox.Show( aInst.ToString(), "sibling" );
            }

            // Count == 1
            for ( int i = 0; i < this.Parent.Installers.Count; i ++ )
            {
                // 단 한개, RegistHelper 를 출력
                Installer aInst = this.Parent.Installers[ i ];
                MessageBox.Show( aInst.ToString(), "childOfParent" );
            }




            /*
            
_reserved_lastInstallerAttempted : -1
_reserved_nestedSavedState : System.Collections.IDictionary[]
            
            */
            foreach ( string tValue in savedState.Keys )
            {
                object obj = savedState[ tValue ];
                MessageBox.Show( obj.ToString(), tValue );

                if ( obj.ToString().IndexOf( "IDictionary" ) != -1 )
                {
                    IDictionary [] dictList = (IDictionary [] )obj;
                    // dictList.Length == 0
                    foreach ( IDictionary dict in dictList )
                    {
                        foreach ( string iValue in dict.Keys )
                        {
                            object iObj = savedState[ iValue ];
                            MessageBox.Show( iObj.ToString(), iValue );
                        }
                    }
                }                
            }
            








[최초 등록일: ]
[최종 수정일: 7/28/2021]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 136  137  138  139  140  141  [142]  143  144  145  146  147  148  149  150  ...
NoWriterDateCnt.TitleFile(s)
1611정성태1/27/201459821.NET Framework: 414. C# - 컴퓨터에서 알아낼 수 있는 고윳값 정리 [3]파일 다운로드1
1610정성태1/26/201442899.NET Framework: 413. C# - chromiumembedded 사용 [11]파일 다운로드1
1609정성태1/26/201426103오류 유형: 218. wsDualHttpBinding + Windows Server 2003인 경우 발생하는 오류
1608정성태1/26/201431827.NET Framework: 412. HttpContext.Current를 통해 이해하는 CallContext와 ExecutionContext [4]
1607정성태1/26/201431000.NET Framework: 411. 유니코드의 "compatibility character"가 뭘까요? [4]파일 다운로드1
1606정성태1/25/201429287오류 유형: 217. 델 베뉴 스타일러스 관련 업데이트 오류 - 5830_Firmware_X267N_WN_1.0.4.1_A01.EXE
1605정성태1/23/201426226개발 환경 구성: 212. Visual Studio Online과 "Monaco" 서비스 연동
1604정성태1/23/201426777오류 유형: 216. 윈도우 서버 백업 - Hyper-V 가상 머신이 백업되지 않는 경우 (2)
1603정성태1/23/201438278개발 환경 구성: 211. Hyper-V - Generation 2 유형의 VM 생성 시 ISO 부팅이 안된다면? [1]
1602정성태1/22/201429135디버깅 기술: 62. windbg - 사용자 모드 원격 디버깅
1601정성태1/22/201432950오류 유형: 215. windbg - Symbol file could not be found. Defaulted to export symbols
1600정성태1/19/201429090.NET Framework: 410. C# - 재귀호출을 스택 자료구조와 반복문을 이용해 대체하는 방법을 Paralle.For와 함께? [1]파일 다운로드1
1599정성태1/18/201436962.NET Framework: 409. C# - 재귀호출을 스택 자료구조와 반복문을 이용해 대체하는 방법 [1]파일 다운로드1
1598정성태1/17/201430669디버깅 기술: 61. NT 서비스 시작 단계에서 닷넷 메서드에 BP를 걸어 디버깅하는 방법
1597정성태1/17/201429073Phone: 9. Xamarin Android에 구글 AdMob 사용하는 방법 [1]
1596정성태1/17/201427196오류 유형: 214. Local SYSTEM 계정으로 실행된 IE에서 다운로드가 안 되는 문제
1595정성태1/16/201425502오류 유형: 213. attrib - Not resetting system file
1594정성태1/15/201427337오류 유형: 212. 마이크로소프트 라이브 계정 로그인 실패하는 경우
1593정성태1/14/201426086오류 유형: 211. ASP.NET 응용 프로그램을 IIS Express에서 디버깅할 때 "Requested registry access is not allowed" 오류 발생
1592정성태1/14/201425052오류 유형: 210. 2대의 AD가 있는 경우 도메인에 컴퓨터 추가를 실패한다면? [1]
1591정성태1/14/201427870오류 유형: 209. DebugDiag: Unable to find mscordacwks_x86_x86_[...version...].dll
1590정성태1/14/201429207오류 유형: 208. VSS Writer - NTDS 오류
1589정성태1/14/201438551Windows: 85. 컴퓨터를 껐는데도 어느 순간 자동으로 켜진다면? [2]
1588정성태1/14/201435166Windows: 84. 윈도우 7/8 - 메뉴 항목이 잔상으로 남는 문제
1587정성태1/14/201431256디버깅 기술: 60. NT 서비스가 시작하자마자 디버거를 연결시키는 방법 (2)
1586정성태1/14/201432449디버깅 기술: 59. NT 서비스가 시작하자마자 디버거를 연결시키는 방법 (1) [1]
... 136  137  138  139  140  141  [142]  143  144  145  146  147  148  149  150  ...