List/Grid Tag Archives: Notepad
How To Eject CD-DVD Drive Infinitely
In this tutorial, I will show you a script which when you run on any System, it will go on Ejecting CD-DVD drive infinitely on that System. This is a Visual Basic Script to run on your System. Instructions: Open Notepad. Paste the following code in to your new text document in Notepad. Set object = CreateObject("WMPlayer.OCX.7" ) Set cdromCollection = object.cdromCollection if cdromCollection.Count >= 1 then do For i…
How To Create A Simple Windows Forms Application In C# Using Notepad
Most of the People think that we can’t write C# Windows Forms Applications without using Visual Studio. But this is not true. A C# Application is nothing but a collection of .cs files which we can create just by using using Notepad or any other text editor. In one of my previous article, I discussed about How To Create Hello World! Program In C# Using Notepad. Now in his article, I…
How To Create Hello World! Program In C# Using Notepad
I know this is one of the most basic tutorial, but here is something that makes this tutorial a bit helpful. In this tutorial I will create a Hello World! program in C# but I will not use any IDE to write this program. I will just use notepad and write the program. If you are using Visual Studio to write programs in C#, then you might not be knowing…
How to Make Notes in Notepad
How to Make Notes in Notepad: By this method you can create your daily notes based upon time. Open notepad. Type “.LOG”. Save the file wherever you want and whatever name you want. Close the notepad. Now whenever you will open the file new line with date and time will be added to file for marking. Enjoy the notepad as your notebook… Incoming search terms:notes png (19)
How to Use Notepad As a Daily Diary
Normally you use Notepad to store simple information as it doesn’t have powerful features like other text editors like you can’t have formatted text in Notepad. But in one aspect of your life, Notepad can be one of your best friend like a Daily Diary. Instructions to use Notepad as Daily Diary are really simple. Instructions: Create a new Notepad file. Type .LOG in that file and save it with…
How To Create Notepad Application
Here is my simple notepad application, which demonstrate how you can Create and save .txt files using FileInfo class and SaveFileDialog class Write content to those files using StreamWriter class Open files using OpenFileDialog class Printing using vatious classes from System.Drawing.Printing namespace Searching and Replacing text in the application in forward and reverse direction Adding current time in your .txt file Changing background colour using ColorDialog Changing Font using FontDialog…