A palindrome is a number that will show same after reverse. For example 121, 34543, 343, 131 are the palindrome numbers. Palindrome program in VB.Net 1) First point Enter any number for check Palindrome 2) Hold the number in any variable 3) Reverse the number 4) Compare the number with reversed number 5) If both numbers are same, print palindrome…
Category: vb.net
count total number of space in a string vb.net
In this article we will see how to count total number of space in a string vb.net ? Code for count total number of space in a string vb.net [php] Imports System Namespace ConsoleApp1 Class Program Private Shared Sub Main(ByVal args As String()) Dim spcctr As Integer = 0 Dim str1 As String Dim str2 As String Console.Write("Please input a…
Prime Number Program in VB.Net
In this article, we will see Prime Number Program in VB.Net. Prime Number Program in VB.Net A prime number is a number that is divisible only by 1 and itself. For example : 5 is a prime number as it is divisible by 1 and 5. 6 is not a prime number as it is divisible by 1,2,3 and 6.…
Check whether a number is even or odd in vb.net
In this blog, we will see how to check whether a number is even or odd in vb.net. Check whether a number is even or odd in vb.net If a given integer number is Odd or Even. Here if a given number is divisible by 2 with the remainder 0 then the number is an Even number. If the number…
Export GridView to PDF in ASP.Net Using VB.Net
In this blog, we will learn Export GridView to PDF in ASP.Net using VB.Net. Complete Demo I decided to write this article especially for Beginners and those who want how to export GridView to PDF in ASP.Net Using VB.Net and also explain export GridView with paging enabled to PDF file in ASP.Net.No need to worry simple way to learn Export…