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] 
NoWriterDateCnt.TitleFile(s)
13정성태7/17/200321893VC++: 3. template 활용의 최고 단계!
12정성태5/7/200619495VC++: 2. void func1( MYCLASS *&pBuildingElement ); 선언의 의미
10정성태7/17/200317817기타: 2. 데브피아 사이트의 클럽 서비스 내에 있는 Standard C++ Research
9정성태7/17/200323398기타: 1. Programming Applications for Microsoft Windows 4th Edition
8정성태7/17/200320775COM 개체 관련: 2. CWindowImpl 의 기본 윈도우 클래스 명을 바꾸려면?
7정성태7/17/200323388VS.NET IDE: 1. VC++ 프로파일링 사용법
4정성태7/17/200335735VC++: 1. C++ 클래스 멤버변수 초기화 [3]
3정성태7/17/200321714스크립트: 2. JScript에서의 Blocking 동작을 막아주는 COM 메서드
2정성태6/14/200640635COM 개체 관련: 1. IWebBrowser2와 IHTMLDocument2의 상호 변환 [2]
1정성태7/17/200324761스크립트: 1. IE 의 훌륭한 저장기능 - userData
... 196  [197]