How to remove Password from VBA Project in Excel
Step-by-step procedures For XLSM files For XLS files You might also be interested in… External references
Step-by-step procedures For XLSM files For XLS files You might also be interested in… External references
This post is about how to extract data from Power BI to generate a report. So far, I have read of two options. Unfortunately, I have not tested myself none of them. 1. Use DAX Studio tool DAX Studio is…
BlueStacks is an application for virtualization of operating systems like Android. BlueStacks can be installed on: Operating Systems that can be emulated: BlueStacks link: Support on enable virtualization on your computer: You might also be interested in…
This post lists some web browsers based on open source Chromium List of Chromium-based Web Browsers List of Chromium-based Web Browsers featured on this post: Chromium Google Chrome Chrome Canary Edge Opera Brave Vivaldi Browser Bromite Iridium Browser Blisk Colibri…
This post lists some free UML tools for Mac OS. List of free UML Tools for Mac OS X List of free UML tools for Mac OS X below: Virtual Paradigm CE (Community Edition) yEd Visual Paradigm CE (Community Edition)…
Images can be displayed in Java Swing using object JLabel. This is the partial code: JLabel label = new JLabel(); try { BufferedImage img = ImageIO.read(new File(IMG_FILES_PATH + IMG_FILENAME)); ImageIcon icon = new ImageIcon(img); label.setIcon(icon); } catch (IOException ex) {…
I programmed my own function, based on other examples: /** * Method that scale an image (BufferedImage) into the specified dimensions * @param sbi Source image * @param imageType Image type among BufferedImage.TYPE_… constants (example: TYPE_INT_ARGB) * @param dWidth Image…
This post explains how to create a JAR (Java ARchive) file for a Java project. Steps to create a JAR file for a Java project The steps to create a JAR file for a Java project are: Ensure your project…
This solution is only available from JDK 9. In other to set the JDK version on NetBeans, right click on Project > “Properties” >> “Sources” > “Source/Binary format”; and “Libraries” > “Java Platform”. package main; import javax.swing.JFrame; import javax.swing.JLabel; import…
This solution works only for .wav files. Source code: public void playSound() { try { AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File(“”).getAbsoluteFile()); Clip clip = AudioSystem.getClip(); clip.open(audioInputStream); clip.start(); } catch(Exception ex) { System.out.println(“Error with playing sound.”); ex.printStackTrace(); } } External References “Playing…