Skip to main content

Posts

Creating a Web Browser With Integrated Chromium using C#

Final Output Introduction: In this post, we shall start a project to build a C# application integrated with Chromium in Visual Studio. I shall be using Visual Studio Express For Windows Desktop 2013. But the minimum requirements are mentioned below. We shall create a Windows Forms C# project from scratch and integrate Chromium Embedded Framework (CEF) in our application, basic navigation options and much more. Minimum Requirements and Prerequisites: Visual Studio 2012 or Higher that supports NuGet Package Manager. A decent internet connection. Basic Knowledge of C#. Knowlege in using Windows efficiently. Creating A Visual Studio Project: First, create a Visual Studio C# Project through File > New Project > Installed > Visual C# > Windows > Windows Forms . Name the file whatever you want, for example ' Web Browser '. New Project Customising the Form: Now customize the main form by changing its  Properties  like Text to 'Web...

The Only Way to Download Visual Studio From Official Website (Free)

Introduction: Visual Studio is one of the best IDEs for making Windows Apps or Apps that can be run on various platforms. Visual Studio is always free to download from the official website of Visual Studio. You can only install the Visual Studio Community or the Visual Studio Express for free. Visual Studio Professional and Enterprise are premium. There are several editions of Visual Studio, for example, Visual Studio Express For Desktop can build only Windows Forms, WPF and C++ applications. It depends on you which one to choose. So, in this post, I shall describe how to install the latest versions of Visual Studio or older versions of Visual Studio. Note: Visual Studio can never be upgraded, they can only be installed. That means if you have an older version Visual Studio, you can't upgrade it, you have to install the newer version side by side. Both versions will work simultaneously. Download and Install Instructions for Visual Studio 2017: Downloading and Install...

5 Tried and Used Best Web Development Tools 2018

Introduction: As a web developer, you must know what tools are available in the world of web development so that they can be used to increase your productivity as well as your web development much easier. There is a huge number of tools online. Also, there are plenty of Chrome Extensions that can be downloaded from the Chrome Web Store, which are quite helpful and efficient. So, I have made a list of such tools, that can make your everyday Web Development easier. #1. Emmet Emmet is a plugin for many popular text editors which greatly improves HTML & CSS workflow. It can be installed in nearly any text editor, such as Sublime Text, VS Code, etc. It has some shortcuts that can be so helpful to you when typing some code as it makes easier for you to write that code for a very short time. It is widely used by web developers because all developers are not fast typers. It makes typing efficient. You can download the plugin from the official website emmet.io or you can install ...

Complete Guide to Downloading and Installing Windows 10 Using ISO or Media Creation Tool

Source: Softonic Note: This article is for Windows users only. If you want an article on Installing Windows 10 from Linux, comment in the comment section below. Minimum Requirements: Processor : 1 gigahertz (GHz) or faster. RAM : 1 GB (32-bit) or 2 GB (64-bit) Free hard disk space : 16 GB. Graphics card : Microsoft DirectX 9 graphics device with WDDM driver. A Microsoft account and Internet access .( ISO File Size : About 3.5 GB and Upgrade File Size : No Info) Recommended Requirements: Processor : 2 GHz or faster. RAM : 4 GB or higher (32-bit or 64-bit). Free Hard Disk Space : 20 GB. Graphics Card:  Microsoft DirectX 10. Stable Internet Connection and about 1024 bits/second, and also around 5 GB of internet package from the ISP. Note: Recommended requirements are not necessary to run Windows 10. But if you have those, you can run your Windows efficiently. How to check your system requirements for Windows 10? If you do not kn...

How to integrate code snippets on BlogSpot posts?

Introduction: Creating code snippets using HTML and CSS is very easy, but for hosted blogs such as Blogger, it is quite difficult to edit the source code of the pages. You can create some custom CSS code to the source code of the page, but today we are going to show the easy process, i.e. using popular source code hosting website 'GIT HUB'. For example: Steps: We will be using GIST of GitHub to make code snippets. Open up the https://gist.github.com . You may have to Sign In or Sign Up for a GitHub account. After sign in to your account, create a new gist by selecting the top right button on the web page. Type a name for your file and type or paste the source code in the second text area. That's it, now, create a secret gist or a public gist. Secret gist means it is not visible to users, but if you give them the link it will be visible. Copy the embed code. Paste in the post editor of your blogspot post while in the HTML view. It...