Friday, September 14, 2012

How to Fix The quot;Dynamic Link Library Binkw32.dll Could Not Be Foundquot; Error


1. Download the binkw32.dll file by browsing the download site (see Resources), then clicking on “Save File” to start the download.
2. Locate the newly downloaded file and right-click it. Click on the “Extract” option in the sub-menu and select the computer desktop as the extraction location.
3. Right-click the “Start” button in the lower left-hand corner of the desktop. The sub-menu will open. Select "Explore." The “Windows Explorer” screen will appear.
4. Browse the left panel in Windows Explorer and locate the “System” folder. The location of the “System” folder depends on your Windows version. Windows 7, Windows XP and Windows Vista have the “System” folder in "C:\Windows\System32." Windows 2000 and Windows NT have the “System” folder in "C:\WINNT\System32."
5. Click on the “Desktop” folder in the left panel. The desktop contents will appear in the right panel of Explorer. Find and right-click the “binkw32.dll” file in the right panel and select "Copy."
6. Go to the left panel in “Windows Explorer” and click your “System” folder. The folder will open and the items in the folder are displayed in the right panel of Explorer. Right-click on the right panel of Explorer and select “Paste.” The “binkw32.dll” file will be pasted into your “System” folder and fix the error.
Read more ►

How to Embed Video Without ActiveX


Create HTML Code
1. Open Notepad.
2. Paste this code in a new HTML document:<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'><html xmlns='http://www.w3.org/1999/xhtml'><head><title>Add JavaScript code below this title</title></head><body><input id='videoButton' type='button' value='Play Video'/><div id='videoBlock' /></body></html>This creates a button and an empty 'div' block element. The block element's ID is 'videoBlock.' The button's ID is 'videoButton.' The 'videoBlock' element is a placeholder for the video. JavaScript code will place a video there when you click the button.
3. Add the following code below the document's '<title>' section:<script language='javascript' type='text/javascript'>var videoName = 'banner.swf';var videoHeight = '500';var videoWidth = '400';var testButton = 'videoButton';</script>This initializes the variables that determine the video player's height and width. The height and width in this example are 500 pixels and 400 pixels. You can set these values to anything you like. The code also sets the name of the video. Replace 'xyz.swf' with the name of any Flash video on your hard drive. If the video is on the Web, replace 'xyz.swf' with the video's URL.
4. Add this line of code below the code in the previous step:<script src='VideoCode.js' type='text/javascript'></script>This statement grabs an external JavaScript file named 'VideoCode.js' and makes it available in the current HTML page. That external JavaScript function contains the code that creates the video player.
5. Press 'Ctrl+S' to open the 'File Save' window, and type 'Video_Test.html' in the 'File Name' text box. Click 'Save' to save the document. Notepad will save it as an HTML file.
Create JavaScript Code
6. Click 'File' and select 'New.' Notepad will create a new document.
7. Paste the following JavaScript code into the document:function playVideo() {var videoObject = document.getElementById('videoBlock');videoObject.innerHTML = '<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'' +' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0' WIDTH='' + videoWidth + ''' +'HEIGHT='' + videoHeight + ''' + 'id='myVideo'> ' +'<PARAM NAME=movie VALUE='' + videoName + ''' + '><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#FFFFFF>' +'<EMBED href='/support/flash/ts/documents/test1.swf' quality=high bgcolor=#FFFFFF WIDTH='550' HEIGHT='400' ' +'NAME='' + videoName + ''' +'ALIGN='' TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'></EMBED></OBJECT> ';}// WINDOW UNLOAD FUNCTIONwindow.onload = function () {objButton = document.getElementById(testButton);if (objButton.addEventListener)objButton.addEventListener('click', function () { playVideo()} , false);elseobjButton.attachEvent('onclick', function () { playVideo()} );}The function named 'playVideo' creates an object tag that embeds a video into a Web page. This function uses the values for height, width and movie name set in the previous HTML document.The window.onload function sets up a button's click event. It uses the value for the button ID set in the previous HTML document. The click event causes a button click to run the playVideo function.
8. Click 'FIle' and select 'Save As' to open the 'Save As' window.
9. Type 'VideoCode.js' in the 'File Name' text box and click 'Save.' Notepad will save this as a JavaScript file. This is the file referenced in the previous HTML document.
10. Press 'Ctrl+E' to open Windows Explorer. Locate the HTML file that you saved.
11. Double-click the file. You will see the button that you placed on the page.
12. Click the button. The click event will fire, and the browser will execute the 'playVideo' function defined in the 'VideoCode.js' file. This causes the video to appear and begin playing.
Read more ►

How to Fix 1600 Error on a 3GS


1. Connect your iPhone to the computer through the USB cable that came with your iPhone.
2. Wait for iTunes to open, then click on the iPhone icon on the left side of the screen under 'Devices.'
3. Click on the 'Summary' tab and then 'Restore' from the options.
4. Click on the 'Backup' option from the prompt that appears.
5. Click the 'Restore' button. The restoration should take about 15 minutes to complete. The Apple logo will appear on the phone when it has cleared the error.
Read more ►

How to Update Zlib1.Dll in Windows XP


1. Press the Windows logo and 'R' keys manually to display the 'Run' dialog box. Type 'cmd' without quotation marks into the box and press 'Enter.' The command prompt will appear.
2. Type 'regsvr32 /u zlib1.dll' and press 'Enter.' This command unregisters the ZLIB library from the computer. Minimize the command prompt window and open your Web browser.
3. Browse to the ZLIB website using the link in the 'Resources' section of this article. Scroll to the 'ZLIB Compiled DLL' heading and click the download link closest to you. Extract the archive to the location of your choice. In the archive, you will find the file 'ZLIB1.DLL.'
4. Click the 'Start' button, then 'My Computer.' Browse to 'C:,' 'Windows' and 'System32.'
5. Drag the file ZLIB1.DLL to the 'System32' folder.
6. Return to the command prompt window. Type 'regsvr32 c:\windows\system32\zlib1.dll' and press 'Enter.' The updated file will be registered.
Read more ►

Wednesday, September 12, 2012

How to Install ActiveX for Java Plug


1. Go to the Java website. On their download page, you will find a list of different operating systems. Select your operating system to start the download process for Java. You should have this downloaded first before installing ActiveX controls in order to speed up the process.
2. Find a webpage that requires a Java plug-in. For example, game sites like Pogo.com uses an ActiveX control for Java plug-in. Once you land on this page, you will receive a security message at the top of your web browser. The message will indicate that an ActiveX control is required to use the Java plug-in before the webpage can properly load.
3. Check the signature of the ActiveX control security message. It should be signed by Sun Microsystems. It should also be backed by a Class 3 security certificate. Once you verify this information, you can proceed.
4. Click the 'OK' button on the security message to permit the installation of the ActiveX control for the Java plug-in. The web browser will retrieve the download from the Sun website and automatically install them. Once initially installed, you will not be required to reinstall the ActiveX control the next time that you encounter a website that uses a Java plug-in.
Read more ►

Tuesday, September 11, 2012

How to Fix Battlefield 2 CD Key Error


1. Uninstall Battlefield 2 and all expansion packs. Click 'Start' and then select Control Panel. Open the Add or Remove Programs dialog box. Select all Battlefield 2 entries and remove them from your system.
2. Reinstall Battlefield 2. Patch it to version 1.41 by downloading the appropriate file from the Electronic Arts download server (see Resources). Install all expansions that you own. Run the 1.41 patch again after installing all the expansion programs.
3. Open the Registry Editor by selecting Run from the Start menu and typing in 'regedit' (without quotations). Press 'Enter.'
4. Back up the registry. Click 'File,' then 'Export.' Choose 'Export Registry' and then select All from the Export Range option. Name the file and save it to a safe location on the hard drive.
5. Browse to HKEY_LOCAL_MACHINE\SOFTWARE\Electronic Arts\EA Games\Battlefield 2\ergc on the left side of the Registry Editor window. Right-click the x9392 value on the right side of the Registry Editor. Select Modify from the pop-up menu. Enter 'x9392' (without quotes) followed by your CD key (without hyphens) as the new value. Click 'OK.'
6. Close the Registry Editor and reboot the computer to make sure that the changes take effect.
Read more ►

How to Install MSVBVM60.DLL


1. Open your Web browser and browse to a page where you can download msvbvm60.dll for free. You can find a link to a reliable download location in Resources.
2. Click the 'Download' link and save the file to your hard drive. When it finishes downloading, double-click the file to open it in your computer's unzipping utility. When this opens, click the 'Extract' button or the 'Unzip' button (varies by program) and select your computer's desktop as the file destination. This will put msvbvm60.dll on your desktop.
3. Double-click the 'My Computer' icon and navigate to the Windows system folder. The file path for this folder is different from one Windows operating system to the next. In XP and Vista for 32-bit systems, it's 'C:\Windows\System32.' In 64-bit systems, it's 'C:\Windows\SysWOW64.' The file path is 'C:\WINNT\System32' in Windows NT and 2000 and 'C:\Windows\System' in Windows 95, 98 and ME.
4. Click and drag the msvbvm60.dll file that you extracted to the desktop into the system folder. If a corrupted or out-of-date version of this file already exists in the folder, you may be asked whether or not you want to replace the old file with the new one. Click 'Yes' if this happens.
5. Restart your computer. Windows will not recognize the new .dll until you reboot.
Read more ►

How to Scan Windows amp; Fix Errors


1. Close all programs.
2. Click the Windows 'Start' button and select 'Computer.'
3. Right-click the name of the drive you want to scan and select 'Properties.' By default, Windows resides on your 'C:' drive.
4. Select the 'Tools' tab located near the top of the resulting dialog box.
5. Click the 'Check Now' button, located below the 'Error-checking' heading. Confirm your choice if prompted by Windows.
6. Check only the box labeled 'Automatically fix file system errors.'
7. Click 'Start.' The scanning process begins immediately. It generally completes within 10 minutes.
Read more ►

Monday, September 10, 2012

How to Fix DNS Error (807101020)


Download Software Settings
1. Download repair software such as PageFix using a secure internet platform. This software helps in providing an automated solution to the DNS Error 807101020.
2. Save the PageFix software download at a host location and select the saved file for installation. A launch icon appears when the program is successfully installed.
3. Through the launch window, two buttons appear where you will enter the target website address reporting the error.
4. Select the 'Fix It' option from the dialog box. The web browser will launch and automatically run the program that will fix the DNS Error 807101020.
Read more ►

Sunday, September 9, 2012

How to Fix an Activation Error on Microsoft Money


1. Install Microsoft Money. Wait for the activation screen to appear.
2. Enter the activation key exactly as it appears on the original packaging in which the software came; click 'OK' or 'Activate' after you are finished. Wait a few minutes. If an activation error appears or Microsoft Money says that it cannot be activated, proceed to Step 3.
3. Verify that you are connected to the Internet. Open your preferred Web browser and navigate to any website. If you are unable to access the website a notice that you are not connected to the internet appears, launch your dial-up connection, verify that your network is connected or confirm that your wireless modem is turned on. In Windows, click on the small 'Network' or 'Wi-Fi' icon in the lower right of your screen and select 'Connect to network.' For a dial-up connection, double-click on the dial-up service icon on the Desktop and click 'Connect.'
4. Wait for your Internet connection to become active. Enter the activation key when prompted and click 'Activate' or 'OK.'
Read more ►

Wednesday, September 5, 2012

How to Repair Missing Windows XP Files


Repair Windows XP Files with System Restore
1. Save your work and close all open programs. Click Start, then Control Panel, then Performance and Maintenance. On the left side of the screen, click 'System Restore.'
2. Select 'Restore my computer to an earlier time.' Click Next.
3. Click a date with a bolded number in the calendar on the left. Make sure this date is at least 1 day in the past. On the right side of the window, select a restore point. Click 'Next' twice to restore your system.
Repair Windows XP Files With the Installation CD
4. Back up all of your user files onto removable media such as CDs or DVDs. Find your Windows XP installation or recovery CD, and insert it into the optical drive that your computer can boot from. Click Start, then Turn Off Computer, then Restart to reboot your computer. When the 'Press any key to boot from CD' message appears, press a key on your keyboard. Press 'Enter' to start Windows XP setup, and press F8 to accept the licensing agreement.
5. Select the path of your Windows installation and press 'R' to begin repairing it.
6. Follow the instructions provided by the Windows XP repair program and finish the reinstallation. Go to the Microsoft website and download Service Pack 2 from their website, then visit Windows Update to install Windows XP Service Pack 3, critical updates and Internet Explorer 7.
Read more ►

How to Fix the Qedit.dll


1. Find a website that hosts free DLLs for downloading purposes. Hit 'Download' on the Qedit.dll link and save the file to your PC desktop.
2. Go to 'Start > Search' and enter in the phrase 'system32.' Hit 'Enter' to open this folder on your computer.
3. Drag the Qedit.dll file from the desktop into the system32 folder. If you get a pop-up message asking you to replace the file, click 'Yes.' Close the window.
4. Go to 'Start > Run.' Type the keyword 'cmd' and hit 'Enter.' This command launches the Command Prompt window.
5. Enter the phrase 'regsvr32 qedit.dll' into the Command Prompt and hit 'Enter.' The Qedit.dll is now a part of the Registry.
6. Close the window and reboot the computer to save your changes.
Read more ►

Tuesday, September 4, 2012

How to Repair Window Frame Flashing


1. Remove the old window from the window frame per the manufacturer's instructions. Remove any screws or nails from the trim. Pry the trim off with a pry bar.
2. Remove any other nails and screws around the window, if necessary. Peel back the old flashing and remove it from the window if necessary. Remove the old window out of the window hole. In some cases, you may have to peel back the siding slightly to remove the window.
3. Remove the pan flashing if the leak is occurring around the bottom of the window. Use the old piece of pan flashing as a guide. Cut a new piece of pan flashing with a utility knife. Install the pan flashing where the old pan flashing was. Peel the back of the pan flashing off slowly as you install it. The bottom piece should overlap the window jamb by at least a few inches and should run over the edge of the outside sill by at least an inch or two.
4. Measure the height of the window. Add approximately 6 to 12 inches to the measurement. Cut flashing to length for both sides of the window with a utility knife. Apply flashing to the sides of the window. Overlap the jamb a few inches on each side. Both the bottom and top of the membrane should run past the bottom and top of the window. Try to extend the top and bottom of the flashing at least 3 to 4 inches longer than the window if possible. This precaution will help keep water from getting in the window. Use the utility knife to remove any excess.
5. Measure the inside, bottom corners of the window. Cut a piece of flashing membrane to fit into each corner. Apply the flashing in each corner over the seam where the larger pieces of flashing meet. The flashing patches should overlap the other pieces. This process will help reduce the chance of leakage.
6. Measure the width of the window. Add 6 to 12 inches to the measurement. Cut a piece of flashing to length using a utility knife. Apply the flashing to the top of the window. The flashing should overlap both sides. Cut the flashing in the corners. Fold the membrane over until it sticks to the inside of the window frame.
7. Install the window per the manufacturer's instructions.
Read more ►

Monday, September 3, 2012

How to Fix Search Companion in Windows


1. Login as Administrator to Windows. You can also login with any username that has computer admin privileges.
2. Click 'Start' and then 'Run.' Execute these strings in the 'Run' box: 'regsvr32 /i %windir%\srchasst\srchui.dll' (without the parentheses) and then 'regsvr32 %windir%\system32\jscript.dll' again without parentheses. You should see the message 'DllRegisterServer in <filename.dll> succeeded for each DLL registered, so two in total.
3. Log off and then log back on, and check the Search Companion window to ensure that it is now working correctly and isn't displaying blank. If it's still blank, you'll need to repair the search components using a specific Windows INF file.
4. Click 'Start' then 'Run.' Type '%systemroot%\inf' and then click 'OK.' Don't include the parentheses in the string. Now a window will open. In the window, locate the file named 'srchasst.inf,' right-click it, and choose 'Install.' You'll now be prompted to insert the Windows XP CD, so do so and point to the i386 folder on the CD. If you installed Windows XP Service Pack 1,2, or 3 separately after installing Windows XP, point to '%windir%\ServicePackFiles\i386' instead. Search Companion is now reinstalled and should operate correctly.
Read more ►

How to Fix HAL DLL


1. Click the 'Start' menu, then the small arrow next to 'Shut Down' and click 'Restart.' Rebooting the computer once might solve the problem if you didn't try this already.
2. Insert your Windows CD/DVD and restart the computer again. Press a key on your keyboard when asked to press any key to boot from CD/DVD.
3. Click 'Next' when the first window loads.
4. Click 'Repair Your Computer.'
5. Click 'Startup Repair' and select the Windows installation you want to repair and click 'OK.' Allow the computer to try repairing the file. If this doesn't work, continue to the next steps.
6. Repeat Steps 2 to 4. Click 'Command Prompt.'
7. Type 'bootrec /FixBoot' and 'bootrec /RebuildBcd,' pressing 'Enter' on your keyboard after each command. Wait until each one finishes its task before typing another one. Exit the prompt and restart your computer.
Read more ►