JScrollPane scrollPatients = new JScrollPane(); GridBagConstraints gbc_scrollPatients = new GridBagConstraints(); gbc_scrollPatients.fill = GridBagConstraints.BOTH; gbc_scrollPatients.gridx = 1; gbc_scrollPatients.gridy = 1; getContentPane().add(scrollPatients, gbc_scrollPatients); Table tabPatients = new Table(columns, data); scrollPatients.setViewportView(tabPatients);
Table tabPatients = new Table(columns, data); JScrollPane scrollPatients = new JScrollPane(tabPatients); GridBagConstraints gbc_scrollPatients = new GridBagConstraints(); gbc_scrollPatients.fill = GridBagConstraints.BOTH; gbc_scrollPatients.gridx = 1; gbc_scrollPatients.gridy = 1; getContentPane().add(scrollPatients, gbc_scrollPatients);
Les membres obtiennent plus de réponses que les utilisateurs anonymes.
Le fait d'être membre vous permet d'avoir un suivi détaillé de vos demandes et codes sources.
Le fait d'être membre vous permet d'avoir des options supplémentaires.