Get VBA code to sort a listview column header on click. Not only default column, any column in listview can be sorted, with a click on column header.
VBA Userform – Escape key to Close – Unload form
Learn how to close a vba userform with escape key. Map command button to Exit or Close a Userform with Escape key.
VBA to open or save Word document Protected or Encrypted with password
Use this VBA code to password protect or unprotect the Word document while openening the file. This macro also handles readonly protection, Write protection etc., right within the code itself.
Convert Python to Exe – Easy Compile in 2 Mins
Convert Python to Exe file using this compiler module with these simple steps. It takes roughly 2 mins to compile a Py to Exe with PyInstaller
Daemon thread in Java
Daemon thread in java: Daemon thread is a low priority thread providing services to the user thread. This thread runs in the background to perform tasks such as garbage collection. Major Properties: It cannot prevent the JVM from exiting when all the user threads finish their execution. JVM terminates itself […]
How To Retrieve Data From Database in PHP Using MYSQL
Nowadays every websites is dynamic in nature. Websites has the capability to To retrieve data from database in PHP Using MYSQL from a remote server. It fetches the required data when needed from the server and serves the data to the user. Websites commonly use PHP to interact with the […]
Stacks In Java
Stack is a linear data structure ( an abstract data type ) with a fixed capacity. Linear data structure which is simple to use and allows adding and removing elements in a particular order i.e. a last-in-first-out (LIFO) order. Every element enters the stack from the top and leaves from the […]
NETWORK PROGRAMMING
Network Programming The term network programming refers to writing programs that execute across multiple devices (computers), in which the devices are all connected to each other using a network. Such programs enable processes to communicate with each other across a network. Communication over a network takes place through protocols like […]
Overview of Data Communications and Networking
Introduction The development of personal computers brought about tremendous changes in business, industries, science & education. Business today relies on computer networks and the internet. Mails, documents, files are reached to our computers almost instantaneously from any part of the world. Exchange of Data between two devices via some form […]
Network Programming with Java Sockets
Network Programming with Java Sockets The java.net package of the J2SE API contains a collection of classes and interfaces that provide the low-level communication details required for network programming. At the core of Java’s networking support is the concept of a socket. A socket is a software endpoint that establishes […]