Posts

Showing posts from 2021

Creating a Windows Form in Microsoft Visual Studio

 Microsoft Visual Studio is different from Microsoft Visual Studio Code. The former is for development of .Net applications while the latter is for development of general/different applications. In the video below, you will be taught how to create a windows form (windows form application) in Microsoft Visual Studio. You will also be taught on understanding the IDE GUI. Watch other parts to fully understand.  Part 1 - https://youtu.be/9_q1B4XYXog  Part 2 - https://youtu.be/6XZTmCXu_2Q  Download Tutorial File #HamplusTech  #HamplusHub  #MSVisualStudio

Creating A Database

 Microsoft Access is a database software and it can be used as a basic database for file organization and management. In the videos links here, you will learn how to create access objects like Table, Query and Report. The Videos Watch Pt.1 - https://youtu.be/RZy3BEEU3O4 Watch Pt. 2 - https://youtu.be/N8-Z4xAhczk Watch Pt. 3 - https://youtu.be/Pgs6WFV-m_Q Watch Pt. 4 - https://youtu.be/bTEUQJLiHE4 The access file can be downloaded from this link below: Download Access File In the file that you just download, ensure that you visit the two sheets and execute the instructions. Thanks!

Startup Laws - Part 1

Image
Use the law properly, not just when there is an issue!! What this video and learn the laws that surrounds business and start-ups. https://youtu.be/J1HfD68b39I

Introduction to Python

Image
Introduction to Python Online Class The link for the scheduled online class is below: https://youtu.be/QcoDzcoQxYY Please connect on Thursday, 20th May, 2021 by 12:30 WAT. Remember to subscribe to our channel and follow us on social medias using @HamplusHub . Thanks.

Data Science in Ms Excel?

Image
Data Science in Ms Excel? https://youtu.be/Diuid8JNsPk discover the answer in this video and appreciate your skills.

SUBTOTAL in Microsoft Excel - Pt. 2 - [Using SUMIFS]

Image
SUBTOTAL & SUMIFS in Microsoft Excel File - https://bit.ly/3uTFmV9 Pt.1 - https://youtu.be/MkQUJaEE9GA Pt. 2a - https://youtu.be/z_fneX5KHB4 Pt. 2 - https://youtu.be/Qz8K5Eq1fZE Pt. 3 - https://youtu.be/dxncTWBso1Y @HamplusHub @MicrosoftAfrica #MicrosoftExcel #HamplusTech #HamplusHub #REACTDev

SUBTOTAL in Microsoft Excel - Pt. 1

Image
Lear how to do you subtotal analysis in your data or dataset. Using same Idea, you can compute your subaverage, count, min and max. Microsoft Excel can be used for many things and little do people know this. Below are videos teaching how to use the subtotal and sumifs function of Ms Excel. Also, a little explanation on: Absolute referencing (Video 2) Excel Table (Video 3) were covered in this video. File Link - https://bit.ly/3uTFmV9 or https://hamplustech.blogspot.com/2021/04/subtotal-and-sumifs-function-in.html Watch Pt.1 - https://youtu.be/MkQUJaEE9GA Watch Pt. 2a - https://youtu.be/z_fneX5KHB4 Watch Pt. 2 - https://youtu.be/Qz8K5Eq1fZE Watch Pt. 3 - https://youtu.be/dxncTWBso1Y @HamplusHub #Microsoft Excel #HamplusTech #HamplusHub #REACTDev

Subtotal in Ms Excel - Pt 2 [Part]

Image
Lear how to do you subtotal analysis in your data or dataset. Using same Idea, you can compute your subaverage, count, min and max. Microsoft Excel can be used for many things and little do people know this. Below are videos teaching how to use the subtotal and sumifs function of Ms Excel. Also, a little explanation on: Absolute referencing (Video 2) Excel Table (Video 3) were covered in this video. File Link - https://bit.ly/3uTFmV9 or https://hamplustech.blogspot.com/2021/04/subtotal-and-sumifs-function-in.html Watch Pt.1 - https://youtu.be/MkQUJaEE9GA Watch Pt. 2a - https://youtu.be/z_fneX5KHB4 Watch Pt. 2 - https://youtu.be/Qz8K5Eq1fZE Watch Pt. 3 - https://youtu.be/dxncTWBso1Y @HamplusHub #Microsoft Excel #HamplusTech #HamplusHub #REACTDev

Subtotal and Sumifs Function in Microsoft Excel

Microsoft Excel can be used for many things and little do people know this. Below are videos teaching how to use the subtotal and sumifs function of Ms Excel. Also, a little explanation on: Absolute referencing (Video 2) Excel Table (Video 3) were covered in this video. The Videos Watch Pt.1 - https://youtu.be/MkQUJaEE9GA Watch Pt. 2a - https://youtu.be/z_fneX5KHB4 Watch Pt. 2 - https://youtu.be/Qz8K5Eq1fZE Watch Pt. 3 - https://youtu.be/dxncTWBso1Y The excel file can be downloaded from this link below: Download Excel File In the file that you just download, ensure that you visit the two sheets and execute the instructions. Thanks!

Data Data Manipulation - Pt. 2

Image
Data Data Manipulation - Pt. 2 Learn how to use CHOOSE and TEXT formula in Microsoft Excel. #HamplusTech #MicrosoftExcel #Microsoft @HamplusHub @HamplusTech @REACTDev File Link - https://hamplustech.blogspot.com/2021/04/date-data-manipulation-in-excel.html

Data Data Manipulation - Pt. 1

Image
Learn how to manipulate date data in Microsoft Excel. #HamplusTech #Microsoft Excel @HamplusHub @HamplusTech @REACTDev File Link - https://hamplustech.blogspot.com/2021/04/date-data-manipulation-in-excel.html

Date Data Manipulation in Excel

Learn how to manipulate date data in Microsoft Excel. #HamplusTech #Microsoft Excel @HamplusHub @HamplusTech @REACTDev   File Link - https://drive.google.com/file/d/1J50tJppFcU0mXMm0-emvbgFL88-6l06D/view?usp=sharing  Video Link 1 - https://youtu.be/Z63ZP6PTiNQ Video Link 2 - https://youtu.be/EO7qisELfp4

Standard Deviation in SPSS

Image
Learn standard deviation using SPSS, Vey easy, fast and comprehensive way to learn. https://youtu.be/HpkXFjRp4bw @HamplusHub #HamplusTech #HamplusHub #ReactDev

Simple Data Visualization - Python

Image
 Sample Pix Python Code import numpy as np import matplotlib.pyplot as plt x = np.arange(1,6,1) y = np.linspace(1,5,5) z = np.logspace(1,2,5) plt.plot(x,y,"-or") plt.plot(x,z,"-*g") plt.xlabel("Natural Number") plt.ylabel("Linear & Log Space") plt.legend(["Linear Space", "Log Space"]) plt.show()