X



Visual Basic.Net
List of Reserve Words in Visual Basic.Net by Nuelson Penuel(Friday, August 4, 2023) | Visual Basic.Net
In VB.NET, keywords are reserved words that have a specific meaning and functionality within the language. These keywords cannot be used as variable n

Replies(0) | Views(1045)| Read more...

String.Equals, String.Replace, and String.Insert Methods in Visual Basic by Nuelson Penuel(Sunday, September 13, 2020) | Visual Basic.Net
In this post, am going to show you String.Equals,String.Replace, and String.Insert Methods in Visual Basic

Replies(0) | Views(2534)| Read more...

Simple VB.Net Calculator by Nuelson Penuel(Sunday, September 13, 2020) | Visual Basic.Net
Hello, in this tutorial, am going to show you how to develop vb.net calculator in just few lines of code. Attachment is available for download.

Replies(0) | Views(2826)| Read more...

Understanding Visual Basic Substring and Examples by Nuelson Penuel(Friday, September 11, 2020) | Visual Basic.Net
In this article, am going to discuss with you everything you need to know about Visual Basic Substring as well as give you detailed examples

Replies(0) | Views(2094)| Read more...

Visual Basic Split Function Detailed Example by Nuelson Penuel(Thursday, September 10, 2020) | Visual Basic.Net
The Split() function in Visual Basic is used to extract a substrings from a given string.

Replies(0) | Views(2374)| Read more...

What is an Array, Fixed-Size Arrays, Dynamic Arrays, Erasing an Array by Nuelson Penuel(Thursday, September 10, 2020) | Visual Basic.Net
In this post, am going to teach you What is an Array?, How to Declare and Initialize an Array, Fixed-Size Arrays, Dynamic Arrays, Retrieving Array's

Replies(0) | Views(1588)| Read more...

Visual Basic Math Functions:Abs, Log, Rnd, Int, Exp, Fix Made Easy by Nuelson Penuel(Wednesday, September 9, 2020) | Visual Basic.Net
In this article you will learn Visual Basic Math and Non-math functions: Abs function, Exp function, Fix function, Int function, Log function, Rnd fu

Replies(0) | Views(2235)| Read more...

Visual Basic MsgBox, MessageBox and InputBox Made Easy by Nuelson Penuel(Wednesday, September 9, 2020) | Visual Basic.Net
In this article, am going to show you what MsgBox, MessageBox.Show is, purpose of MsgBox and InputBox as well as difference between MsgBox and InputBo

Replies(0) | Views(4419)| Read more...

What is Visual Basic Control Statement and Examples by Nuelson Penuel(Thursday, August 3, 2023) | Visual Basic.Net
In this article am going to explain Visual Basic control statement such as For Next Loop, Do While Loop and Do Until Loop, While Wend Loop,For Each Next Loop and Examples

Replies(0) | Views(1476)| Read more...

Visual Basic Control Statements:If Then, If Then Else, If Then ElseIf, Select Case and Nested Select Case statement by Nuelson Penuel(Tuesday, September 8, 2020) | Visual Basic.Net
In Visual Basic, we have If-Then Statement, If-Then Else Statement, If-Then ElseIf Statement, Select Case Statement, Nested Select Case Statements

Replies(0) | Views(1874)| Read more...

Python
Python Tutorial Day 4: Working With Operators. by Isaiah Ozadhe(Thursday, September 3, 2020) | Python
This part in out pyhton series discusses how to work with variables.

Replies(0) | Views(1352)| Read more...

How To Code Directly On The Python Interpreter by Isaiah Ozadhe(Saturday, August 29, 2020) | Python
This is a guide on how to intall the python interpreter and write code directly on it

Replies(0) | Views(1258)| Read more...

Python Tutorial Day 3: Working With User Inputs And External Files by Isaiah Ozadhe(Thursday, August 27, 2020) | Python
On day 3 of our python series we look at working with data entered by users, reading from and writing to external files

Replies(0) | Views(1332)| Read more...

8 Questions About Python Answered In Very Simple Terms by Isaiah Ozadhe(Friday, August 21, 2020) | Python
Here are a few things you should know about Python

Replies(0) | Views(1169)| Read more...

Python Tutorial Day 2: Working With Variables by Isaiah Ozadhe(Wednesday, August 19, 2020) | Python
On out Python series, today we talk about working with variables

Replies(0) | Views(1277)| Read more...

Python Programming Language: Where The Name Came From. by Isaiah Ozadhe(Saturday, August 8, 2020) | Python
When we hear python, what generally comes to mind is the snakes but the name has nothing to do with that as this article unveils.

Replies(0) | Views(1778)| Read more...

Python Tutorial Day 1: Introduction And Setting Up Your Editor For Development by Isaiah Ozadhe(Friday, August 7, 2020) | Python
Introduction to python and setting up visual studio code for development.

Replies(0) | Views(1995)| Read more...

Javascript
How to Use JavaScript Ternary Operator and its Examples by Nuelson Penuel(Thursday, August 3, 2023) | Javascript
The JavaScript ternary operator is a shorthand syntax for writing if-else statements. It allows you to write a conditional expression in a concise and

Replies(0) | Views(955)| Read more...

What is JavaScript typeof Operator and its Examples by Nuelson Penuel(Thursday, August 3, 2023) | Javascript
The `typeof` operator in JavaScript is used to determine the type of a variable or expression. It returns a string that represents the data type.

Replies(0) | Views(913)| Read more...

How to Split String in JavaScript: JavaScript Split Method by Nuelson Penuel(Wednesday, August 2, 2023) | Javascript
In JavaScript, the split() method is used to split a string into an array of substrings based on a specified delimiter. It returns the array of substr

Replies(0) | Views(1233)| Read more...

What is JavaScript return Statement by Nuelson Penuel(Wednesday, August 2, 2023) | Javascript
In JavaScript, the return statement is used to specify the value that a function should return. It is used within a function to exit the function exec

Replies(0) | Views(717)| Read more...

What is JavaScript reset() Method by Nuelson Penuel(Wednesday, August 2, 2023) | Javascript
In JavaScript, the reset() method is a built-in function that is used to reset or clear all the form elements in an HTML form. It clears the user-inpu

Replies(0) | Views(1254)| Read more...

JavaScript removeAttribute() Method and Examples by Nuelson Penuel(Wednesday, August 2, 2023) | Javascript
The `removeAttribute()` method in JavaScript is used to remove a specified attribute from an HTML element. It allows you to remove any attribute, such

Replies(0) | Views(939)| Read more...

JavaScript prompt() Dialog Box and How to Use by Nuelson Penuel(Wednesday, August 2, 2023) | Javascript
The `prompt()` dialog box is a feature in JavaScript that allows for user interaction by displaying a small dialog box with a message and allowing the

Replies(0) | Views(1229)| Read more...

How to Hide and Show Elements in JavaScript by Nuelson Penuel(Tuesday, August 1, 2023) | Javascript
Element hiding in JavaScript refers to the process of making an HTML element, such as a div, image, or paragraph, invisible or hidden from the user's

Replies(0) | Views(1060)| Read more...

Understanding getAttribute() Method in JavaScript by Nuelson Penuel(Monday, July 31, 2023) | Javascript
The `getAttribute()` method in JavaScript is used to retrieve the value of a specified attribute on an element.

Replies(0) | Views(827)| Read more...

What is JavaScript continue Statement With Examples by Nuelson Penuel(Monday, July 31, 2023) | Javascript
The `continue` statement is a control statement in JavaScript that is used to skip the current iteration of a loop, such as `for` or `while`, and move

Replies(0) | Views(830)| Read more...

HTML
Day 1-Learning HTML web design free course by Admin(Sunday, July 19, 2020) | HTML
In this free 14 days course web design tutorial or html tutorial, you will master or learn html web design using HTML, Javascript and CSS.

Replies(0) | Views(2274)| Read more...

ASP.Net
What is ASP.NET Application Life Cycle and ASP.Net Page Life Cycle by Nuelson Penuel(Wednesday, August 11, 2021) | ASP.Net
In this ASP.Net article, I am going to walk you through all you need to know about ASP.Net Application Life Cycle and ASP.Net Page Life Cycle.

Replies(0) | Views(1671)| Read more...

System.ComponentModel.Win32Exception: The system cannot find the file specified: A network-related or instance-specific error occurred while establishing a connection to SQL Server (0x80131904) by Nuelson Penuel(Sunday, July 18, 2021) | ASP.Net
System.ComponentModel.Win32Exception: The system cannot find the file specified: A network-related or instance-specific error occurred while establish

Replies(0) | Views(2100)| Read more...

ASP.Net DataList Control Detailed Explanation and Example by Nuelson Penuel(Saturday, September 19, 2020) | ASP.Net
In this post, you are going to learn how to use ASP.Net DataList control as well as demonstrate binding of data to this control.

Replies(0) | Views(3327)| Read more...

Introduction To Repeater Control in ASP.NET by Nuelson Penuel(Thursday, September 17, 2020) | ASP.Net
In this article, I am going to show you how to use Repeater control in ASP.NET and how to bind data to this control.

Replies(0) | Views(2578)| Read more...

Validation of Viewstate MAC Failed Final Solution by Nuelson Penuel(Tuesday, September 15, 2020) | ASP.Net
It is so frustrating when you just visit your site and start seeing error that says Validation of viewstate MAC failed.

Replies(0) | Views(1143)| Read more...

Top 53 ASP.Net Interview Questions and Answers by Nuelson Penuel(Monday, September 14, 2020) | ASP.Net
In this post, you discover Top 53 ASP.Net interview questions and answers.

Replies(0) | Views(1476)| Read more...

Understanding ASP.NET Web Pages Folders,Server.MapPath and Href Operator by Nuelson Penuel(Sunday, September 13, 2020) | ASP.Net
In this post, you will learn about ASP.NET web pages folders such as logical and physical folder structures, virtual and physical names, web URLs

Replies(0) | Views(1600)| Read more...

ASP.NET Server Controls: ImageButton, Image, CheckBox, RadioButton, ListBox, Textbox, Label by Nuelson Penuel(Tuesday, September 1, 2020) | ASP.Net
In this tutorial, I will teach you some of the most commonly used ASP.Net controls e.g Label, Image, ImageButton, Button, CheckBox, ListBox e.t.c.

Replies(0) | Views(1937)| Read more...

All About ASP.Net Response.Redirect vs Server.Transfer by Nuelson Penuel(Saturday, August 29, 2020) | ASP.Net
Response.Redirect and Server.Transfer are objects of ASP.NET. These two objects serves the same functions but carry out their operations in different

Replies(0) | Views(2292)| Read more...

ASP.Net Configuration Files:Machine.config vs Web.config vs App.config by Nuelson Penuel(Saturday, August 29, 2020) | ASP.Net
In this post, I will explain to you different ASP.Net configuration files such as web.config, machine.config, and app.config used during web developme

Replies(0) | Views(1801)| Read more...

Article
How to Fix “Saving Changes Is Not Permitted” in SQL Server (SSMS) by Nuelson Penuel(Sunday, April 26, 2026) | Article
In this article, you’ll learn what causes this issue, why SQL Server blocks your changes, and the safest ways to fix it.

Replies(0) | Views(380)| Read more...

Claretian University of Nigeria, Nekede, Imo State 2026/2027 POST UTME DIRECT-ENTRY FORM/IJMB FORM IS OUT CALL (+2348139798798 OR 08139798798) JUPEB FORM/MASTERS-FORM …ALSO THE SALE OF PREDGREE DIPLOMA FORM,CHANGE OF COURSE FORM/SANDWICH FORM,POST GRADUATE-DIPLOMA FORM,CHANGE OF INSTITUTION FORM,REMEDIAL ADMISSION FORM ARE ONSALE CALL THE EDUCATIONAL PORTAL ON (+2348139798798) ON HOW TO APPLY AND REGISTER ONLINE TRANSFER FORM,COLLECTION OF STATEMENT OF RESULTS,TRANSCRIPT,UPGRADE OF JAMB CUT OF MARK,PAYMENT FOR ACCEPTANCE AND SCHOOL FEES REQUIREMENT ARE ONGOING CONTACT (+2348139798798) FOR MORE INFORMATION by EDUCATION PORTAL(Tuesday, March 31, 2026) | Article
Claretian University of Nigeria, Nekede, Imo State 2026/2027 POST UTME DIRECT-ENTRY FORM/IJMB FORM IS OUT CALL (+2348139798798 OR 08139798798) JUPEB F

Replies(0) | Views(0)| Read more...

7 Things You Should Do If Your Code Is Not Working by Isaiah Ozadhe(Tuesday, September 8, 2020) | Article
Sometimes you just can't figure out what is wrong with your code but it's just not working. Here are 7 tips that can help.

Replies(0) | Views(1349)| Read more...

Top 13 Easy Steps On How To Create Database In Microsoft Access from Scratch by Nuelson Penuel(Monday, August 31, 2020) | Article
In this post, am going to demonstrate to you the easiest steps ever needed to create a Microsoft Access database for your company software.

Replies(0) | Views(2522)| Read more...

ASP.NET Server Controls Detailed Overview by Nuelson Penuel(Tuesday, May 14, 2024) | Article
Server controls are block of html tags or code that can be used on a web page to perform the task they are being meant for.

Replies(0) | Views(1733)| Read more...

Top 35 Best Visual Studio Keyboard Shortcuts by Nuelson Penuel(Saturday, August 29, 2020) | Article
In this post, am going to share with you some of the visual studio shortcuts you can use when working with the environment.

Replies(0) | Views(1861)| Read more...

Best Top 6 ASP.Net Page Navigation Techniques by Nuelson Penuel(Friday, August 28, 2020) | Article
In this article, we will learn different techniques that are used for page navigation in ASP.net.

Replies(0) | Views(2129)| Read more...

Object Oriented Programming In Very Simple Terms by Isaiah Ozadhe(Friday, September 11, 2020) | Article
A very practical explanation of object oriented programming

Replies(0) | Views(1358)| Read more...

6 Tips On Writing Good Blog Posts by Isaiah Ozadhe(Saturday, August 7, 2021) | Article
Writing for an online audience is different from any other form of writing, here are a few 6 tips on writing good blog posts to get you started

Replies(0) | Views(1602)| Read more...

Interpreted Vs Compiled Programming Language in Very Simple Terms by Isaiah Ozadhe(Tuesday, August 4, 2020) | Article
A detailed explanation of the comparison of compiled an interpreted programming languages in very simple terms.

Replies(0) | Views(1939)| Read more...

|

Tutorials/Articles

Python Tutorial Day 1: Introduction And Setting Up Your Editor For Development
What Is JavaScript Screen Object Uses And Its Properties
JavaScript Browser Object Model (BOM), Components And Its Uses
Claretian University Of Nigeria, Nekede, Imo State 2026/2027 POST UTME DIRECT-ENTRY FORM/IJMB FORM IS OUT CALL (+2348139798798 OR 08139798798) JUPEB FORM/MASTERS-FORM …ALSO THE SALE OF PREDGREE DIPLOMA FORM,CHANGE OF COURSE FORM/SANDWICH FORM,POST GRADUATE-DIPLOMA FORM,CHANGE OF INSTITUTION FORM,REMEDIAL ADMISSION FORM ARE ONSALE CALL THE EDUCATIONAL PORTAL ON (+2348139798798) ON HOW TO APPLY AND REGISTER ONLINE TRANSFER FORM,COLLECTION OF STATEMENT OF RESULTS,TRANSCRIPT,UPGRADE OF JAMB CUT OF MARK,PAYMENT FOR ACCEPTANCE AND SCHOOL FEES REQUIREMENT ARE ONGOING CONTACT (+2348139798798) FOR MORE INFORMATION
Visual Basic Split Function Detailed Example
Simple Steps On How To Write A functiOn In JAvAScript
What Is HiddenFields, Advantages And DIsadvantages Of HiddenFields
What Is JavaScript InnerText And Its Examples
Visual Basic Control Statements:If Then, If Then Else, If Then ElseIf, Select Case And Nested Select Case Statement
UnderstandIng GetAttribute() Method In JavaScript
Some Things You Should Know About VB As A ProgrAmming LAnguAge
UnderstAnding Visual Basic Substring And Examples
Python Tutorial Day 3: Working With User Inputs And External Files
Introduction To Repeater Control In ASP.NET
What Is JavaScript Constructor Method And Examples
Best Two Examples For Web.Config File Encryption
How To Add A clAss To Html Element Using JAvAScript
7 Things You Should Do If Your Code Is Not Working
What Is VIsual Basic.Net: Features, Advantages And DIsadvantages Of VIsual Basic.Net
Python Programming Language: Where The Name Came From.
Emmason Integratded Services(2017-2026)
All Rights Reserved
Designed and Maintained By Emmason Integrated Services