Thursday, December 19, 2019

Gender Checker in VB.NET

I wrote this program to ask the user to select the gender of the user using the checkbox to select its gender whether it is a male or female using Microsoft Visual Basic NET as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.



Sample Program Output


Program Listing

Public Class Form1


    Private Sub CheckBox1_CheckedChanged_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
        If CheckBox1.Checked = True Then
            MsgBox("You are a Male.")
        End If

    End Sub

    Private Sub CheckBox2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox2.CheckedChanged
        If CheckBox2.Checked = True Then
            MsgBox("You are a Female.")
        End If
    End Sub
End Class



Average of Three Numbers Using VB.NET

I wrote this program to ask the user to give three numbers and then the program will compute the average of the three numbers using Microsoft Visual Basic NET as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.


Sample Program Output



Program Listing

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim average, a, b, c As Integer

        a = Val(TextBox1.Text)
        b = Val(TextBox2.Text)
        c = Val(TextBox3.Text)

        average = (a + b + c) / 3

        Label4.Text = "The average of three numbers is " & Trim(Str(average)) & "."
    End Sub
End Class



Wednesday, December 18, 2019

Odd and Even Number Checker in Visual Foxpro

A simple program that I wrote that will ask the user to give a number and then the program will check if the given number is an odd or even number using Microsoft Visual Foxpro as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.



Sample Program Output



Program Listing

* Ok Button 

num_val = VAL(thisform.text1.value)

IF (num_val % 2 = 0) then
messagebox("The given number "+ ALLTRIM(STR(num_val))+ " is " + " and Even Number.",64,"The Result")
thisform.text1.Value=""
thisform.text1.setfocus()
ELSE
messagebox("The given number "+ ALLTRIM(STR(num_val))+ " is " + " and Odd Number.",64,"The Result")
thisform.text1.Value=""
thisform.text1.setfocus()
ENDIF


* Quit Button

thisform.release

Hamon na suntukan kay Ben Tulfo! Coun. Espino, totoo ba?

Odd and Even Number Generator in C++

Odd and Even Number Generator in C++

I wrote this program to ask the user to give a number and then the program will generate the list of odd and even numbers using C++ as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.



Sample Program Output


Program Listing

odd_even.cpp

// odd_even.cpp
// Author : Jake Rodriguez Pomperada,MAED-IT
// Date   : December 18, 2019
// Location : Bacolod City, Negros Occidental Philippines
// Email    : jakerpomperada@gmail.com

#include <iostream>

using namespace std;

int main() {
    int a=0;
    
    cout <<"\n\n";
    cout <<"\tOdd and Even Number Generator in C++";
    cout <<"\n\n";
    cout <<"\tEnter a Number :";
    cin >> a ;
    cout <<"\n\n";
    cout <<"\tOdd Numbers";
    cout <<"\n\n";
    cout <<"\t";
    for (int odd=0; odd<=a; odd++) {
       if (odd % 2 != 0) {
                 cout <<" " << odd <<" ";
               }
    
    }
    cout <<"\n\n";
    cout <<"\tEven Numbers";
    cout <<"\n\n";
    cout <<"\t";
    for (int even=0; even<=a; even++) {
       if (even % 2 == 0) {
                 cout <<" " << even <<" ";
               }
    
    }
    cout <<"\n\n";
    cout <<"\tEnd of Program";
    cout <<"\n\n";
    system("pause");
}


Display Odd and Even Numbers Using Two Listbox in VB.NET

Display Odd and Even Numbers Using Two Listbox in VB.NET

I wrote this program to display a series of numbers from 1 to 50 in Odd and Even Numbers Using ListBox in Visual Basic NET as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.


Sample Program Output


Program Listing

Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Label1.Text = "Odd Numbers"
        Label2.Text = "Even Numbers"

        ' Odd Numbers
        Dim a As Integer

        For a = 0 To 50
            If a Mod 2 <> 0 Then
                ListBox1.Items.Add(a)
            End If
        Next a

        ' Even Numbers
        Dim b As Integer

        For b = 0 To 50
            If b Mod 2 = 0 Then
                ListBox2.Items.Add(b)
            End If
        Next b

    End Sub
End Class


Display Odd Numbers From 1 To 20 Using Visual Basic NET

Display Odd Numbers From 1 To 20 Using Visual Basic NET

I wrote this program that will allow the user to click the button and display the list of odd numbers in the listbox using Microsoft Visual Basic NET as our programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com
My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.




Sample Program Output


Program Listing

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim a As Integer

        For a = 0 To 20
            If a Mod 2 <> 0 Then
                ListBox1.Items.Add(a)
            End If
        Next a
    End Sub
End Class



Tuesday, December 17, 2019

Square a Number Using PHP Programming Language

Square a Number in PHP

I wrote this simple program to ask the user to give a number and then the program will square the given number and display the results on the screen using PHP as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.


Sample Program Output


Program Listing

index.php

<html>
    <head>
    <title> Square a Number in PHP </title>
    </head>
    <body>
      <h2> Square a Number in PHP </h2><br>

      <form method ="post">
        Give a Number <input type ="text" name="num"/> <br>
        <button type="submit" title="Click here to compute square value">
         Compute </button>
         </form>
         </body>
         </html>

         <?php
             
               if ($_POST) {

                   $num = $_POST['num'];

                   $compute = ($num * $num);

                   echo "The square value of $num is $compute.";
               }
             ?>
             
        
     



String and Number Palindrome in PHP

String and Number Palindrome in PHP

I wrote this program using PHP programming that will ask the user to give a string or number and then the program will check if the given number or string is a palindrome or not a palindrome.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.



Sample Program Output


Program Listing

index.php

<html>
   <head> 
   <title> Palindrome Checker in PHP </title>
   </head>
    <body>
       <h2> Palindrome Checker in PHP </h2>
       <br>
          <form method="post">
           Give a String or a Number <input type="text" name="num"/>
           <br>
           <button type="submit">Check Palindrome </button>
           </form>
       </body>
       </html>

       <?php
          if ($_POST) {
              $num = $_POST['num'];

              $reverse = strrev($num);

              if ($num == $reverse) {
                  echo "The given string/number $num is a Palindrome.";
              } else {
                echo "The given string/number $num is Not a Palindrome.";
              }
          }    
?>


Addition of Five Numbers in PHP

Addition of Five Numbers in PHP

I wrote this program to ask the user to give five numbers and then the program will compute the total sum of five numbers using HTML forms in PHP programming.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/
https://www.unlimitedbooksph.com/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.



Sample Program Output



Program Listing

index.php


<html>
   <head>
      <title> Addition of Five Numbers in PHP</title>
    </head>
     <body>
         <h2> Addition of Five Numbers in PHP </h2>
         <br>
<form method="post">
    Give First Value  <input type="number" name="num1"/> <br>
    Give Second Value  <input type="number" name="num2"/> <br>
    Give Third Value  <input type="number" name="num3"/> <br>
    Give Fourth Value  <input type="number" name="num4"/> <br>
    Give Fifth Value  <input type="number" name="num5"/> <br><br>
    <button type="submit" title="Click to solve the sum."> Solve </button>
      </form>
  </body>
  </html>

  <?php
   
      if ($_POST)
      {
          $num1 = $_POST['num1'];
          $num2 = $_POST['num2'];
          $num3= $_POST['num3'];
          $num4 = $_POST['num4'];
          $num5 = $_POST['num5'];

          $sum = ($num1 + $num2 + $num3 + $num4 + $num5);

          echo "The sum of $num1, $num2, $num3, $num4 and $num5 is $sum.";
      }  

?>



Ben Tulfo: "Bacolod Coun. Espino! Tago ka sa palda ng GF mo!"