Posts

The uses and features of visual studio.

Image
  The applications of visual studios code According to Microsoft visual studio works with web development based programming languages, which is unlike its sister-app visual studios code which is used for object oriented coding languages. note: there is a difference between visual studios and visual studios code despite their similar names. another way to tell these two apart is by looking at their logos! The visual studios logo The visual studios code logo Languages compatible with visual studio HTML - A programming language very essential for website building.   CSS - A mark-up language generally used to customize the design the appearance of the output of code, This is compatible with HTML. JAVASCRIPT - This mark-up language is used to add functionality to code. This is also compatible with HTML. JSON editors. LESS PHP PYTHON C# with ASP.NET (The this blog is about aka maui.net with c#) source:  https://visualstudio.microsoft.com/vs/features/web/languages/#:~:...

Installing visual studio 2022

Image
Getting started: To begin go to Microsoft visual studio website and download the latest version. Make sure to have a stable and strong internet connection to make this process fast and safe for your PC or la ptop. Click the following link to go to the necessary website. Microsoft visual studios website link When you go to the visual studios downloads website click the button that says free download if you do not want to pay a subscription for the full version, this is helpful for students and people who are coding as a hobby! Note that when you click the free download button the highlighted file "VisualStudioStartup...exe" will download. Step 2 opening  "VisualStudioStartup...exe" Click the .exe file to open it, a pop up named user access control should pop up and ask for permissions to make changes to your device. Click yes to continue with the install process. Another popup happens immediately after click continue again and it will start downloading.  Once the dow...

How to program an app using coding languages

Image
Welcome to my tutorial blog! Blog Intentions This blog will cover the in-depth process of making an app on visual studio version 2022 step-by-step. This should take no longer than approximately a half-hour to an hour of your time to follow this process. Table of Contents The install process of visual studio 2022. The multiple uses of visual studio as a coding tool. How to open a xaml.net template along with a c# file. How to debug and run on your android device. Coding in xaml  tutorial A Review of Microsoft's Teams and Sway software Next Page

A Review of Microsoft's Teams and Sway software

Image
 A Review of Microsoft's Teams and Sway software Microsoft Teams App: The purpose of teams software is to exist as a method of contacting coworkers and classmates in a professional manner. Features(pros) Teams has a multitude of great features  Group messaging and calling. Screen-sharing / Screen-casting - This is when you can share a live feed of your devices screen for everyone in a video call to see. The Calendar - Helps organize meetings can notify you of a meeting 5 minutes before it happens. File sharing and saving - On the main toolbar there is a button called files, this shows all of the files in any and all of your conversations done through the teams app. Apps - Microsoft is compatible to run other apps like word documents, OneNote, YouTube and Microsoft Forms. Mentions - Putting an @ Infront of someone's email will send them a notification as an extra measure of grabbing their attention. Secure communication. The User interface(pros) The User interface is ...

Coding in xaml tutorial

  Coding in xaml  tutorial XAML: Xaml is a coding language using a tag format. Which means lines of code will use tags. There are two types of formats for tags open and closing used separately and the other type which opens and closes in the same tag . Example of opening and closing separately: <StackLayout></ StackLayout >  Example of opening and closing in the one tag: <label /> depending on the type of tag has a different kind of use.   The general layout of a mainPage.xaml file: <?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"              xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"              x:Class="MauiApp1.MainPage">     <ScrollView>              <StackLayout>                </ StackLayo...

How to debug and run on your android device.

 How to debug and run on your android device. This Process should allow you to download code from visual studio on your laptop to run on your phone essentially making the app.  Note: This tutorial blog is based on android devices and also that Code with errors in it cannot be transferred to a mobile device! Step One To start you must unlock developer mode settings on your phone. Every device is different but to do this generally you enter settings an you go into about phone and click the text displaying the type of model of phone you have repeatedly. For my phone which is a xiaomi I had to click it 7 times. Step Two After you enable developer options go to the search bar in settings your and then type developer options, select it and scroll until you see "USB debugging" and toggle it on. Then use your phone charger lead to connect the USB end of the lead to your laptop and your phone charger end of the lead to your phone. After establishing the mobile device is connected ...

How to open a xaml.net template along with a c# file.

Image
  How to open a xaml.net template along with a c# file. Step One: To start launch visual studio, then press the button create a new project, Then it will take you to the projects template page. Type in the search bar "maui". Select the .NET MAUI APP template and the next time you create a project you can click the the pin button to open it easier next time! Step Two: Next Make a file to put this project into and find it when you click the "..." button under location. Press select folder, then next and create. Step Three Now that you have opened the project there is a template in use that already has a few features to showcase, to run this click the green button that says "windows machine". This will run the project code as shown! Example of the project code running: To begin from coding from scratch you will have to delete some of the template of the code in place currently. Note: some code is important either follow my guide to deleting the template or ke...