Thursday, October 10, 2013

How to Repair Kernel32.DLL


1. Delete your password file if the Kernel32.dll errors are appearing when your system attempts to send your Internet log on password. Perform a Windows search for'*.pwl' files (no quotes). Right-click on any that are found, and choose 'Delete.' Reboot your computer and Windows will create a new password file that is not corrupted.
2. Check the website of your video card manufacturer for updated hardware drivers. Download and install the latest drivers for your video card. Reboot the computer after installation.
3. Test your memory modules to see if one is faulty. Click 'Start' and then 'Run.' Enter 'sysedit' (no quotes) into the 'Open' dialog. Click on 'OK.' Select the window named 'config.sys.' Insert the line 'device=c:\windows\himem.sys /testmem:on' (no quotes) into the file. Save and close the file. Watch for the computer to report any memory errors at start up after inserting this line; it may take several reboots for the bad memory module to be detected.
4. Clean the cooling fans of your CPU and power supply. Use a small brush and a can of compressed air to remove dust and debris that could be slowing down the fans.
5. Turn down the graphics acceleration options. Open the Control Panel and double-click on the 'System' icon. Click the 'Performance' tab and slide the 'Hardware Acceleration' control one notch to the left. Restart the computer. Move the notch as far to the left as necessary, if you think graphics acceleration could be the cause of your Kernel32.dll errors.
6. Minimize the number of programs you are running at once. Check your hard drive space if this seems to repair the Kernel32.dll issue. Ensure that at least 10 percent of your hard drive is empty at any given time.
Read more ►

Tuesday, October 8, 2013

How to Install ActiveX on a Windows Mobile PDA


Enable ActiveX Controls on Windows Mobile Internet Explorer
1. Open Internet Explorer on the Windows Mobile PDA.
2. Click “Tools” from the application options menu in Internet Explorer.
3. Click “Internet Options.”
4. Click the “Security” option.
5. Click the option labeled “Custom Level.” Scroll to the bottom of the page.
6. Click “Enable” for the “ActiveX Controls and Plug-ins” option.
7. Close the settings windows. ActiveX controls are now enabled on Internet Explorer.
Install an ActiveX Control (Microsoft Reader)
8. Open an Internet browser on the computer and download the ActiveX control. Save the file to the PC desktop.
9. Place the PDA in the cradle and connect the PDA to the computer that normally syncs the device.
10. Connect the device to the computer via Bluetooth, USB or infrared connection, as normally connected when syncing or downloading files to the PDA.
11. Download the ActiveX control.
12. Double-click the executable (EXE) file for the ActiveX control installation. Make sure the PDA device is connected to the computer. The installation routine will start and query the user regarding continuing the installation, both on the PC and the PDA.
13. Click “OK” to continue the installation on both the computer and the device. The installation routine will finish and the ActiveX control will be installed.
14. Open Internet Explorer on the PDA and navigate to the site that required the ActiveX download. The site should now run as designed.
Read more ►

Monday, October 7, 2013

How to Remove a Host.Exe Virus


1. Back up your computer. This is the most important step in the process because if something goes wrong during the virus removal process, it's critical to have a backup available. Otherwise you might render your computer inoperable or lose valuable data.
2. Use the Windows File Search Tool to find the host.exe path. Go to 'Start,' then 'Search,' then select 'All Files or Folders.' Type in host.exe as the name of the file to search. Copy down the path of any host.exe files that are found during the search.
3. Stop the host.exe processes using Windows Task Manager. Open the task manager by holding down the 'CTR', 'ALT' and 'DEL' keys at the same time. Select any instances of host.exe and click the 'End Process' button.
4. Delete any other host.exe files. Open 'My Computer' from the main Windows menu, then use the list that you created in step 2 find and delete them.
5. Make sure that your anti-virus and spyware prevention software is up-to-date to prevent a return of the problem. If you don't have anti-virus and spyware protection installed, obtain this software as soon as possible.
Read more ►

How to Fix D3drm.Dll


1. Press the Windows key on the keyboard. Open the 'Computer' or 'My Computer' folder.
2. Double-click the 'C' drive or the icon representing your hard drive. Open the 'Windows' folder.
3. Double-click the 'System32' folder.
4. Open your Internet browser. Visit the DLL Dump website (see Resources). Click 'Click Here to download d3drm.dll' to download the file. Save the d3drm.dll file to the desktop.
5. Click the file and drag it to the open System32 folder. Confirm the replacement of the old d3drm.dll file.
6. Press the Windows key, again. Type 'regsvr32 d3drm.dll' into the 'Start Search' field. Press 'Enter.' This step registers the d3drm.dll file.
Read more ►

Sunday, October 6, 2013

How to Register Ieframe Dll


1. Click on the 'Start' menu and type 'cmd' into the 'Search' box and press 'Enter.' The Windows Command Prompt opens.
2. Type 'regsvr32 /u leframe.dll' (without the quotation marks) into the Command Prompt and press 'Enter.'
3. Close the Command Prompt and restart your computer.
Read more ►

How to Fix a Resource DLL Problem


1. Write down the name of the DLL file in the error message that appears on your screen.
2. Go to a DLL download site, such as DLL-Files, DLL Dump or WinDLL, and search for the file name that you wrote down earlier. Save the download and unzip it, if necessary, in C:\Windows\System32.
3. Try rerunning the program that called the DLL earlier. The problem may already be fixed, but if it still occurs, you need to register the DLL. To do this, press 'Win-R' on your keyboard to open the Run dialog, and enter the command 'cmd.' This will open Command Prompt. Type 'regsvr32 filename.dll,' replacing the file name with that of the DLL you just installed, and press 'Enter.'
Read more ►

How do I Fix SMC Checksum Errors?


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

Friday, October 4, 2013

How Do I Disable Firefox to Download Flash Player?


1. Type 'about:config' (without quotes) into the address bar at the top of the Firefox window and press 'Enter.'
2. Click the 'I'll Be Careful, I Promise!' button on the warning page.
3. Type 'plugins.hide' (without quotes) into the 'Filter' box at the top of the about:config page.
4. Right-click the 'plugins.hide_infobar_for_missing_plugin' preference and click 'Toggle.'
Read more ►

How to Convert an Excel File to PDF Through VB6


1. Create your connection to the Excel spreadsheet. This is done using a connection object that includes the Excel driver. The following code creates the Excel connection:Dim conn As ADODB.ConnectionDim connstring As Stringconnstring = 'Driver={Microsoft Excel Driver (*.xls)}; DriverId=790; Dbq=excelfile.xls;'conn.ConnectionString = connstring
2. Retrieve the information from the Excel worksheet. In this example, all information from the Excel spreadsheet is taken to convert the entire file to the PDF. The following code copies all the Excel data:sql = 'SELECT * FROM sheet1'excel_records = recordset.Open sql, con, , adLockOptimistic, adCmdTextReplace 'Sheet1' with the name of your spreadsheet in the file.
3. Create the PDF file. You must first initiate the PDF class and specify the file for which the content is transferred. The following code creates and opens the file:Dim pdf As New mjwPDFpdf.PDFTitle = 'Excel to PDF conversion'pdf.PDFFileName = 'converted.pdf'
4. Save the Excel information to the PDF file. The following code transfers your Excel information:pdf.PDFTextOut excel_records.ToString
5. Close the Excel and PDF files to release the resources used to open them. This is good for server performance and frees any operating system locks on the files. The following code releases the files:Set pdf = NothingSet conn = Nothing
Read more ►

Thursday, October 3, 2013

How to Fix MSIExec


1. Click 'Start' then click 'Run.'
2. Type 'regedit' in the box and click 'OK.'
3. Browse to the following path using the left side of the window: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSIServer.
4. Double-click 'ImagePath' on the right side of the window and modify the value to 'C:\Windows\System32\msiexec.exe /V.' Replace 'C' with your system drive's letter.
5. Exit the registry editor and restart your computer.
6. Press F8 just before the Windows loading logo appears and select 'Safe Mode' from the list of start-up options.
7. Repeat Step 1, type 'msiexec /regserver' and click 'OK.' Restart your computer.
Read more ►

Wednesday, October 2, 2013

How to Fix the I/O for a Laptop


1. Click 'Start' and then 'Run.'
2. Enter 'sysdm.cpl' in the 'Open' text box.
3. Go to the 'Hardware' tab and click 'Device Manager.'
4. Find the Plug and Play device and 'right-click' on the device to be fixed.
5. Select 'Properties' dialog box and then go to the 'General' tab.
6. Click 'Enable' under 'Device usage' if the device is disabled and then click 'OK.' Otherwise proceed to Step 7.
7. Follow steps 1 through 5 above, and then click 'Troubleshoot' under Device Status. Follow the suggested recommendations to resolve the problem with the installed I/O device and laptop connection.
Read more ►

How to Get Rid of Error Safe


End Processes
1. Press \"Ctrl\" + \"Alt\" + \"Delete.\"
2. Click on the \"Task Manager\" and then click on the \"Processes\" tab.
3. End the following processes. To end a process, right-click on it and select \"End Process.\"<br /><br />\"errorsafescannerinstall_de.exe\"<br />\"errorsafescannersetup2222.exe\"<br />\"df_kme.exe\"<br />\"ers.exe\"<br />\"sr.exe\"<br />\"install.exe\"<br />\"unins000.exe\"<br />\"unins001.exe\"
Delete Registry Values
4. Hold down the Windows key and press \"R.\" The Run box opens.
5. Type \"regedit\" into the Run box and click \"OK.\" The Registry Editor opens.
6. Locate the following registry values in the right pane of the Registry Editor and delete them. To delete a registry value, right-click on it and select \"Delete.\" If you are having trouble locating a registry value, click on \"Edit,\" and then \"Find,\" and then type the name of the registry value into the box. <br /><br />\"c033567c-68fe-419b-bcc4-135db7faf8eb\"<br />\"c85a4afd-ff76-4661-b76a-3e9bb2ce2dab\"<br />\"e73e3959-fb15-44d7-acb9-3a75377006fc\"<br />\"HKEY_CLASSES_ROOT\\esdf_fixer.esfixer\"<br />\"HKEY_CLASSES_ROOT\\esdf_fixer.esfixer.1\"<br />\"HKEY_CLASSES_ROOT\\flfxr5.flfixer5\\clsid\"<br />\"HKEY_CURRENT_USER\\software\\errorsafe\"<br />\"HKEY_CURRENT_USER\\software\\errorsafe\\errorsafe\"<br />\"HKEY_LOCAL_MACHINE\\software\\errorsafe\"<br />\"HKEY_LOCAL_MACHINE\\software\\microsoft\\windows\\currentversion\\runerrorsafe\"<br />\"HKEY_LOCAL_MACHINE\\software\\microsoft\\windows\\currentversion\\uninstall\\ers_is1\"<br />\"HKEY_LOCAL_MACHINE\\software\\microsoft\\windows\\currentversion\\uninstall\\ersu_is1\"<br />\"HKEY_LOCAL_MACHINE\\system\\currentcontrolset\\enum\\root\\legacy_erssdd\"<br />\"HKEY_LOCAL_MACHINE\\system\\currentcontrolset\\services\\erssdd\"
Delete DLL Files
7. Hold down the Windows key and press \"R.\" The Run box opens.
8. Type \"cmd\" into the Run box and click \"OK.\" The Command Prompt opens.
9. Type the following into the Command Prompt. Be sure to press \"Enter\" after each line. <br /><br />“regsvr32 /u strres.dll” <br />“regsvr32 /u mmfix.dll” <br />“regsvr32 /u ftrec.dll” <br />“regsvr32 /u flfxr5.dll” <br />“regsvr32 /u ffwraper.dll” <br />“regsvr32 /u esspcheck.dll” <br />“regsvr32 /u espcheck.dll” <br />“regsvr32 /u df_fixer.dll” <br />“regsvr32 /u ecc.dll”
Delete Files
10. Click on the \"Start\" menu.
11. Click on \"Search Programs and Files.\"
12. Search for and delete the following files. To delete a file, right-click on it and select \"Delete.\"<br /><br />\"errorsafescannerinstall_de.exe\"<br />\"errorsafescannersetup2222.exe\"<br />\"df_kme.exe\"<br />\"ers.exe\"<br />\"sr.exe\"<br />\"install.exe\"<br />\"unins000.exe\"<br />\"unins001.exe\"<br />\"strres.dll\"<br />\"mmfix.dll\"<br />\"ftrec.dll\"<br />\"flfxr5.dll\"<br />\"fixcore.dll\"<br />\"ffwraper.dll\"<br />\"esspcheck.dll\"<br />\"espcheck.dll\"<br />\"df_fixer.dll\"<br />\"ecc.dll\"<br />\"df_proxy.dll\"<br />\"lapv.dat\"<br />\"license.rtf\"<br />\"lock.dat\"<br />\"template.dbx\"<br />\"trace.log\"<br />\"unins000.dat\"
Read more ►

Tuesday, October 1, 2013

How to Delete System32.DLL


1. Power down your computer, wait 30 seconds, then power it back on.
2. As your computer is booting up, tap the F8 key on your keyboard until you are prompted to chose a boot-up option.
3. Choose to boot up into 'Safe Mode' by pushing Enter on your keyboard while 'Safe Mode' is highlighted on your screen. Booting up into 'Safe Mode' will allow you the ability to delete the 'system32.DLL' file.
4. Click the 'Start' menu located on your desktop and then click 'Search.'
5. Choose to search 'All Files and Folders'.
6. Type 'System32.DLL' into the search box and press 'Search.' This will cause the 'Syste32.DLL' file to be displayed in the right-hand window pane.
7. Right click on 'system32.DLL' and choose 'Delete.' Close the search box by clicking the red 'X' in the top right-hand corner.
8. Right click on the 'Recycle Bin' shortcut located on your desktop and choose 'Empty Recycle Bin.' The System32.DLL file is now deleted.
Read more ►

How to Call a Javascript From Visual Basic


1. Open your Visual Basic application. When the application loads, double-click the web form that has the Javascript you want to run. After it opens, right-click the form and select 'Code View.' This displays the Visual Basic code.
2. Enter the code below in your code-behind file:Page.ClientScript.RegisterStartupScript (Me.GetType(), 'alert', 'alertMe();')The 'Me.etType()' returns Javascript. The 'alert' entry is used to give your Javascript function an internal name for the application. Finally, the 'alertMe()' is the name of your Javascript function.
3. Save the file and press the F5 key. This starts the web application in your web browser. Instead of errors, your Javascript function will run as expected.
Read more ►

Update Error 80073712 in Internet Explorer


Run the System Updates Readiness Tool
1. Go to Microsoft’s website and download the System Update Readiness Tool. Locate your computer’s operating system and click on the “Download” link next to it.
2. Install System Update Readiness Tool by clicking “Open” (or “Run”) then clicking “OK” at each step to progress through the installation. Click “Close” when the dialogue box reads “Installation complete.”
3. Restart your computer. Attempt to download any updates interrupted by error message 80073712. If you still receive this error message, try installing Windows Service Pack 1.
Install Windows Service Pack 1
4. Go to Microsoft’s website and download Windows Vista Service Pack 1, which contains a fix for error message 80073712. Click the “Download” button. Please note that SP1 is a very large file (over 500 MB) and may require several hours to download.
5. Click “Save” and then select “Desktop” in the “Save To” option. Click "OK" to begin the download.
6. Run SP1 by double clicking the SP1 icon on your desktop. Click “Next” or “OK” to proceed through each step of the installation. Click “Finish” or “Close” to complete the installation.
7. Restart your computer. Attempt to download any updates interrupted by error message 80073712. If you still receive this error message, perform a repair installation.
Perform a Repair Installation
8. Restart your computer. Open your computer’s DVD drive and insert your Windows Vista DVD. Close the drive to let Windows automatically detect the DVD. Click “Go online to obtain the latest updates for installation” from the list of installation options.
9. Type your product key into the boxes provided. You can find your 25-digit Windows Vista product key on a sticker on the base of your laptop or on one of the sides of your desktop computer’s tower.
10. Read the licensing agreement and click “OK.” Then click “Upgrade” when asked “Which type of installation do you want?”
11. Restart your computer after it has finished downloading and installing all the updates. Attempt to download any updates interrupted by error message 80073712.
Read more ►