Programming of Life
Programming of Life
  • 49
  • 290 858
Draw Line in Java | Graphics2D | Line2D
Draw Line in Java | Graphics2D | Line2D
This Graphics2D class extends the Graphics class to provide more sophisticated control over geometry, coordinate transformations, color management, and text layout. This is the fundamental class for rendering 2-dimensional shapes, text and images on the Java(tm) platform.
มุมมอง: 4 558

วีดีโอ

Alert Dialog Box in Android Studio | Java
มุมมอง 6343 ปีที่แล้ว
Alert Dialog Box in Android Studio
How to get JTable selected row data in Java
มุมมอง 6K3 ปีที่แล้ว
How to get JTable selected row data in Java
How to add Placeholder text in JTextField and JPasswordField in Java | NetBeans
มุมมอง 23K3 ปีที่แล้ว
How to add Placeholder text in JTextField and JPasswordField in Java
JTextField Change Border Color | Java | NetBeans
มุมมอง 4.2K3 ปีที่แล้ว
JTextField Change Border Color
Display Data From MySql Database into JTable in Java | NetBeans
มุมมอง 31K3 ปีที่แล้ว
Display Data From MySql Database into JTable in Java | NetBeans
C# InputBox
มุมมอง 3.3K3 ปีที่แล้ว
C# InputBox.
C# Respond to MessageBox Button
มุมมอง 1.3K3 ปีที่แล้ว
C# Respond to MessageBox Button.
Custom Spinner in Android Studio | Java
มุมมอง 1.5K3 ปีที่แล้ว
Custom Spinner in Android Studio | Java
Java JCheckBox in NetBeans | ActionListener | Multiline JLabel
มุมมอง 3.9K3 ปีที่แล้ว
Java JCheckBox with ActionListener and handle Checkboxes in Button Click event. How to get Selected CheckBoxes and Display in multiline label.
Spinner in Android | Android Studio | Java
มุมมอง 3.8K3 ปีที่แล้ว
Spinner in Android | Android Studio | Java. OnItemSelectedListener and OnClickListener events.
Java Text Moving Animation | JLabel | NetBeans
มุมมอง 10K3 ปีที่แล้ว
Java Text Moving Animation | JLabel | NetBeans.
Java Radio Button in NetBeans
มุมมอง 7K3 ปีที่แล้ว
Java Radio Button in NetBeans.
Java Convert JTextField String To int and double
มุมมอง 10K3 ปีที่แล้ว
Java Convert JTextField String To int and double. We can convert String to an int in java using Integer.parseInt() method. We can convert String to double in java using Double.parseDouble() method.
Java Animation Of Moving Objects | Netbeans
มุมมอง 21K3 ปีที่แล้ว
Java Animation Of Moving Objects | Netbeans
PHP Multiple Selected Values From List Box And Keep The Values After Submitting Form
มุมมอง 8453 ปีที่แล้ว
PHP Multiple Selected Values From List Box And Keep The Values After Submitting Form
Java Enable and Disable JButton
มุมมอง 6K3 ปีที่แล้ว
Java Enable and Disable JButton
Java Open New Window On Button Click | NetBeans
มุมมอง 10K3 ปีที่แล้ว
Java Open New Window On Button Click | NetBeans
Java Graphics Draw on JPanel | NetBeans
มุมมอง 16K3 ปีที่แล้ว
Java Graphics Draw on JPanel | NetBeans
PHP Keep Dropdown Value After Form Submit
มุมมอง 8K3 ปีที่แล้ว
PHP Keep Dropdown Value After Form Submit
PHP Get Values of Multiple Checkbox and Keep Checkbox Checked After Submitting Form
มุมมอง 7K3 ปีที่แล้ว
PHP Get Values of Multiple Checkbox and Keep Checkbox Checked After Submitting Form
Java for and forEach Loops to Iterate Through Arrays
มุมมอง 7583 ปีที่แล้ว
Java for and forEach Loops to Iterate Through Arrays
Java Dialog Boxes
มุมมอง 7323 ปีที่แล้ว
Java Dialog Boxes
JDesktopPane and JInternalFrame | NetBeans
มุมมอง 14K3 ปีที่แล้ว
JDesktopPane and JInternalFrame | NetBeans
Change Background Color of JFrame
มุมมอง 17K3 ปีที่แล้ว
Change Background Color of JFrame
Java Mouse Events | NetBeans
มุมมอง 6K3 ปีที่แล้ว
Java Mouse Events | NetBeans
Pass Data Between Activities in Android
มุมมอง 5493 ปีที่แล้ว
Pass Data Between Activities in Android
How to Open New Activity With Button Click in Android Studio | Java | Android
มุมมอง 5353 ปีที่แล้ว
How to Open New Activity With Button Click in Android Studio | Java | Android
Generate Random Letters of Alphabet | Java
มุมมอง 1.2K3 ปีที่แล้ว
Generate Random Letters of Alphabet | Java
Highlight Text in JTextArea | Java | NetBeans
มุมมอง 4.3K3 ปีที่แล้ว
Highlight Text in JTextArea | Java | NetBeans

ความคิดเห็น

  • @yogamplanets
    @yogamplanets 15 วันที่ผ่านมา

    Without button

    • @programmingoflife2267
      @programmingoflife2267 14 วันที่ผ่านมา

      Javascript

    • @yogamplanets
      @yogamplanets 14 วันที่ผ่านมา

      Yes

    • @programmingoflife2267
      @programmingoflife2267 14 วันที่ผ่านมา

      you can use onchange javascript event

    • @programmingoflife2267
      @programmingoflife2267 14 วันที่ผ่านมา

      <?php // Check if a value is set and store it. if (isset($_POST['dropdown'])) { $selectedValue = $_POST['dropdown']; $_SESSION['selectedValue'] = $selectedValue; } else { // Default value if none is selected yet. $selectedValue = isset($_SESSION['selectedValue']) ? $_SESSION['selectedValue'] : ''; } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>PHP Keep Dropdown Selected Value</title> </head> <body> <!-- Dropdown Form --> <form method="POST" id="dropdownForm"> <label for="dropdown">Select an option:</label> <select name="dropdown" id="dropdown" onchange="this.form.submit()"> <option value="option1" <?php if ($selectedValue === 'option1') echo 'selected'; ?>>Option 1</option> <option value="option2" <?php if ($selectedValue === 'option2') echo 'selected'; ?>>Option 2</option> </select> </form> <!-- Display the selected value --> <p>Selected Value: <?php echo htmlspecialchars($selectedValue); ?></p> </body> </html>

  • @victormoran3147
    @victormoran3147 20 วันที่ผ่านมา

    Thank you so much for this tutorial, I was really upset until I realized the kind of event that I was puttin' was wrong, l I found out my mistake and I programmed the same code with Switch. private void formKeyPressed(java.awt.event.KeyEvent evt) { int x=label.getX(); int y=label.getY(); switch (evt.getKeyCode()) { case KeyEvent.VK_LEFT: label.setLocation(x - 5, y); break; case KeyEvent.VK_RIGHT: label.setLocation(x + 5, y); break; case KeyEvent.VK_UP: label.setLocation(x, y - 5); break; case KeyEvent.VK_DOWN: label.setLocation(x, y + 5); break; default: break; } }

  • @aryapandey6407
    @aryapandey6407 25 วันที่ผ่านมา

    Thank You Bro 💕💕

  • @sawnedcom_one
    @sawnedcom_one หลายเดือนก่อน

    thanks brother

  • @giabaonguyen5641
    @giabaonguyen5641 2 หลายเดือนก่อน

    very helpful, thanks a lot my king

  • @shraddhadubey7114
    @shraddhadubey7114 3 หลายเดือนก่อน

    You are superb ❤😊

  • @ផុនផារ៉ារស្មី-ព1ន
    @ផុនផារ៉ារស្មី-ព1ន 4 หลายเดือนก่อน

    I found it, Thank you so much

  • @chethanarasangi2001
    @chethanarasangi2001 4 หลายเดือนก่อน

    Sorry but I have a question when i get a date from database it says cannot format given object as a number, so what should i do ? 😢

    • @programmingoflife2267
      @programmingoflife2267 4 หลายเดือนก่อน

      You need to convert value into the appropriate data type.

  • @MuhammadUmarKhaskheli-nz7gi
    @MuhammadUmarKhaskheli-nz7gi 4 หลายเดือนก่อน

    text pa foks ki g ya bhai screen me text sahi nahi dekhai da rahi he so pleace make a great video with voice thanks🥰🥰😇😇

  • @DaviSantos-sj9jh
    @DaviSantos-sj9jh 5 หลายเดือนก่อน

    Respect from brazil

  • @IntingCorei7
    @IntingCorei7 5 หลายเดือนก่อน

    Man, this was so useful, it worked perfectly! THANK YOU

  • @theodoreriley1215
    @theodoreriley1215 5 หลายเดือนก่อน

    hope you can reply but i am a begginer in netbeans What category and file type did you use?]

    • @programmingoflife2267
      @programmingoflife2267 5 หลายเดือนก่อน

      Can you explain what you really want to know?

    • @theodoreriley1215
      @theodoreriley1215 5 หลายเดือนก่อน

      @@programmingoflife2267 I just installed net beans and when I open file type it’s making me choose categories and what file type

    • @theodoreriley1215
      @theodoreriley1215 5 หลายเดือนก่อน

      @@programmingoflife2267 can I email you? It’s for a school exam and my teacher is making me do a similar assignment to this video

    • @theodoreriley1215
      @theodoreriley1215 5 หลายเดือนก่อน

      @@programmingoflife2267i i opened netbeans and i clicked new file and its making me choose what file type

  • @HiểnMinh-s5l
    @HiểnMinh-s5l 6 หลายเดือนก่อน

    thank you very much!

  • @trozer571
    @trozer571 8 หลายเดือนก่อน

    bro in this line DefaultTableModel model = (DefaultTableModel)emp.getModel(); its showing me to create a class called emp what should i put there tblemployee is not working i tried the table name as well as database name

  • @EMP_MARC
    @EMP_MARC 8 หลายเดือนก่อน

    How do I design the input Box???

  • @credu121
    @credu121 8 หลายเดือนก่อน

    thank you

  • @jencymaharajan2583
    @jencymaharajan2583 9 หลายเดือนก่อน

    I'm getting output as "on" . Not getting an appropriate value which i mentioned in the code Pls guide me

  • @vithorroder8901
    @vithorroder8901 9 หลายเดือนก่อน

    Thanks man, nice work !!

  • @sathyakarthik4416
    @sathyakarthik4416 10 หลายเดือนก่อน

    Send me the source code

  • @hamdihasbullahnasaruddin6559
    @hamdihasbullahnasaruddin6559 10 หลายเดือนก่อน

    thank u dawgs

  • @seifessam-r9b
    @seifessam-r9b 11 หลายเดือนก่อน

    thank you soo much, very helpful, if it only has a voice it would be much better, keep going man

  • @niece753
    @niece753 11 หลายเดือนก่อน

    hi, can u send me the source code?

  • @user-rxeuzf
    @user-rxeuzf 11 หลายเดือนก่อน

    U ARE THE BESSSSSSSSSSSSST 🥰🥰🥰🥰

  • @user-rxeuzf
    @user-rxeuzf 11 หลายเดือนก่อน

    OMG THAK YOU BRO I LOVE U U SAVED ME

  • @drooks_
    @drooks_ 11 หลายเดือนก่อน

    obrigado amigo voce me ajudou a estudar pra prova do meu professor filho da puta arrombado do caralho obrigado amigo te amo!!

  • @ThiagoHenriqueInocencioLamb
    @ThiagoHenriqueInocencioLamb 11 หลายเดือนก่อน

    OBRIGADO MEU CARO

  • @StakiyoDcosta
    @StakiyoDcosta ปีที่แล้ว

    Can't we set it using background property of JFrame

  • @mounira6297
    @mounira6297 ปีที่แล้ว

    Thank you 🙏❤

  • @onyxtechnologyx
    @onyxtechnologyx ปีที่แล้ว

    haleluuuuuyaaaaaaaaaaaa God is Good amen nw esti amen dude insane video

  • @sohamzoneunderrated5599
    @sohamzoneunderrated5599 ปีที่แล้ว

    fuckkkkkkkkkkkkkkkkkkk this helped a lot

  • @derrickbright9965
    @derrickbright9965 ปีที่แล้ว

    How do you add image instead of colour

  • @diap21
    @diap21 ปีที่แล้ว

    I no longer have errors but it still shows the text without a placeholder

  • @greekrapindustry
    @greekrapindustry ปีที่แล้ว

    ty bro, everything i needed

  • @kristijan5795
    @kristijan5795 ปีที่แล้ว

    i have a question... it doesn't work on my jLabel1 but for some reason it works on jTextField1.. how to fix that?

    • @programmingoflife2267
      @programmingoflife2267 ปีที่แล้ว

      It's supposed to work on jLabel, too.

    • @kristijan5795
      @kristijan5795 ปีที่แล้ว

      yeah but it doesn't... Is there a way to fix that

    • @programmingoflife2267
      @programmingoflife2267 ปีที่แล้ว

      Without looking at it, it is very difficult for me to tell

  • @ryanp.cepada6265
    @ryanp.cepada6265 ปีที่แล้ว

    Thank you so much! God bless you!

  • @sammythelast6361
    @sammythelast6361 ปีที่แล้ว

    Thank you very much ❤❤😭😭😭😭😭😭😭

  • @theamazingtutorial.9019
    @theamazingtutorial.9019 ปีที่แล้ว

    can anyone elaborate the while loop functioning in this code??

  • @yurawitsomboonwit2370
    @yurawitsomboonwit2370 ปีที่แล้ว

    thank you. God bless you.

  • @toff2.024
    @toff2.024 ปีที่แล้ว

    thank you!

  • @toff2.024
    @toff2.024 ปีที่แล้ว

    exactly what i was looking for thank you!

  • @toff2.024
    @toff2.024 ปีที่แล้ว

    you're very helpful thank you!!

  • @prabandanu
    @prabandanu ปีที่แล้ว

    Nice Thanks bro

  • @nihithvlogs
    @nihithvlogs ปีที่แล้ว

    What is the laravel version you are using? Because I am getting error saying "undefined color_list"

  • @rusolaboasbeh2263
    @rusolaboasbeh2263 ปีที่แล้ว

    Thank you sooooooo much .. <?php echo " love you <3" ?>

  • @mai-xf5tn
    @mai-xf5tn ปีที่แล้ว

    can you change border thickness?

    • @programmingoflife2267
      @programmingoflife2267 ปีที่แล้ว

      Yes

    • @mai-xf5tn
      @mai-xf5tn ปีที่แล้ว

      @@programmingoflife2267 can you teach me how

    • @programmingoflife2267
      @programmingoflife2267 ปีที่แล้ว

      ​@@mai-xf5tn You can change the border thickness using Java code. Include this code in the JFrame constructor method in the code editor. create a border using java BorderFactory classs : Border border = BorderFactory.createLineBorder(Color.BLUE, 3); refer your JTextField name and call setBorder() method: JTextField.setBorder(border);

  • @igorsantos95
    @igorsantos95 ปีที่แล้ว

    Can we make the components inside this JFrame less transparent? I want to create a frame with a transparent background but clear labels inside it.

  • @ryanp.cepada6265
    @ryanp.cepada6265 ปีที่แล้ว

    Saved me! Thank you!

  • @patataman5067
    @patataman5067 ปีที่แล้ว

    Hi!, I get the error Cannot invoke "javax.swing.JTextField.getFont()" because "textField" is null when running the method

  • @andres_campo
    @andres_campo ปีที่แล้ว

    Muchísimas gracias, necesitaba exponer un color específico.

  • @titoremix2011
    @titoremix2011 ปีที่แล้ว

    Man, it helped me a lot, thanku!