Posts

Showing posts from February, 2019

CREATE LOGIN WINDOW IN C# STEP BY STEP

Image
CREATE LOGIN WINDOW IN C# STEP BY STEP A windows form application is an application, which is designed to run on a computer. It will not run on a web browser because then it becomes a web application. This Tutorial will focus on how we can create Windows-based applications. We will also learn some basics on how to work with the various elements of Windows applications. Step 1 Open any version of Visual Studio you have installed in your machine; I have Visual Studio  10. When open it will look like this:  Step 2 Click on the middle tab of the new project. When you click it will look like this: Step 3 In Installed Templates the first option is Visual C# language and then select Windows Forms application. In the following see the Name label and already show the default name WindowFormsApplication7. You can change the name as you wish or as per program creation you can mention and click and OK. Step 4 After clicking OK a simple Windows Forms form will look like:...
Image
How to make a simple calculator in JAVA using swing Java Swing is a GUI (graphical user Interface) widget toolkit for Java. Java Swing is a part of Oracle’s Java foundation classes. Java Swing is an API for providing graphical user interface elements to Java Programs. A swing was created to provide more powerful and flexible components than Java AWT (Abstract Window Toolkit). In this article, we will use Java Swing components to create a simple calculator with only +, -, /, * operations. For detailed explanation click on the link which is given below: https://youtu.be/wxPWr2yUq5I For Source Code click  here To download compiler click  here   Thanks