Monday, March 21, 2011

How to Delete Macromedia Flash Player 6 From a PC


Add/Remove Programs
1. Click the circular 'Start' button and then click 'Control Panel.'
2. Click the option labeled 'Uninstall a Program.' Double-click 'Add/Remove Programs' if using Windows XP.
3. Click 'Macromedia Flash Player 6' and then click 'Uninstall.'
Flash Player Removal Tool
4. Download the Flash Player Uninstaller from the Adobe website.
5. Click 'Open' to run the Flash Player Uninstaller.
6. Click the 'Uninstall' button to remove Macromedia Flash Player 6.
Read more ►

Sunday, March 20, 2011

How to Use BufferedInputStream in Java


1. Open a new Java class file. If you are using a Java Integrated Development Environment (IDE) like Netbeans, then you should be able to do this by clicking \"File,\" and \"New Class.\" Otherwise, just open a copy of your favorite text editor, such as Notepad, and click \"File,\" then \"Save as.\" Name the file \"BufferedExample.java.\" Paste the following code into your new file to import the BufferedInputStream from the Java IO library: <br /><br />import java.io.BufferedInputStream;
2. Paste the following to create an outline for your Java program. If you are using an IDE like Netbeans, this may have been done automatically for you. If so, skip to <br />Step 3.<br /><br />public class BufferedExample {<br /><br /> public static void main(String[] args) {<br /> <br /> }<br /><br />}
3. Paste the following code inside the \"public static void main\" method of your class skeleton. <br /><br /> BufferedInputStream in = new BufferedInputStream(System.in)<br />GO<br /> // Mark this spot in the stream to come back to later. <br /> // The 1024 specifies that the buffer will hold 1024 bytes of data.<br /> // Should more data than this be read, the bookmark will become invalid.<br /> in.mark(1024)<br />GO<br /> try {<br /> int x = in.read()<br />GO<br /> // Print out the ASCII keycode for the character typed. For example, 'a' is 97.<br /> System.out.println(x)<br />GO<br /> // Return to the spot marked a few lines ago.<br /> in.reset()<br />GO<br /> // This will read and print the same value again.<br /> int y = in.read()<br />GO<br /> System.out.println(y)<br />GO<br /><br /> } catch (Exception e) {<br /> System.out.println(\"Error\")<br />GO<br /> }<br /><br />This code creates a new BufferedInputStream from the \"System.in\" value, which is set to the user's keyboard by default, allowing her to type in data for the program. It immediately marks the beginning of the stream. It then reads one character from the keyboard and stores it as an integer of its American Standard for Code Information Interchange (ASCII) keycode. BufferedInputStream always returns a collection of integers between 0 and 255, or bytes. How to interpret these bytes is left to you as a programmer. After it has read and printed out what it received, it returns to its bookmark, reads, and prints again.
Read more ►

Saturday, March 19, 2011

How to Repair Windows Vista Dll


1. Insert the Vista disc into the computer. Restart the computer.
2. Press any key as prompted to boot from disc.
3. Select your language, keyboard and currency from the onscreen menu.
4. Click 'Repair your computer.' Select the drive housing Vista and click 'Next.' This scans the drive for problems with Vista and its DLL files, restoring them automatically.
Read more ►

Friday, March 18, 2011

How to Fix Rundll Error on Startup


1. Start Windows in Safe Mode. Reboot the computer and begin tapping the 'F8' key until the 'Windows Advanced Options' menu appears. Select 'Safe Mode No Networking' and press 'Enter.'
2. Run any antivirus software you have installed on your computer, followed by antispyware software. Ideally, you should have at least two antispyware programs, as some malicious items are detected by some products but not others.
3. Delete any viruses or spyware your software detected. Reboot. If the error messages disappear, you do not need to proceed further.
4. If the rundll32.exe problem persists, your Windows rundll32.exe file is corrupt. You must perform a Windows Repair Installation.
5. Repair Windows. Reboot the computer with the Windows CD in the CD drive. When prompted, press any key on the keyboard to boot from the CD.
6. Wait for the 'Welcome to Setup' screen, which contains a list of options. Press 'Enter' to select 'Setup Windows XP.' Do not press 'R.'
7. Select the Windows installation you want to repair from the list (C:\WINDOWS 'Microsoft Windows ...'). Press 'R' to enter repair mode and 'F8' to accept the Microsoft licensing agreement.
8. Windows will reinstall the operating system, including the corrupt rundll32.exe file. Your data and other files will not be affected.
Read more ►

How to Turn Off or Disable ActiveX in Internet Explorer 8


1. Load Internet Explorer 8.
2. Click 'Tools' to view a drop-down menu with various options.
3. Click the 'Manage Add-ons' option from the 'Tools' list. A new menu opens displaying every Internet Explorer 8 add-on.
4. Locate an ActiveX control you want to disable. You can select among different classes of controls, such as 'Toolbars and Extensions' or 'Search Providers,' by clicking an item in the 'Add-on Types' pane.
5. Right-click the ActiveX control you wish to disable.
6. Click 'Disable' and click 'Yes' to finish disabling the control.
Read more ►

How to Delete a Locked DLL


1. Use Unlocker to unlock the DLL file so you can safely delete it afterwards. Unlocker lets you end any processes associated with the DLL file from a right-click menu to allow direct deletion.
2. Use GiPo@MoveOnBoot to schedule a DLL file for deletion the next time you boot your computer to make sure the software deletes the file before it loads. The GiPo@MoveOnBoot utility is included in the GiPo@FileUtilities set which lets you perform advanced system operations, such as drive mounting and read error checking.
3. Use Process Explorer to identify what executables connect to locked DLL files. It provides a feature that lets you enter the filename of the locked DLL so you can see the running application that relies on it. Process Explorer lets you end that process to unlock the DLL file, allowing deletion.
Read more ►

Thursday, March 17, 2011

How to Use Camfrog on Linux Ubuntu


1. Camfrog is designed for Windows, so it is no surprise that it causes a random error and then closes without warning in Ubuntu! You will not be using Wine for this method, so please exit Wine if it is running and then find your Run screen (sometimes Alt+f2).
2. Find in your Main Menu under Preferences your Preferred Applications. One main error that people receive while running Camfrog in Ubuntu is that it is not installed correctly through the Preferred Applications Menu.
3. The next common error people make while installing Camfrog in Ubuntu can be found by searching the system logs for any indication of a Camfrog .DLL error (sometimes labeled CfxDLL.error) in the main screen.
4. If you are still having trouble, there is one last procedure you may try to ensure that Camfrog will run error-free. Find your Applications Menu, followed by the Add / Remove Programs Menu. You will now run a search for the Camfrog Installer using your Search for Apps feature.
5. There should be no errors left in the system log, please uninstall Camfrog and then reinstall using the preferred methods listed in steps 2 and 4. Have fun chatting away!
Read more ►

How to Debug JIT in the Microsoft .NET Framework


1. Click the 'Start' button and then click the 'All Programs' icon.
2. Click on the 'Accessories' tab and then right-click on the 'Command Prompt' icon.
3. Click the 'Run as administrator' option from the menu and enter your administrator password into the field.
4. Type 'sfc /scannow' (without quotes) into the command prompt and press the 'Enter' button.
5. Wait for the scan to complete and then restart your computer to clear the error.
Read more ►

How to Make My Own Visual Basic Command Buttons


Creating a Command Button Image
1. Load up your favorite image editor and create a box shape. Select the box icon and drag and extend the box tool until you create a rectangle.
2. Insert whatever text you feel completely describes the button's nature. Select the text tool icon and select an area with the mouse in which you wish to outlay text. Type the text you wish into the text box.
3. Create three instances of this button image. One of the instances must be when the button is not pressed down and is selectable. Another instance is called the down state, and this image shows when the button has been pressed or clicked on. The last instance is the disabled instance and only occurs when this button is visible but not selectable or click-able. To create these instances just create a different image file for each button graphic.
4. Edit the graphic slightly for each instance and save each graphic separately. 'Button,' 'down button' and 'disabled button' are three potential names for the image files. After you're finished creating imaging, you should have a total of three image files: one for the regular display, one for when the button is held down and one for when the button is disabled.
Adding the Command Button to Visual Basic
5. Load up Microsoft Visual Basic and then right-click the form in the navigation panel and go to Design View.
6. Click the button icon that is in the design tab under the control group.
7. Click the command button icon and drag the mouse over the form to create a box. After drawing the button on the form, click the the button and go to the Properties menu.
8. Click the picture attribute in Properties and select the first image instance of the button in its normal state.
9. Click the down-picture attribute in Properties and select the second image instance of the button in its down state.
10. Click the disabled picture attribute in Properties and select the third image instance of the button in its disabled state.
11. Click the play button icon at the top of the toolbar to run the form and check to see if the buttons work.
Read more ►

Wednesday, March 16, 2011

How to Remove Trojan Startpage SP.DLL


1. Open the &quot;Start&quot; menu and then open the &quot;Run&quot; command.
2. Type &quot;msconfig&quot; and press &quot;Enter.&quot;
3. Click on &quot;Startup.&quot;
4. Uncheck the &quot;startpage.exe,&quot; &quot;sp.dll,&quot; &quot;startpage.dll&quot; and &quot;win32_start&quot; startup entries.
5. Click on the &quot;OK&quot; button and restart your computer to finish the removal process.
Read more ►

How to Fix XP Dll#039;s for Free


1. Check for updates, by going to the 'Start' menu, and then click 'Run' and type 'wupdmgr' in the dialog box. Press 'OK' to run the Windows Update utility. If an update is found, you will be prompted to download it automatically.
2. Launch the system restore utility. If the DLL issue was not fixed by a Windows Update, then the problem likely lies with a file corrupted either by mistake or a virus. In both cases, a System Restore will fix the problem. Go to the 'Start' menu and go to the 'Accessories' tab (under 'Programs'), and then selecting the 'System Tools' folder. Select 'System Restore' from the menu to launch the System Restore wizard.
3. Select a date from the restore point calendar before you began experiencing problems with the DLL files. Once you select it, your computer will reboot and your computer will be restored to the condition it was in on the date you selected.
Read more ►

Monday, March 14, 2011

How to Remove quot;Unable to Complete Genuine Windows Validationquot;


How to Remove the Genuine Windows Validation Error
1. Go to the 'Start' menu on your desktop and select the 'Run' option. From there, type 'cmd' in the Run box and press 'OK.' This will take you to the computer administrator panel.
2. Look for the blinking cursor and type in 'regsvr32 softpub.dll' and then press 'Enter.' You will see a message saying 'DllRegisterServer in Softpub.dll succeeded.' Close out of the administrator tool.
3. Repeat Steps 1 and 2 to get rid of the remaining .dll files. Once you make it to Step 2, instead of typing in 'regsvr32 softpub.dll', you'll type in each of the following .dll file names one at a time, being sure to close out of the administrator tool after each time:'regsvr32 Dssenh.dll''regsvr32 Slbcsp.dll''regsvr32 wintrust.dll''regsvr32 Cryptdlg.dll'''regsvr32 Rsaenh.dll''regsvr32 Mssip32.dll''regsvr32 Initpki.dll''regsvr32 Sccbase.dll''regsvr32 Gpkcsp.dll'
4. Finish typing in the file names administrator tool, and then close out of the tool and restart Windows. Your Genuine Windows Validation error should be cleared up.
Read more ►

Sunday, March 13, 2011

How to Stop C0000135 User32.Dll


Halting dlls
1. Download and install the 'Unlocker' software.
2. Restart your computer to access safe mode. The process for this can vary, but you usually press 'F8' after the first two screens during your computer boot-up.
3. While in Safe mode, run the Unlocker software. Be patient as it reads the programs you have active.
4. Find the 'C0000135user32.dll' file in the list of files Unlocker displays.
5. Click the 'Kill Process' button. You will be given the option to delete the process. The choice is yours. However, deleting it may cause a program you use frequently to stop working properly.
Read more ►

Saturday, March 12, 2011

How to Reinstall My Missing Files to My Computer


1. Insert the installation CD for the associated program into your CD drive. This should prompt the appearance of an on-screen menu providing you with the option to install, reinstall or uninstall the application.
2. Navigate to the CD drive of your computer if the menu described in Step 1 does not appear. Go to "My Computer," then to your CD drive (typically the "D" drive). Click on the file that is named "Setup.exe" (or something similar) to manually bring up the reinstallation menu.
3. Select the option to reinstall the application. This installs fresh copies of all the necessary program files, including files that had been missing. This process takes anywhere from 1 minute to more than 1 hour depending on the size of the program and the speed of your computer.
Read more ►

How to Replace a Bad Corrupt Hal.Dll File


1. Put the Windows CD-ROM into your computer's optical drive. Restart the system.
2. Press a key to boot from the CD-ROM drive when prompted.
3. Push 'R' when the 'Welcome to Setup' screen appears. Choose the Windows installation that is having issues from the list of installed operating systems. Type the administrator password and press 'Enter.' Press 'Enter' without typing a password if you don't have an administrator password set.
4. Type the command 'expand d:\i386\hal.dl_ c:\windows\system32\hal.dll,' where 'd:' is the drive letter of your CD-ROM drive and 'c:' is the drive letter of your hard drive. Press 'Enter.'
5. Remove the CD-ROM from the optical drive. Type 'exit' and restart the computer. Attempt to boot into Windows.
Read more ►