Posts

Showing posts from February, 2017

Startup Error on Visual Basic 6.0 ( somthing like "OLE Error") Solution...

Image
This problem happen in win 7, because of the compatibility issue. It s easy to slove this problem. 1.Right click on VB 6 icon and choose properties. 2. choose the Compatibility tab 3. Tick Run this program in compatibility  mode for: you can choose the Windows XP or any other OS that you sure your version of vb 6 is compatible with.

How to share your mobile sim internet share with your PC via USB...

Image
How to share your mobile sim internet share with your PC via USB... Android USB Tethering How to use Android USB Tethering on Any Computer. In this video I'm showing you, from my chromebook, how to usb tether(usb Tethring) your android phone to your pc. This can be done with any computer, and not just with a chromebook.   Here are the steps for Tethering your android phone to your computer via usb port. 1. Connect phone to computer with usb cable.  You will know when you have a connection when you see your phone is charging, by seeing the power indicator.  2. Get into your android phone settings.  Make sure that your phone is not in airplane mode or other wise this will not work. Also make sure that you are on a LTE service of some kind. Anything under 4G will give you very slow internet speeds.  3. Select your wireless settings, and click on the more tab. What you are looking for is something that says Tethering & Portable Device....

Control your PC via android Phone...,

Image
Control your PC via android Phone...,  Download Link :   http://pcremoteserver.com/ Asslamualium ! Dosto ,aaj main apko apny android mobile say pc ko connect karny  ka method btata jaon.... Following these steps 1) Install the PCRemoteSetup on your pc  (Required NetFrame Work) 2) Install the PC_Remote_(Beta).apk on your android mobile. (Minimum required frimvare 3.1 for better use) I Hope so,You will be happy and enjoy this  GOD Blesses you  
Image
Visual Basic 6.0 Code Simple Calculator Making A Simple Calculator                         1)text Box Dim op as string Dim num1 as Integer Dim num2 as Integer Dim num3 as Integer                        2)Button  Text1.Text=text1.text & 1                       3)Clear Button text1.text= ""                      4)Opreator Code num1 =text1.text text1.text= " " op= "+"                                (etc...)                    5)Equal Button num2=text1.text text1.text="" if op = "+" then num3=num1+num2 text1.text=num3 elseif  op = "-" then num3=num1-nu...