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 
NoWriterDateCnt.TitleFile(s)
73정성태11/14/200518528.NET Framework: 19. VS.NET 2005 Team Foundation Server 설치오류 - 26204 예외
72정성태12/26/200419995.NET Framework: 18. .NET Framework 2.0 Beta 설치 후에 Windows SharePoint Service 오류 [1]
136정성태3/31/200519970    답변글 .NET Framework: 18.1. Windows Sharepoint Services 를 설치한 이후 ASP.NET 오류 문제
71정성태12/26/200418110VS.NET IDE: 11. SQL Server 2005 Beta 2 를 네트워크 드라이브로부터 설치시 오류
70정성태12/26/200421038VS.NET IDE: 10. WSS 설치 후 localhost 접근 보안 오류
69정성태12/5/200418162VS.NET IDE: 9. 다른 컴퓨터(방화벽 설치)에 설치된 SQL Server에 통합 인증을 할 때 필요한 포트
68정성태10/31/200422999.NET Framework: 17. Win32_NTLogEvent를 c#에서 wmi 쿼리할 때..에러..
67정성태10/22/200420242COM 개체 관련: 12. Microsoft.XMLHTTP 개체에서 Microsoft.XMLDOM 개체를 전송할 때 charset 지정 문제?
66정성태10/16/200421436.NET Framework: 16. [닷넷 리모팅] 프록시가 죽은 것을 원격 개체가 알 수 있는 방법은?
65정성태10/16/200420421VS.NET IDE: 8. Windows 가상 메모리 사용 해제
64정성태10/3/200424134.NET Framework: 15. ASP.NET에서 .NET COM+ 개체 등록 시 "Local System"이어야 하는 이유.
63정성태10/3/200424199.NET Framework: 14. Response.Cookies.Clear는 기존 설정된 Cookie 헤더를 삭제하는 것이 아닙니다.
62정성태10/3/200423309기타: 7. DB 트랜잭션에서 Lock이 걸릴 수 있는 전형적인 예.
61정성태10/3/200422737.NET Framework: 13. Main 메서드에 붙은 STAThread 의미
60정성태10/3/200421507.NET Framework: 12. IDispatch::GetIDsOfNames 역변환 메서드 작성 힌트 ( DISPID 로 메서드 이름 알아내는 것 )
58정성태10/3/200424656.NET Framework: 11. HttpContext의 간략이해
56정성태10/3/200421048.NET Framework: 10. [.NET 리모팅] 원격개체를 호출한 클라이언트의 연결이 유효한지 판단하는 방법.
55정성태10/3/200421820COM 개체 관련: 11. 내가 생각해 보는 COM의 현재 위치
54정성태8/30/200427461VC++: 10. 내가 생각해 보는 MFC OCX와 ATL DLL에 선택 기준
53정성태11/20/200526775VC++: 9. CFtpFileFind/FtpFileFind가 일부 Unix FTP 서버에서 목록을 제대로 못 가져오는 문제
184정성태11/23/200520503    답변글 VC++: 9.1. FTP 관련 토픽파일 다운로드1
51정성태6/24/200425594VC++: 8. BSTR 메모리 할당 및 해제(MSDN Library 발췌) [1]
50정성태6/16/200418819기타: 6. 1차 데스크톱 컴퓨터 사양
49정성태6/16/200419247기타: 5. 53만 원대 Second PC 마련. ^^
48정성태3/2/200421154.NET Framework: 9. 윈도우즈 발전사를 모아 둔 사이트. [1]
47정성태11/14/200519579VS.NET IDE: 7. 한글 OS에서 Internet Explorer 6.0 with SP1의 UI 언어 바꾸는 방법
... [196]  197  198