Friday, July 5, 2013

IF Statement Syntax If logicalcondition Then Compound Statement End If Sample Program that best illustrate the use of IF Statement in Visual Basic 6.0. Interface Object Properties Source Code  Private Sub cmdclose_Click() If MsgBox("Are you sure you want to end this program?", vbQuestion + vbYesNo, "Comparing Two Numbers using IF Statement") = vbYes Then     End End If End Sub Private Sub cmdIF_Click() If cmdIF.Caption...

Tuesday, July 2, 2013

Create the following interface by utilizing the simple concepts discussed by your instructor. Graphical User Interface: Source Code: Private Sub cmdClose_Click() If MsgBox("Are you sure you want to end this program?", vbQuestion + vbYesNo, "Hello World Application") = vbYes Then     End End If End Sub Private Sub cmdPrint_Click() If cmdPrint.Caption = "&Print" Then     txtPrint.Text = "Hello...

Monday, June 24, 2013

iDroid Kata Smart Phone powered by Anroid version 2.3.5  If we have reached the maximum patterns allowed in opening iDroid Kata smart phone, we can access our  phone by signing in to the Email Account provided during the mobile phone first use. If ever we have not set Email Account on our smart phone. We need to perform hard reset on iDroid. I would like to share this solutions on how I solve this problem. Few...

Wednesday, June 19, 2013

If you miss to play your favorite Games from an Old Game Console like SEGA Genesis, it is now possible without your Dirty Old Game Console but through your Smartphone. First thing to do is to download a Game Console Emulator for Smartphones: Download Nintendo Family Computer Emulator (NES Emulator 1.5.7) Download SEGA Genesis Emulator (Gensoid) After installing your Favorite Game Console Emulator, you can download hundreds of ROMS available at Free ROM...
To use sim card from other network to network locked Java Enabled Samsung Phones, just follow this few simple easy steps: Step 1: Remove the battery from the phone and insert the sim card half way to the sim card slot. Step 2: Insert the battery and provide space so that you can push the sim card later. Turn on the cellphone. Step 3: When the phone turns on and display Insert Sim Card, you can select one of this two option to restart your phone. - Dial *2767*2878# or - Go to Settings -> Time and Date -> Automatic time update. When your...
To access Free mobile internet, you should be a Globe subscriber and download Opera Mini with editable server. You can find it by searching through Google. The best modified Opera Mini is Torque Speeder OM 4.2. In your mobile phone internet setting, just select MyGlobeConnect as your default Connection. Manual Setup Name: myGlobe CONNECT Home URL: http://www.globe.com.ph/globe.asp Proxy: On Proxy Address: 203.177.42.214 Port: 8080 Access name: www.globe.com.ph In Opera Mini, just type the text below: HTTP Server http://www.globe.com.ph/globe.asp.server4.operamini.com:80 Socket...

Sunday, June 16, 2013

With basic knowledge on input-output function of C. We can now perform simple arithmetic programs, like in this example Division Program. Source Code: #include<stdio.h> main() { int num1, num2; float quotient; clrscr(); printf("Enter two numbers to perform Division:"); scanf("%d %d", &num1, &num2); quotient=num1/num2; printf("The quotient of two numbers is: %.2f",quotient); getch(); } Output of the Program: ...
With basic knowledge on input-output function of C. We can now perform simple arithmetic programs, like in this example Subtraction Program. Source Code: #include<stdio.h> main() { int num1, num2, diff; clrscr(); printf("Enter two numbers to perform Subtraction:"); scanf("%d %d", &num1, &num2); diff=num1-num2; printf("The difference of two numbers is: %d",diff); getch(); } Output of the Program: ...
With basic knowledge on input-output function of C. We can now perform simple arithmetic programs, like in this example Multiplication Program. Source Code: #include<stdio.h> main() { int num1, num2, product; clrscr(); printf("Enter two numbers to perform Multiplication:"); scanf("%d %d", &num1, &num2); product=num1*num2; printf("The product of two numbers is: %d",product); getch(); } Output of the Program: ...
With basic knowledge on input-output function of C. We can now perform simple arithmetic programs, like in this example Addition Program. Source Code: #include<stdio.h> main() { int num1, num2, sum; clrscr(); printf("Enter two numbers to perform Addition:"); scanf("%d %d", &num1, &num2); sum=num1+num2; printf("The sum of two numbers is: %d",sum); getch(); } Output of the Program: ...
C programming language provide functions that can be use in creating programs. scanf is the function use to accept data from user either of data type used. Source: #include<stdio.h> main() { int num; clrscr(); printf("Enter number to display:"); scanf("%d", &num); printf("This is the number you type: %d.",num); getch(); } Output of the Program: ...
Ever wanted to save that classy video from Facebook but the pain of downloading and installing a software has stopped you from downloading that video? There are many services and apps available which can help you in downloading videos from Facebook. But if you don’t want to use any third-party tool or service to download videos then you can simply use our very own Internet Explorer. Open IE, go to Tools / Internet Options, Click on Delete, check Delete Temporary Internet Files and...
Tips and Tricks to modify the Date and Time settings on your computer makes one user unique over the other. I remember back when I repair other laptop or desktop pc, I always make a signature by displaying my nickname on their System Date and Time which later displayed on System Tray on their desktop. Here are the simple tips in performing this: Customizing Date and Time Format: Open Control Panel Access Clock, Language, and Region Under...

Saturday, June 15, 2013

CISCO has been the leading IT Professionals Certification. CISCO Certifications comes in various level: Entry, Associate, Professional, Expert and Architect. Subject areas may fall into seven  categories: Routing and Switching, Network Security, Service Provider, Design, Storage Networking, Voice and Wireless. With all these different career opportunities, one common question to ask, how would I learn CISCO? CISCO now offer The Games Arcade: Have fun while you learn. Interested individuals who wants to progress in CISCO career opportunities...

Friday, June 14, 2013

Resetting mobile phones is like formatting a computer and will tend to lose all of your data on your specific storage device. Steps to consider before reformatting your mobile phone. Back-UP Data back-up allows the user to save his/her important data saved on his device like contacts, email accounts, username and password on the internet, captured moments like photos, videos, audio recordings. Battery Power Be sure to use a charge battery on resetting your mobile. Technicalities might occur if during reformatting your battery ends up and...

Thursday, June 13, 2013

Adopting the concepts of C programming, a train individual can perform simple programming in Visual Basic Studio 2010. A simple console application printing hello world on screen. Hello World Console Application Open Visual Basic 2010 Express Click New Project Select Console Application  Type the name of application. Hello World Click OK Coding the Console Application In the module1.vb, we can directly type the code below: Code: Console.Writeline("Hello...

Tuesday, June 11, 2013

The programs presented here illustrate best practices in C programming primer. Writing C programs helps learner to simulate other programming language that he/she may encounter in the future like C++, C#, Java and PHP. Hello World Program #include<stdio.h> main() { printf("Hello World!\n"); getch(); } Output of the Program: Hello World!...