Wi-Fi or Wireless Fidelity has changed the way Internet is accessed all over the world.This High Speed Wireless technology has allowed people around the world communicate via Internet. But, now scientists from Estonia developed a technology that is 100 times faster than Wi-Fi. Seems unbelievable, right?. A company named Velmenni, based in Tallinn, Estonia, has […]
When you are all set to start a small business, you always end up looking for the chances to save money. But no business can run without Technology. You need computers, smart phones, file storage, a website, and a whole host of other tech assets. More importantly, you need software’s that you use for business […]
You can track the deleted folders in Windows Application by using FileSystemWatcher Class. 1) First add System.IO.FileSystem.Watcher.dll library. 2) Next Write the code as shown below. 3) If you need to track all the subdirectories which are deleted. The below code is important. fileSystemWatcher.IncludeSubdirectories = true; 4) Write the source code as […]
In this post you can see how to select all the items in checkedlistbox using c#.net Please check on the image As in the image, you add checkbox and checkedlistbox to the windows form and write code in CheckedChanged event of checkbox How to change default icon in […]
In this post you can see two different ways to fix size of window form. Please click on the image 1- Set FormBorderStyle property to FixedSingle or FixedDialog. 2- Set MaximumSize -width and height property to fix the size of form. […]
The following code illustrates on how to check if directory exists in specific path, if not then create directory. Here I show that how to create the directory with simple condition. private void TestDirectory() { string pathname = “C:\\Myfolder”; if(!Directory.Exists(pathname)) { Directory.CreateDirectory(pathname); } }
There is no longer a need to hire expensive web design companies to help you create an online presence. The internet is now awash with Website Builders that give you the platform to build and maintain a website on your own. No matter what the skill level or technical know-how we review all of the […]
Many of us have faced problem in our mobile battery like running out of charge may be in the middle of the day. We always end up looking for a solution by finding some place to charge it immediately. Especially while traveling to some far distant places, like past few days I had been to […]
If you are a blogger or a content writer, then no doubt you have a sensible connection with the images. For a blog to look visually good, to be more informative , images are necessary. Some blog contents are simple which can be written without the use of images. But some blogs need images to […]
For a common man, the things in the world is becoming more & more expensive. He is feeling difficult to deal with the things surrounding him. So, there comes a situation where he has to find a way to save some bucks in his daily needs. Here I show the tips to save some […]