IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Forms Oracle Discussion :

[Forms6i]Composant ne suit pas la fenetre forms


Sujet :

Forms Oracle

  1. #1
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut [Forms6i]Composant ne suit pas la fenetre forms
    Bonjour,

    Mon composant java de ma bean area ne suit pas ma fenetre forms ?

    Que faire ?

    merci

  2. #2
    Expert éminent sénior
    Avatar de SheikYerbouti
    Profil pro
    Inscrit en
    Mai 2003
    Messages
    6 760
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 6 760
    Points : 11 862
    Points
    11 862
    Par défaut
    Hum, c'est donc vous qui postez également sur OTN.....

    Ok alors il va falloir donner un minimum d'info, parce qu'on ne pas pas jouer au chat et à la sourir et vous tirer les vers du nez, n'est-ce pas ?

  3. #3
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    Je suis completement pommé.

    J'arrive pas à trouver de solution.

    C'est pourquoi j'ai posté des message ici sur otn et tar.

    Bon alors qu'est ce que je fait avec ce composant.

    Le but du composant est d'afficher des plan autocad.

    J'instancie le composant et l'associe à ma beanarea.

    Le composant est attaché à ma forms, mais à tou déplacment de ma fenetre cela déconne.

    Pour le moment j'examine la classe HeavyBeanManager

    fournit sur le cd e'installation de foms 6i

    oracle_home\des6i\extras\forms\pjc\beanarea.

    J'avoue que j'ai du mal.

    Aidez-moi svp ?

  4. #4
    Expert éminent sénior
    Avatar de SheikYerbouti
    Profil pro
    Inscrit en
    Mai 2003
    Messages
    6 760
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 6 760
    Points : 11 862
    Points
    11 862
    Par défaut
    Oui, mais il est facile de comprendre que sans info et sans une ligne de code, il est difficile de "deviner" l'origine du problème.

  5. #5
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    voici le code

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
     
    package cadtest20060320;
     
    import com.cadviewer.*;
    import sun.misc.BASE64Encoder;
    import sun.misc.BASE64Decoder;
    import javax.swing.*;
    import javax.swing.filechooser.*;
    import java.awt.FileDialog;
    import java.awt.Frame;
    import java.awt.Button;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.ComponentEvent;
    import java.awt.event.ComponentListener;
    import java.awt.event.ContainerEvent;
    import java.awt.event.ContainerListener;
    import java.awt.image.*;
    import java.io.*;
    import java.io.DataInputStream;
    import java.io.FileInputStream;
    import java.io.BufferedInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.File;
    import java.util.zip.*;
    import java.util.StringTokenizer;
    import java.util.Vector;
    import java.beans.*;
    import java.beans.PropertyChangeSupport;
    import java.net.*;
    import oracle.forms.properties.ID;
    import oracle.forms.handler.IHandler;
    import oracle.forms.ui.VBean;
    import oracle.forms.ui.CustomEvent;
    import oracle.forms.handler.IHandler;
    import oracle.forms.properties.ID;
    import oracle.ewt.meter.ProgressBar;
    import oracle.ewt.meter.BoundedRangeModelImpl;
    import oracle.ewt.thread.TaskScheduler;
    import oracle.ewt.thread.Task;
    import oracle.ewt.thread.TaskEvent;
    import oracle.ewt.lwAWT.lwWindow.LWWindow;
    import oracle.ewt.lwAWT.lwWindow.DesktopContainer;
     
     
    public class CADViewerWrapper2 extends VBean
           implements ComponentListener,
                      ContainerListener   
    {
     
        //------------------------------------------------------------------------
        // Public methods
        //------------------------------------------------------------------------
     
        /*
         * Accessor method to get the bean's Container.
         */
        public final Container getContainer()
        {
            return mContainer;
        }
     
     
        //------------------------------------------------------------------------
        // ComponentListener interface
        //------------------------------------------------------------------------
     
        public void componentResized(ComponentEvent event)
        {
        	System.out.println("componentResized");
        }
     
        public void componentMoved(ComponentEvent event)
        {
            System.out.println("componentMoved");
        }
     
        public void componentShown(ComponentEvent event)
        {
    		System.out.println("componentShown");
        }
     
        public void componentHidden(ComponentEvent event)
        {
        	System.out.println("componentHidden");
        }
     
        //------------------------------------------------------------------------
        // ContainerListener interface
        //------------------------------------------------------------------------
     
        public void componentAdded(ContainerEvent event)
        {
        	System.out.println("componentAdded");    	
            event.getChild().addComponentListener(this);
        }
     
        public void componentRemoved(ContainerEvent event)
        {
        	System.out.println("componentRemoved");    	    	
            event.getChild().removeComponentListener(this);
        }
     
        //------------------------------------------------------------------------
        // Protected methods
        //------------------------------------------------------------------------
     
        //------------------------------------------------------------------------
        // Private methods
        //------------------------------------------------------------------------
     
        /*
         * Call all update methods.
         */
        private void updateAll()
        {
       		System.out.println("updateAll");    	    	    	
        }
     
        /*
         * Create an array of parents and register listeners
         */
        private void updateParents()
        {
       		System.out.println("updateParents");    	    	    	    	
        }
     
        /*
         * Update the location of the bean.  The location of the bean doesn't
         * really change - its always 0,0 relative to its parent but we have to
         * set it back to 0,0 so that it physically moves to the correct position.
         *
         * Component has some optimization code that we have to circumvent by
         * moving the bean to 1,0 and then back to 0,0!
         *
         * Once the location has been updated, we recalculate the clipping
         * rectangle.
         *
         * Hide the component during this whole operation, so that it doesn't look
         * quite so ugly.
         */
        private void updateLocation()
        {
        	System.out.println("updateLocation");    	
        }
     
        /*
         * The heavyweight Component isn't hidden automatically when a lightweight
         * parent is invisible, we scan up the Component tree, looking for any
         * parent that is not visibile.  The bean is only visible if all of its
         * parents are visible.
         */
        private void updateVisibility()
        {
        	System.out.println("updateVisibility");    	    	
        }
     
        /*
         * clip the bean to its parents and other LWWindows.
         */
        private void updateClipping()
        {
        	System.out.println("updateClipping");    	    
        }
     
        //------------------------------------------------------------------------
        // Private members
        //------------------------------------------------------------------------
     
        private Container  mParents[];
        private Component  mBean;
        private Container  mContainer;
     
    	public class CADViewer3 extends Panel {
    		private ViewerAWT viewerAWT = null;
     
    		public CADViewer3() {
    			try {
     
                	viewerAWT = new ViewerAWT("D:\\CV_AWT_SNCB2006_03_15\\");                        
                	URL url = new URL("file:///d:/acad_B/es/cat/STIP/Extract/410009.dwf");            
                	byte[] arr = viewerAWT.getData(url);            
                	viewerAWT.OpenFile(arr);
     
    				//this.setSize( 150, 100 );
    				System.out.println("this.add( viewerAWT.GetViewerPanel() )");
    				viewerAWT.SetTheFileName(url.toString());
    				this.add( viewerAWT.GetViewerPanel(),BorderLayout.CENTER );
    				this.setEnabled(true);
    				this.setVisible(true);
     
    			}
    			catch (Exception e) {
    				System.out.println("__EXCEPTION CadViewer3");
      				e.printStackTrace();
      			}  		 		
    		}
     
    		public Component  GetViewerPanel() {
    			return  viewerAWT.GetViewerPanel();
    		}	
    	}
     
    	private IHandler mHandler  = null;
    	private CADViewer3 viewerAWT3 = null;    
     
    	public void init(IHandler handler) {
    		try {		
    			System.out.println("__START CadWrapper public void init");		
      			mHandler = handler;  		  		
      			super.init(handler);  						
     
      			System.out.println("__END CadWrapper public void init");
      		}
    		catch (Exception e) {
    			System.out.println("__EXCEPTION CadWrapper public void init");
      			e.printStackTrace();
      		}  		 
     
      	}
     
     
    	public CADViewerWrapper2() {
     
    		super();
     
        	try {
     
        	   System.out.println("_____START CADViewerWrapper() constructor_____");
     
     
    			viewerAWT3 = new CADViewer3();
    			this.add( viewerAWT3.GetViewerPanel(),BorderLayout.CENTER );
    			this.setEnabled(true);
    			this.setVisible(true);
     
            	mBean      = this;
            	mContainer = getBean().getParent();        	
    /*
            	getContainer().setLayout(null);
            	getContainer().removeAll();
            	getContainer().add(viewerAWT3.GetViewerPanel());
    */        	
            	getContainer().addComponentListener(this);
    //        	getPanel().setVisible(false);
     
            	updateAll();
     
     
    /*			
                viewerAWT = new ViewerAWT("D:\\CV_AWT_SNCB2006_03_15\\");                        
                URL url = new URL("file:///d:/acad_B/es/cat/STIP/Extract/410009.dwf");            
                byte[] arr = viewerAWT.getData(url);            
                viewerAWT.OpenFile(arr);
     
     
    			this.setSize( 150, 100 );
    			System.out.println("this.add( viewerAWT.GetViewerPanel() )");
    			this.add( viewerAWT.GetViewerPanel() );
    			this.setEnabled(true);
    			this.setVisible(true);
    */
    /*			           		   
            	f.add( viewerAWT.GetViewerPanel() ,BorderLayout.CENTER);         		   				 
            	f.setSize(300,200);               	
    			f.show();					
     
    			// Add a listener for the close event
        		f.addWindowListener(new WindowAdapter() {
            		public void windowClosing(WindowEvent evt) {
                		Frame frame = (Frame)evt.getSource();
        
                		// Hide the frame
                		frame.setVisible(false);
        
                		// If the frame is no longer needed, call dispose
                		frame.dispose();
            		}
        		});		
    */		   
    		   System.out.println("_____END CADViewerWrapper() constructor_____");     	   		   
     
    		}
    		catch (Exception e) {
      			e.printStackTrace();
      		}  		   		  		
    }
     
     
     
     
     
    	//set the delay time for the timer
      	public boolean setProperty(ID pid, Object value) {
    		return super.setProperty(pid, value);
      	}
     
     
     
     
    	//if the value change, send a msg
      	public Object getProperty(ID pid) {		
       			return null;   				
    	}
     
        public void Msg( String s ) {
        	System.out.println(s);
        }
    	public void InfoSystem() {
    		Msg("------------------------ InfoSystem ------------------------");
     
    		Msg("File separator:"+System.getProperty("file.separator"));
     
    		Msg("Java classpath:"+System.getProperty("java.class.path"));		
    		Msg("Java class version number:"+System.getProperty("java.class.version"));		
    		Msg("Java installation directory:"+System.getProperty("java.home"));		
     		Msg("Java vendor-specific string:"+System.getProperty("java.vendor"));		
     		Msg("Java vendor URL:"+System.getProperty("java.vendor.url"));		
     		Msg("Java version number:"+System.getProperty("java.version"));		
     
     		Msg("Line separator:"+System.getProperty("line.separator"));		
     
      		Msg("Operating system architecture:"+System.getProperty("os.arch"));
      		Msg("Operating system name:"+System.getProperty("os.name"));
      		Msg("Operating system version:"+System.getProperty("os.version"));
     
        	Msg("Path separator:"+System.getProperty("path.separator"));
     
    		Msg("User's current working directory:"+System.getProperty("user.dir"));
    		Msg("User home directory:"+System.getProperty("user.home"));
    		Msg("User account name:"+System.getProperty("user.name"));
     
    		Msg("------------------------------------------------------------");
    	}
     
     
    }
    J'ai placé mon composant de type implements ComponentListener,
    ContainerListener cependant j'ai placé des message example
    System.out.println("componentShown");
    pour voir si je peux récupérer des info du vbean.

    Rien ne se passe.

    Lors du constructeur j'instancie CADViewer3.

    Le plan s'affiche à l'écran mais ne se déplace pas avec ma fenetre interne.

    JE ne sais pas pourquoi.

  6. #6
    Expert éminent sénior
    Avatar de SheikYerbouti
    Profil pro
    Inscrit en
    Mai 2003
    Messages
    6 760
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 6 760
    Points : 11 862
    Points
    11 862
    Par défaut
    Il doit manquer une instruction repaint() quelque part.

    Je pense que vous pouvez également poser ce problème dans le forum Interfaces Graphiques Java

  7. #7
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    au sein de la classe interne cadviewer3 ?

  8. #8
    Expert éminent sénior
    Avatar de SheikYerbouti
    Profil pro
    Inscrit en
    Mai 2003
    Messages
    6 760
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 6 760
    Points : 11 862
    Points
    11 862
    Par défaut
    Je ne suis vraiment pas un pro du Java, mais êtes-vous certain de la nécessité d'implémenter ComponentListener et ContainerListener ?

  9. #9
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    J'ai utilisé ComponentListener, ContainerListener parce que sur metalink il m'ont dit de regardé l'exemple fournit sur le cd de forms.

    Dans l'exemple fournit sur le cd il utilise les 2 listener pour récuperer les coordonnées de bean et du composant.

    sur metalik il explique ce problème connu sur les composants heavy et light de forms dans un beanarea.

    Bref voila pourquoi j'utilise c'est 2 listeners qui personnelement ne font rien. Je ne reçois meme pas les message console.

    C'est la galère.

  10. #10
    Expert éminent sénior
    Avatar de SheikYerbouti
    Profil pro
    Inscrit en
    Mai 2003
    Messages
    6 760
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 6 760
    Points : 11 862
    Points
    11 862
    Par défaut
    Justement, en parlant de console, elle n'affiche aucune erreur ?

  11. #11
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    Aucune erreur n'est affichée.

    J'ai essayé de placer ma fentre de base à modal. Mais sans succès.

  12. #12
    Expert éminent sénior
    Avatar de SheikYerbouti
    Profil pro
    Inscrit en
    Mai 2003
    Messages
    6 760
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 6 760
    Points : 11 862
    Points
    11 862
    Par défaut
    DOnc la map s'affiche correctement tant que la fenêtre n'est pas déplacée ?
    Je ne vois qu'un problème de repaint().
    Ceci étant (presque) 100% Java, je vous conseille à nouveau de poser la question dans le forum Interfaces Graphiques Java

  13. #13
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    Le plan s'affiche bien.

    Pas de problème de ce coté là.

    OTN m'a conseillé de testé le fmb sur 10g.

    Ce que j'ai fait. Cependant je n'ai pas grande expérience sur la plateforme 10g.

    en exécutant le meme fmb. en configurant l'archive dans le fichier formsweb.cfg de 10g.

    A l'éxécution, je reçois l'erreur suivante :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
     
     have a message error in java console :
     
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    User home directory = D:\documents and settings\OFV7600
     
    Proxy Configuration: Automatic Proxy Configuration
     
    JAR cache enabled
    Location: D:\documents and settings\OFV7600\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
     
     
     
    ----------------------------------------------------
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    ----------------------------------------------------
     
    Loading http://do040001334.msnet.railb.be:8889/forms90/java/f90all_jinit.jar 
    from JAR cache
     
    proxyHost=null
     
    proxyPort=0
     
    connectMode=HTTP, native.
     
    Forms Applet version is : 9.0.4.0
     
    _____START CADViewerWrapper() constructor_____
     
    java.lang.NoClassDefFoundError: com/cadviewer/ViewerApplet
     
    at cadtest20060320.CADViewerWrapper2.<init>(CADViewerWrapper2.java:106)
     
    at java.lang.Class.newInstance0(Native Method)
     
    at java.lang.Class.newInstance(Unknown Source)
     
    at oracle.forms.handler.UICommon.instantiate(Unknown Source)
     
    at oracle.forms.handler.UICommon.onCreate(Unknown Source)
     
    at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
     
    at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
     
    at oracle.forms.engine.Runform.processMessage(Unknown Source)
     
    at oracle.forms.engine.Runform.processSet(Unknown Source)
     
    at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
     
    at oracle.forms.engine.Runform.onMessage(Unknown Source)
     
    at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
     
    at oracle.forms.engine.Runform.startRunform(Unknown Source)
     
    at oracle.forms.engine.Main.createRunform(Unknown Source)
     
    at oracle.forms.engine.Main.start(Unknown Source)
     
    at sun.applet.AppletPanel.run(Unknown Source)
     
    at java.lang.Thread.run(Unknown Source)
     
    I had start my oc4j engine eand run forms in debug mode.
     
    Where is wrong ?

  14. #14
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    Ok pour 10g.
    J'ai oublié de mettre à jour la variable
    archive_jini du formsweb.cfg.

    L'application tourne comme sur 6i. Mais mon problème d'origine est toujours là. Mon composnat ne se déplace pas avec ma fenetre forms.

    arrgghh

  15. #15
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    Je vais investiguer sur le repaint.

  16. #16
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut




    Bizarrement la solution est la suivante.

    Mettre à null le champ implemention class.

    Definir la class de votre composant bean area gracc à la commande suivante en When new form instance.

    set_custom_item_property('VOTRE_BEAN_ITEM', 'beanName', 'votre implemention class');



  17. #17
    Expert éminent sénior
    Avatar de SheikYerbouti
    Profil pro
    Inscrit en
    Mai 2003
    Messages
    6 760
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2003
    Messages : 6 760
    Points : 11 862
    Points
    11 862
    Par défaut
    Cela doit être particulier à la version 6i.
    Depuis 9i, Il n'existe que Set_Custom_Property() et cette fonction permet seulement de positionner des propriétés du bean, pas de l'instancier.

  18. #18
    Membre actif
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    422
    Détails du profil
    Informations personnelles :
    Localisation : Belgique

    Informations forums :
    Inscription : Avril 2004
    Messages : 422
    Points : 201
    Points
    201
    Par défaut
    Idem sur 10G.

    La nuance est que j'utilise fbean.register en WNFI

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 1
    Dernier message: 16/03/2007, 11h30
  2. [GradientPaint] ne suit pas le composant
    Par xavlours dans le forum AWT/Swing
    Réponses: 2
    Dernier message: 13/03/2006, 10h04
  3. Réponses: 9
    Dernier message: 14/02/2006, 09h03
  4. ne pas aggrandir uen form
    Par digger dans le forum VB 6 et antérieur
    Réponses: 6
    Dernier message: 17/12/2005, 17h37
  5. Balise <PRE> marche pas dans un form
    Par chateau64 dans le forum Balisage (X)HTML et validation W3C
    Réponses: 4
    Dernier message: 14/11/2005, 10h20

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo