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

비밀번호

댓글 작성자
 




... 196  197  198  [199]  200  201  202 
NoWriterDateCnt.TitleFile(s)
77정성태12/27/200426138VS.NET IDE: 15. Virtual CD-ROM Control Panel - ISO 이미지를 CD-ROM 드라이브처럼 접근하게 해주는 EXE 프로그램 [1]파일 다운로드1
76정성태12/27/200427082VS.NET IDE: 14. VPN 접속시 IP를 고정적으로 할당받는 방법 [1]
75정성태12/27/200423121VS.NET IDE: 13. VS.NET 2005 Beta 1 - Portfolio Explorer 에 등록된 Team Server 항목 삭제 방법
84정성태1/19/200524364    답변글 VS.NET IDE: 13.1. VS.NET 2005 Beta 1 : Team Server 에 등록된 포트폴리오 프로젝트 삭제 방법
74정성태12/26/200424539VS.NET IDE: 12. [시나리오] VS.NET 2005 Team Foundation Server을 Virtual Server에 설치 [1]
80정성태12/31/200424321    답변글 VS.NET IDE: 12.1. Client Tier, 즉 VS.NET 2005가 설치된 컴퓨터도 ActiveDirectory에 참여를 해야 합니다.
81정성태12/31/200426292    답변글 VS.NET IDE: 12.2. Tier 컴퓨터를 모두 영문으로 재구성
109정성태3/4/200520756    답변글 VS.NET IDE: 12.3. [보완] MS 공식 아티클 - Installing the December CTP Release of Visual Studio Team System
73정성태11/14/200523066.NET Framework: 19. VS.NET 2005 Team Foundation Server 설치오류 - 26204 예외
72정성태12/26/200424656.NET Framework: 18. .NET Framework 2.0 Beta 설치 후에 Windows SharePoint Service 오류 [1]
136정성태3/31/200524803    답변글 .NET Framework: 18.1. Windows Sharepoint Services 를 설치한 이후 ASP.NET 오류 문제
71정성태12/26/200422734VS.NET IDE: 11. SQL Server 2005 Beta 2 를 네트워크 드라이브로부터 설치시 오류
70정성태12/26/200425694VS.NET IDE: 10. WSS 설치 후 localhost 접근 보안 오류
69정성태12/5/200422908VS.NET IDE: 9. 다른 컴퓨터(방화벽 설치)에 설치된 SQL Server에 통합 인증을 할 때 필요한 포트
68정성태10/31/200427991.NET Framework: 17. Win32_NTLogEvent를 c#에서 wmi 쿼리할 때..에러..
67정성태10/22/200424836COM 개체 관련: 12. Microsoft.XMLHTTP 개체에서 Microsoft.XMLDOM 개체를 전송할 때 charset 지정 문제?
66정성태10/16/200426419.NET Framework: 16. [닷넷 리모팅] 프록시가 죽은 것을 원격 개체가 알 수 있는 방법은?
65정성태10/16/200425175VS.NET IDE: 8. Windows 가상 메모리 사용 해제
64정성태10/3/200429067.NET Framework: 15. ASP.NET에서 .NET COM+ 개체 등록 시 "Local System"이어야 하는 이유.
63정성태10/3/200429177.NET Framework: 14. Response.Cookies.Clear는 기존 설정된 Cookie 헤더를 삭제하는 것이 아닙니다.
62정성태10/3/200428229기타: 7. DB 트랜잭션에서 Lock이 걸릴 수 있는 전형적인 예.
61정성태10/3/200427700.NET Framework: 13. Main 메서드에 붙은 STAThread 의미
60정성태10/3/200426504.NET Framework: 12. IDispatch::GetIDsOfNames 역변환 메서드 작성 힌트 ( DISPID 로 메서드 이름 알아내는 것 )
58정성태10/3/200429412.NET Framework: 11. HttpContext의 간략이해
56정성태10/3/200425848.NET Framework: 10. [.NET 리모팅] 원격개체를 호출한 클라이언트의 연결이 유효한지 판단하는 방법.
55정성태10/3/200426483COM 개체 관련: 11. 내가 생각해 보는 COM의 현재 위치
... 196  197  198  [199]  200  201  202