Posts

Affiliates


Identify textboxes through looping statement

Looping objects are different from other datatype. This method of looping statement are used to identify each object as any kind of object based in a form

Reduce workload on your broadband

Wireless Broadband functions in different ways. Connects to your ISP and sends requested packets to routing tables up to the requester node.

Multiplication Tables in C++

Loop is a sequence of repetitive execution and terminated upon the met condition. Example of this program is function for(),do{}while(),while(){} syntax To create a multiplication table type the code below

Fixed by using cmd: USB drive unusable, unformattable, and reporting 0 bytes capacity

Image
Tutorial on Flash Drive repair by using command prompt. This tutorial are works at win7 and win8 1. open cmd in administrator 2. type  diskpart 3. make sure you select the disk # of the usb stick/flash drive      3.a.  list disk "to list all disk mounted"     3.b. select disk #   "select the flash drive disk" 4 type  list volume "to view the volume of the selected disk"     4.a type  select volume # 5. type list partition "if partition is not available type the code below " 6. type create partition primary 7. type format fs=(format_type) quick label="Flashdrivename"       e.g format fs=ntfs quick label="Flash"       (format_type) may be equal to = ntfs or fat32 8. done you may now use your flash drive you may also do a partition of your drive..

Proper way of using a cooling pad on laptop computers

Image
Electronic devices produces heat... without further a due what is the proper way of choosing a cooling pad for your laptop? I investigate, search and test, I notice this problems and outcome: 1. Heat is retained if the fan is directed on the computer. 2. If fan is directed on your computer the dust might give you another problem.    -a dust may retain on your laptop fan and it may reduce your laptop cooling system 3. A opposite air flow also bounces air.    -lessen if the circle edge is blocked and with a higher stand. 4. Make sure enough space at the bottom for air to pass. 5. Wipe/clean the cooling pad floor at least once a week. 6. Lastly close unused applications.    -Increasing the operation of a component will usually increase its thermal output

Increased Your Mango production

Image
Before Ramon Barba discovered the value of potassium nitrate on mangoes, mango trees producing fruits only once a year. Ramon Barba, a professor at the institute of Biological Science at UP Los BaƱos, found that mangoes can be induced to flower all year round by spraying mango trees with Potassium nitrate, the Philippines became a leading exporter of mangoes and mango products. Barba first experimented on a single hand-sprayed application of potassium nitrate in the '70s. In the first week of his experiment, buds emerged, then flowers in the second week. Fruits came out within four months. For the experiment, Barba spent less than P500. Barba's research showed that if one percent of potassium nitrate solution is applied on mango trees for 5 years, new shoot production and leaf sizes would be significantly reduced. The normal recommendation is one percent potassium nitrate solution. Barba pointed out that if the tree does not flower after potassium nitrate application,...

[Tutorial] Force Print queue purge if get stuck

Have you encounter print queue for at least 5 to 10 mins but it doesn't print you may use this on your command prompt. START>CMD administrator> type this code net stop spooler del “%systemroot%\system32\spool\printers\*.shd” del “%systemroot%\system32\spool\printers\*.spl” net start spooler or you may use at batch file by opening a notepad type bellow code then save it to print.bat @echo off echo Stopping Spooler echo. net stop spooler echo Deleting jobs in print queue... echo. del “%systemroot%\system32\spool\printers\*.shd” del “%systemroot%\system32\spool\printers\*.spl” echo Restarting Spooler. echo. net start spooler then your done.