Sibman foot 🔘



🎬 *Bienvenue sur [SIB MAN COMICSFOOT] – La voix des légendes.*

Tu cherches des récits puissants, des parcours qui motivent, et des histoires vraies racontées avec intensité ? Ici, chaque vidéo est une immersion dans la vie de celles et ceux qui ont marqué l’histoire : sportifs, leaders, artistes, révolutionnaires… avec un style unique, cinématographique, et une voix qui te parle droit au cœur.

📌 *Des vidéos motivantes, courtes ou longues, que tu n’oublieras jamais.*

🔔 Abonne-toi et active la cloche pour ne jamais manquer une nouvelle histoire.
🎙️ Une chaîne pour t’inspirer. Une chaîne pour te relever


Sibman foot 🔘

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package gestioneleves;

/**
*
* @author LENOVO
*/
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.pdf.FdfWriter;
import com.itextpdf.text.pdf.PdfWriter;

import java.io.File;
import java.io.FileOutputStream;

import java.awt.Desktop;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;


public class Certifacat {

public static void main (String[] args) throws FileNotFoundException, IOException{


try {
String chemin =" certificat. pdf";
Document doc =new Document();
PdfWriter.getInstance(doc,new FileOutputStream(chemin));
doc.open();

Desktop.getDesktop().open(new File(chemin));

} catch (DocumentException ex) {
Logger.getLogger(Certifacat.class.getName()).log(Level.SEVERE, null, ex);
}

}
}

4 weeks ago | [YT] | 0

Sibman foot 🔘

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

4 weeks ago | [YT] | 0

Sibman foot 🔘

package javaapplication1;

import java.awt.Image;
import java.awt.Color;
import java.util.HashSet;
import java.util.Set;
import javax.swing.*;

public class JavaApplication1 {

public static void main(String[] args) {
JFrame frame = new JFrame("ma fenettre prinncipale");
frame.setSize(500, 400);

// label
JLabel Label = new JLabel("Anselme Muhindo");
Label.setBounds(10, 10, 200, 20);

//description
JLabel description = new JLabel("je suis Anselme De la maison interface");
description.setBounds(10, 200, 20, 20);
description.setForeground(Color.red);

//sexe
JLabel sexe = new JLabel("M");
sexe.setBackground(Color.green);
sexe.setBounds(250, 10, 50, 20);

//ajout des label
frame.add(sexe);
frame.add(description);
frame.add(Label);
frame.setLayout(null);
frame.setVisible(true);
}
}

1 month ago | [YT] | 0

Sibman foot 🔘

package javaapplication1;

import java.awt.Image;
import java.awt.Color;
import java.util.HashSet;
import java.util.Set;
import javax.swing.*;

public class JavaApplication11 {

public static void main(String[] args) {

JFrame frame = new JFrame("ma fennttre principale");
frame.setSize(500,400);

//label
JLabel Label = new JLabel("Anselme Muhindo");
Label.setBounds(10,10,200,20);

//description
JLabel description = new JLabel("je suis Anselme De la maison interface");
description.setBounds(10,200,20,20);
description.setForeground(Color.red);

//sexe
JLabel sexe = new JLabel("M");
sexe.setBackground(Color.green);
sexe.setBounds(250,10,50,20);

//ajout des label
frame.add(sexe);
frame.add(description);
frame.add(Label);

frame.setLayout(null);
frame.setVisible(true);
}
}

1 month ago | [YT] | 0

Sibman foot 🔘

package javaapplication1;

import java.awt.Color;
import javax.swing.*;
import javax.swing.border.LineBorder;

public class JavaApplication11 {

public static void main(String[] args) {

JFrame frame = new JFrame("Carte Profil");
frame.setSize(700, 500);
frame.setLayout(null);

// NOM
JTextField nom = new JTextField("Hekima Sibomana");
nom.setBounds(50, 30, 300, 40);
nom.setBorder(new LineBorder(Color.BLACK, 3));
frame.add(nom);

// DESCRIPTION
JTextArea description = new JTextArea();
description.setText("Je suis passionné par la programmation Java.");
description.setBounds(50, 100, 300, 250);
description.setBorder(new LineBorder(Color.BLACK, 3));

frame.add(description);

// PHOTO
JLabel photo = new JLabel("PHOTO");
photo.setBounds(430, 50, 180, 250);
photo.setBorder(new LineBorder(Color.BLACK, 3));

frame.add(photo);

// BOUTON OK
JButton btn1 = new JButton("OK");
btn1.setBounds(430, 330, 80, 40);
frame.add(btn1);

// BOUTON ANNULER
JButton btn2 = new JButton("ANNULER");
btn2.setBounds(530, 330, 110, 40);
frame.add(btn2);

// AFFICHAGE
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}

1 month ago | [YT] | 0

Sibman foot 🔘

package javaapplication1;

import java.awt.Color;
import javax.swing.*;
import javax.swing.border.LineBorder;

public class JavaApplication11 {

public static void main(String[] args) {

JFrame frame = new JFrame("Carte Profil");
frame.setSize(700, 500);
frame.setLayout(null);

// ===== NOM =====
JTextField nom = new JTextField("Hekima Sibomana");
nom.setBounds(50, 30, 300, 40);
nom.setBorder(new LineBorder(Color.BLACK, 3));
frame.add(nom);

// ===== DESCRIPTION =====
JTextArea description = new JTextArea();
description.setText("Je suis passionné par la programmation Java et l'informatique.");
description.setBounds(50, 100, 300, 250);
description.setBorder(new LineBorder(Color.BLACK, 3));

frame.add(description);

// ===== PHOTO =====
ImageIcon image = new ImageIcon("photo.jpg");

JLabel photo = new JLabel(image);
photo.setBounds(430, 50, 180, 250);
photo.setBorder(new LineBorder(Color.BLACK, 3));

frame.add(photo);

// ===== BOUTONS =====
JButton btn1 = new JButton("OK");
btn1.setBounds(430, 330, 80, 40);
frame.add(btn1);

JButton btn2 = new JButton("ANNULER");
btn2.setBounds(530, 330, 110, 40);
frame.add(btn2);

// ===== AFFICHAGE =====
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}
}

1 month ago | [YT] | 0

Sibman foot 🔘

// Importation des bibliothèques
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class TableauGraphique extends JFrame {

JTextField txtNom;
JTextArea txtDescription;
JLabel photo;
JButton btnModifier, btnEffacer;

public TableauGraphique() {

// Fenêtre
setTitle("Programmation Graphique Java");
setSize(800, 500);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setLayout(null);

// ====== NOM ======
JLabel lblNom = new JLabel("Nom");
lblNom.setBounds(120, 40, 100, 30);
lblNom.setFont(new Font("Arial", Font.BOLD, 20));
add(lblNom);

txtNom = new JTextField();
txtNom.setBounds(80, 80, 300, 40);
add(txtNom);

// ====== DESCRIPTION ======
JLabel lblDescription = new JLabel("Description");
lblDescription.setBounds(150, 140, 200, 30);
lblDescription.setFont(new Font("Arial", Font.BOLD, 22));
add(lblDescription);

txtDescription = new JTextArea();
txtDescription.setBounds(80, 180, 300, 180);
txtDescription.setBorder(BorderFactory.createLineBorder(Color.BLACK));

add(txtDescription);

// ====== PHOTO ======
photo = new JLabel("Photo", SwingConstants.CENTER);
photo.setBounds(500, 80, 180, 220);
photo.setBorder(BorderFactory.createLineBorder(Color.BLACK));
photo.setFont(new Font("Arial", Font.BOLD, 24));
add(photo);

// ====== BOUTONS ======
btnModifier = new JButton("Modifier");
btnModifier.setBounds(480, 340, 100, 40);
add(btnModifier);

btnEffacer = new JButton("Effacer");
btnEffacer.setBounds(600, 340, 100, 40);
add(btnEffacer);

// ====== ACTION MODIFIER ======
btnModifier.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {

String nom = txtNom.getText();
String desc = txtDescription.getText();

JOptionPane.showMessageDialog(null,
"Nom : " + nom +
"\nDescription : " + desc);
}
});

// ====== ACTION EFFACER ======
btnEffacer.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {

txtNom.setText("");
txtDescription.setText("");
}
});
}

// MAIN
public static void main(String[] args) {

TableauGraphique f = new TableauGraphique();
f.setVisible(true);
}
}

1 month ago | [YT] | 0

Sibman foot 🔘

Si nous franchissons la barre de 1k abonnés directement nous commençons les longues videos la famille

1 month ago | [YT] | 0

Sibman foot 🔘

5ème CAS : VENTE DES M/SES (MARCHANDISES) A CRÉDITExemple : Vente des M/ses (Coût d'achat 50 000 F) au Prix de Vente (PV) de 90 000 F à crédit.Analyse des comptes31 M/ses : Actif (A) $\searrow$ Crédit (C)60.31 Δ Stocks : Charge (CH) $\nearrow$ Débit (D)41.1 Clients : Actif (A) $\nearrow$ Débit (D)44.3 État TVA Facturée : Passif (P) $\nearrow$ Crédit (C)70.1 Vente M/ses : Produit (PR) $\nearrow$ Crédit (C)

2 months ago | [YT] | 0