ï»??xml version="1.0" encoding="utf-8" standalone="yes"?>欧洲精品久久久久毛片完整版,伊人春色在线观看,国产爆初菊在线观看免费视频网站http://www.aygfsteel.com/fine/zh-cnFri, 06 Jun 2025 04:14:19 GMTFri, 06 Jun 2025 04:14:19 GMT60oracle扚w‡fetchçš„sql语句 bulk collect into http://www.aygfsteel.com/fine/archive/2011/02/22/344815.htmlPeter PanPeter PanTue, 22 Feb 2011 03:39:00 GMThttp://www.aygfsteel.com/fine/archive/2011/02/22/344815.htmlhttp://www.aygfsteel.com/fine/comments/344815.htmlhttp://www.aygfsteel.com/fine/archive/2011/02/22/344815.html#Feedback0http://www.aygfsteel.com/fine/comments/commentRss/344815.htmlhttp://www.aygfsteel.com/fine/services/trackbacks/344815.html

]]>
Understanding JTAhttp://www.aygfsteel.com/fine/archive/2010/10/19/335625.htmlPeter PanPeter PanTue, 19 Oct 2010 11:49:00 GMThttp://www.aygfsteel.com/fine/archive/2010/10/19/335625.html

]]>
oracle实现Tree(2)http://www.aygfsteel.com/fine/archive/2010/10/13/335017.htmlPeter PanPeter PanWed, 13 Oct 2010 04:38:00 GMThttp://www.aygfsteel.com/fine/archive/2010/10/13/335017.htmlhttp://www.aygfsteel.com/fine/comments/335017.htmlhttp://www.aygfsteel.com/fine/archive/2010/10/13/335017.html#Feedback0http://www.aygfsteel.com/fine/comments/commentRss/335017.htmlhttp://www.aygfsteel.com/fine/services/trackbacks/335017.html2 start with cr.parent_no is null connect by NOCYCLE prior cr.no = cr.parent_no1

]]>
ORACLE shared server与dedicated serverhttp://www.aygfsteel.com/fine/archive/2010/02/03/311795.htmlPeter PanPeter PanWed, 03 Feb 2010 05:48:00 GMThttp://www.aygfsteel.com/fine/archive/2010/02/03/311795.htmlhttp://www.aygfsteel.com/fine/comments/311795.htmlhttp://www.aygfsteel.com/fine/archive/2010/02/03/311795.html#Feedback0http://www.aygfsteel.com/fine/comments/commentRss/311795.htmlhttp://www.aygfsteel.com/fine/services/trackbacks/311795.html show parameter shared_server NAME TYPE VALUE ------------------------------------ ----------- -------------------- max_shared_servers integer shared_server_sessions integer shared_servers integer 1 shared_servers大于0åÏx”¯æŒå…±äº«æœåС噍˜qžæŽ¥ scott@ORCL> show parameter dispatchers NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ dispatchers string (PROTOCOL=TCP) (SERVICE=orclXDB) ORCL = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = orcl) (SERVER =DEDICATED) ) ) ORCL1 = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521)) ) (CONNECT_DATA = (SERVICE_NAME = orclXDB) (SERVER =SHARED) ) )

]]>
独家åQšç¨‹åºå‘˜äº”大层次åQŒä½ å±žäºŽå“ªä¸€å±‚?(è½?http://www.aygfsteel.com/fine/archive/2009/06/10/281092.htmlPeter PanPeter PanWed, 10 Jun 2009 03:40:00 GMThttp://www.aygfsteel.com/fine/archive/2009/06/10/281092.htmlhttp://www.aygfsteel.com/fine/comments/281092.htmlhttp://www.aygfsteel.com/fine/archive/2009/06/10/281092.html#Feedback0http://www.aygfsteel.com/fine/comments/commentRss/281092.htmlhttp://www.aygfsteel.com/fine/services/trackbacks/281092.html

]]>
Flex 父子½H—口通信的问题收è—?/title><link>http://www.aygfsteel.com/fine/archive/2009/02/20/255825.html</link><dc:creator>Peter Pan</dc:creator><author>Peter Pan</author><pubDate>Fri, 20 Feb 2009 06:22:00 GMT</pubDate><guid>http://www.aygfsteel.com/fine/archive/2009/02/20/255825.html</guid><wfw:comment>http://www.aygfsteel.com/fine/comments/255825.html</wfw:comment><comments>http://www.aygfsteel.com/fine/archive/2009/02/20/255825.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/fine/comments/commentRss/255825.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/fine/services/trackbacks/255825.html</trackback:ping><description><![CDATA[假设有父½H—体PåQŒåœ¨çˆ¶çª—体中弹出子窗体C,˜q›è¡Œå¿…要的操作后åQŒè¿”回父½H—体ã€?<br />1、弹出子½H—体 <br />var c:ChildForm = new ChildForm (); // 新徏子窗体对è±?<br />PopUpManager.addPopUp(c, this, true); // ž®†å­½H—体加入PopUpManagerä¸?<br />c.studentId = ""; // 向子½H—体传递参æ•?<br />c.callbackFunction = this.refresh; // 子窗体中可以调用的父½H—体函数åQˆè¿™é‡Œæ˜¯å­çª—体关闭时åQŒç”¨æ¥åˆ·æ–°çˆ¶½H—体的内å®?<br />PopUpManager.centerPopUp(c); // 子窗体弹出,居中 <br />2、子½H—体关闭æ—Óž¼Œè°ƒç”¨çˆ¶çª—ä½?<br />public var callbackFunction:Function; //回调函数 <br />public var studentId:String = "";<br />public function doClose():void { <br />   PopUpManager.removePopUp(this); <br />if (isUpdate) { callbackFunction.call(parent); // 调用父窗体的åˆäh–°å‡½æ•°Â <br />   }<br />} <img src ="http://www.aygfsteel.com/fine/aggbug/255825.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/fine/" target="_blank">Peter Pan</a> 2009-02-20 14:22 <a href="http://www.aygfsteel.com/fine/archive/2009/02/20/255825.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>flex Repeater click收藏http://www.aygfsteel.com/fine/archive/2009/02/20/255824.htmlPeter PanPeter PanFri, 20 Feb 2009 06:20:00 GMThttp://www.aygfsteel.com/fine/archive/2009/02/20/255824.htmlhttp://www.aygfsteel.com/fine/comments/255824.htmlhttp://www.aygfsteel.com/fine/archive/2009/02/20/255824.html#Feedback0http://www.aygfsteel.com/fine/comments/commentRss/255824.htmlhttp://www.aygfsteel.com/fine/services/trackbacks/255824.html                    <mx:HDividedBox verticalAlign="middle" width="100%">
                        <mx:HBox paddingLeft="5">
                            <mx:Image source="./imgs/index04.gif"/>
                        </mx:HBox>
                        <mx:HBox paddingLeft="2">
                            <mx:Label text="{news.currentItem.title}" click="showNewWindow(event.currentTarget.getRepeaterItem().id);"
                                      mouseOut="labelMouseOut(event);" mouseOver="labelMouseOver(event);"/>
                        </mx:HBox>
                    </mx:HDividedBox>
                </mx:Repeater>

]]>
flex sdk 3.2 RemoteObject问题http://www.aygfsteel.com/fine/archive/2009/02/20/255783.htmlPeter PanPeter PanFri, 20 Feb 2009 02:47:00 GMThttp://www.aygfsteel.com/fine/archive/2009/02/20/255783.htmlhttp://www.aygfsteel.com/fine/comments/255783.htmlhttp://www.aygfsteel.com/fine/archive/2009/02/20/255783.html#Feedback0http://www.aygfsteel.com/fine/comments/commentRss/255783.htmlhttp://www.aygfsteel.com/fine/services/trackbacks/255783.htmlObject@3b3a1a1转换�mx.messaging.messages.IMessage�br />
需要在Application里面增加
import flash.net.registerClassAlias;    
import mx.messaging.messages.RemotingMessage;

registerClassAlias("flex.messaging.messages.RemotingMessage", RemotingMessage);

]]>
Repeater remote 嵌套http://www.aygfsteel.com/fine/archive/2009/01/15/251404.htmlPeter PanPeter PanThu, 15 Jan 2009 03:20:00 GMThttp://www.aygfsteel.com/fine/archive/2009/01/15/251404.htmlhttp://www.aygfsteel.com/fine/comments/251404.htmlhttp://www.aygfsteel.com/fine/archive/2009/01/15/251404.html#Feedback0http://www.aygfsteel.com/fine/comments/commentRss/251404.htmlhttp://www.aygfsteel.com/fine/services/trackbacks/251404.html最¾lˆè§£å†Ïx–¹æ³•用Script初始化数æ?br />
<mx:Label text="{new2.currentItem.@label2}" /> OK
<mx:Label text="{ppt.currentItem.typeName}" /> NOK
<mx:Label text="{ppt.currentItem.typeName}" creationComplete="accChildCreationComplete(event);" width="100%"/>   OK

 1<mx:XMLListCollection id="xmlListColl">
 2        <mx:source>
 3            <mx:XMLList>
 4                <node label="One">
 5                    <node2 label2="One.1" />
 6                    <node2 label2="One.2" />
 7                    <node2 label2="One.3" />
 8                </node>
 9                <node label="Two">
10                    <node2 label2="Two.1" />
11                    <node2 label2="Two.2" />
12                    <node2 label2="Two.3" />
13                </node>
14            </mx:XMLList>
15        </mx:source>
16    </mx:XMLListCollection>
17    <mx:Accordion id="accoridLeft"
18                  resizeToContent="true"
19                  width="100%">
20           <mx:Repeater id="news" dataProvider="{xmlListColl}">
21            <mx:VBox label="{news.currentItem.@label}">
22                <mx:VDividedBox horizontalAlign="left" paddingLeft="15">
23                         <mx:Repeater id="new2" dataProvider="{news.currentItem.node2}">
24                        <mx:VBox label="{new2.currentItem.@label2}">
25                            <mx:Label text="{new2.currentItem.@label2}" click="onClick1(event);"/>
26                        </mx:VBox>
27                     </mx:Repeater>
28                </mx:VDividedBox>
29            </mx:VBox>       
30        </mx:Repeater>
31    </mx:Accordion>

    <mx:Script>
        
<![CDATA[
        import mx.rpc.events.ResultEvent;
        import mx.events.FlexEvent;
        import mx.utils.ArrayUtil;
        import mx.collections.ArrayList;
        import mx.collections.ArrayCollection;
        import mx.controls.Alert;
        import mx.effects.easing.*;

        public function init():void {
            pts.getProductTypeMenu();
        }

        public function accChildCreationComplete(event:FlexEvent):void{
            event.target.text = String(event.currentTarget.getRepeaterItem().typeName);
        }

        
]]>
    
</mx:Script>
    
<mx:RemoteObject id="pts" destination="productTypeService">
    
</mx:RemoteObject>
    
<mx:Accordion id="accoridLeft"
                  resizeToContent
="true"
                  width
="100%">
        
<mx:Repeater dataProvider="{pts.getProductTypeMenu.lastResult}" id="pt">
            
<mx:VBox label="{pt.currentItem.typeName}" width="100%">
                
<mx:Repeater dataProvider="{pt.currentItem.productTypes}" id="ppt">
                    
<mx:Label text="{ppt.currentItem.typeName}" creationComplete="accChildCreationComplete(event);" width="100%"/>
                
</mx:Repeater>
            
</mx:VBox>
        
</mx:Repeater>
    
</mx:Accordion>




]]>
cannot convert mx.managers::HistoryManagerImpl@2403de71 to mx.managers.IHistoryManager.http://www.aygfsteel.com/fine/archive/2009/01/04/249753.htmlPeter PanPeter PanSun, 04 Jan 2009 08:35:00 GMThttp://www.aygfsteel.com/fine/archive/2009/01/04/249753.htmlhttp://www.aygfsteel.com/fine/comments/249753.htmlhttp://www.aygfsteel.com/fine/archive/2009/01/04/249753.html#Feedback0http://www.aygfsteel.com/fine/comments/commentRss/249753.htmlhttp://www.aygfsteel.com/fine/services/trackbacks/249753.html

 Actual Results:
TypeError: Error #
1034: Type Coercion failed: cannot convert mx.managers::HistoryManagerImpl@2403de71 to mx.managers.IHistoryManager.
at mx.managers::HistoryManager$
/get impl()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\managers\HistoryManager.as:96]
at mx.managers::HistoryManager$
/unregister()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\managers\HistoryManager.as:144]
at mx.containers::ViewStack
/commitProperties()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\containers\ViewStack.as:651]
at mx.containers::TabNavigator
/commitProperties()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\containers\TabNavigator.as:504]
at mx.core::UIComponent
/validateProperties()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:5670]
at mx.managers::LayoutManager
/validateProperties()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\managers\LayoutManager.as:519]
at mx.managers::LayoutManager
/doPhasedInstantiation()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\managers\LayoutManager.as:639]
at Function
/http://adobe.com/AS3/2006/builtin::apply()
at mx.core::UIComponent/callLaterDispatcher2()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:8460]
at mx.core::UIComponent
/callLaterDispatcher()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\core\UIComponent.as:8403]
  

Adding the following code to your main app may resolve the problem. It did for me:

import mx.managers.HistoryManager;
private var hist:HistoryManager;

See:

https:
//bugs.adobe.com/jira/browse/SDK-13121
http://bugs.adobe.com/jira/browse/SDK-12218

I
'm not sure that I agree that it's "Not a Bug" (see Resolution of SDK-12218). I would hardly classify the code given by Rodrigo as unusual or buggy. If the default behaviour of modules is to share managers with the main app (if I understand the problem correctly), then they should be able to clean up after themselves during the unload process gracefully.



]]>
Ö÷Õ¾Ö©Öë³ØÄ£°å£º ½¡¿µ| ¹±É½| ·ÊÏçÏØ| ÎÚÉóÆì| Ì«±£ÊÐ| нòÏØ| ÷ºÓ¿ÚÊÐ| ½­ÓÍÊÐ| ÎÞ¼«ÏØ| ÐÂÒ°ÏØ| ÙÈʦÊÐ| ÒÇÂ¤ÏØ| Á¹É½| ²ìÓçÏØ| ÂÔÑôÏØ| ÀÖÒµÏØ| Á½µ±ÏØ| ͬµÂÏØ| ÒËÀ¼ÏØ| °²¶àÏØ| ¿íµé| ÇåÐÂÏØ| ¸£½¨Ê¡| ÁéèµÏØ| ËÞÖÝÊÐ| ÑÓ°²ÊÐ| ÉÛ¶«ÏØ| ½£¸óÏØ| ԭƽÊÐ| ÓéÀÖ| Àû½òÏØ| µ±ÐÛÏØ| Î÷ÇàÇø| ¬ÊÏÏØ| ÄÏͨÊÐ| Ì«¿µÏØ| ½ðÌÃÏØ| ÁÙ²×ÊÐ| »ÔÄÏÏØ| Ã÷ÏªÏØ| ¶«ÖÁÏØ|