This article will describe how to access a windows drive in ubuntu operating system installed in virtual box machine. Shut down the virtual machine. From the virtual Machine Menu,Go to Machine->settings->Shared Folders. Click on Machine Folders -> Blue Folder Icon with Plus Sign on the right (Add Folder Icon) Click on folder path -> Choose Continue Reading …
Author: kay
WordPress Excerpt Showing First image of Post as Thumbnail if exists
In my own site I wanted a thumbnail to be shown in the excerpt with the thumbnail images being picked up from the first image of the post.It was also desired that no default image should be shown when the post does not have an image.So here we are avoiding a default image display. to Continue Reading …
How to get windows firewall status programmatically in vb.net
I am going to tell you how to get windows firewall status programmatically alongwith the example source code. To achieve this the netsh command is executed and its output is captured. For this the process ExecuteProcessSilentlyAndCaptureOutput is used To see the code for the ExecuteProcessSilentlyAndCaptureOutput first read the following article Execute Process Source Code Get Continue Reading …
Setup a new domain name to work with web host
If you have just purchased a new domain name name and you want to setup with the web hosting server then this article will tell you how to configure and setup your new domain name to work with your hosting server as also the settings required to be done at your hosting server. When you Continue Reading …
Design java swing application with multiple windows
This article will describe how to design a java swing application with multiple windows.The multiple windows will be created with the help of multiple overlapping jPanels of same size within the main jFrame.The example source code will fully illustrate this.You will thus be able to invoke multiple gui windows on click event, where actually one Continue Reading …
Adding widget areas in wordpress header
To add a header widget areas,first in your theme’s function.php add the following code to register a sidebar. This is assuming that you want to add 2 header widgets Next you will need to insert the following code in your theme’s header.php above or below the navigation menu as you prefer where the widgets should Continue Reading …
WordPress : Add Text or Content To Bottom Of Post without plugin programmatically
This article will describe in detail adding text or any other content at the bottom of all posts programatically at run time without any changes to the wordpress database.The article will discuss 7 different requirements all done without a plugin through theme’s functions.php file as follows :- Adding simple text or any content as Ads Continue Reading …
Set windows look and feel in java swing application
Setting windows look and feel in a java swing application is easy.This article will explain with the required source code ,how to set windows look and feel for your java swing application. Go to the class which has the main function. Comment the code for the existing look and feel and add the following code Continue Reading …