Monday, January 14, 2013

How to Use Goal Seek in Visual Basic


1. Open the Excel document in which you'd like to run your Goal Seek macro.
2. Find the two cells you would like to use for Goal Seek. The first should be the cell for which you have a fixed goal. The second should be a cell you allow Excel to change in order to fulfill that goal. The first cell's value must be a formula that is based on the second cell--otherwise, no matter what changes Excel makes to the second cell, no changes will appear in the first.
3. Open the Macro window. In Excel 2007 or later, do this by clicking on the "View" tab of the ribbon, then clicking "Macros." In earlier versions of Excel, click the "Tools" menu, choose "Macro," then choose "Macros."
4. Type a name for your Goal Seek macro in Macro window, and click "Create." This will launch the Visual Basic for Applications editor and show you the text of the new Macro, which will start out as an empty subroutine like this:Sub MyMacroName()
End Sub
5. Create a Range object representing the cell for which you have a known goal (the first cell from Step 2). For example, if you'd like to Goal Seek cell A1, write:Dim goalCell As Range
goalCell = ThisWorkbook.Worksheet(1).Range("A1")
6. Create a Range object representing the cell you'd like Excel to change to cause the first cell to reach the known goal. For example, if you'd like Excel to manipulate cell A2, write:Dim variableCell As Range
variableCell = ThisWorkbook.Worksheet(1).Range("A2")
7. Call the GoalSeek method on the goal cell's Range. As the first argument, provide the value you'd like it to Goal Seek to; as the second argument, provide the variable cell's Range. For example, if you'd like to Goal Seek to 0, write:goalCell.GoalSeek(0, variableCell)
Read more ►

How to Open DLL Files amp; Programs in Microsoft


Free Software for Opening DLL Files
1. Download the most recent version of Resource Hacker. Despite the name, Resource Hacker is legal freeware---it is used for hacking into your own files; it is not used for illegal third-party hacking. Resource Hacker is a free download. The file is well reviewed and is not known to have major bugs or glitches; the application received a perfect 'Stability' score at Soft32.com, a well-known downloading portal.
2. Install Resource Hacker by unzipping the file and clicking on the 'Install' icon within the now extracted ResHack.zip folder. If you do not have a program for unzipping files, download a trial or paid version of WinZip.
3. Open Resource Hacker and select the DLL file you wish to open. Use the Resource Hacker interface to look at the various file components. Resource Hacker will be able to open most DLL and program files, but editing capabilities are somewhat limited. If you simply need to open up a file, Resource Hacker will work, but to do more advanced operations, paid downloads are necessary.
Paid Software for Opening DLL Files
4. Download and install the paid or 30-day trial version of the Heaven Tools brand Resource Tuner for simple opening and editing operations. Resource Tuner is similar to Resource Hacker; however, since offered from a reputable software company, it comes backed by decent customer support and regular updates. Either Resource Hacker or Resource Tuner are good options for simple opening and editing of resource files. For more advanced opening and editing tools, proceed to Step 2.
5. Download the Heaven Tools brand PE Explorer. Free 30-day trials are offered, but for extended use, you will need to pay. The cost varies depending on what you'll be using the program for---it costs less for personal use than it does for business use. After you purchase the software, the complete file can be downloaded or you can request a CD copy of the software.
6. Install PE Explorer by clicking on the downloaded install files or simply inserting the easy-to-use install CD. Follow on-screen directions for installation and activation.
7. Open PE Explorer. Use the program to open and edit most resource files and programs, including DLL, EXE, SCR, CPL, SYS, BPL and DPL file extensions.
Read more ►

How to Repair Xvidcore DLL


1. Navigate to the DLL-files, DllDump, or DLL4Free website. Download the Xvidcore.dll file (see Resources).
2. Right-click the saved DLL file and click 'Copy.' Go to the 'Start' menu, click 'Computer,' double-click the 'C:' drive, double-click the 'Windows' folder and then the 'System32' folder. Right-click anywhere in a blank space and click 'Paste.'
3. Go to the 'Start' menu, type 'run' in the 'Start Search' box and press 'Enter.' Type Regsvr32 'C:\Windows\System32\xvidcore.dll' in the search field and hit 'Enter' to register the DLL. Click 'Yes' in the pop-up to confirm the registration.
4. Restart your computer.
Read more ►

Sunday, January 13, 2013

How to Enable Terminal Services in ActiveX


1. Download the Terminal Services ActiveX control from the Microsoft website.
2. Select the language you want to work with from the drop-down menu then click the 'Go' button. Click the 'I agree' option from the License Agreement page.
3. Click the 'Save this program to disk' option from the File Download. Select a folder on your computer to save the program then click the 'Save' button.
4. Locate the folder you selected to save the file in then double-click on the file.
5. Enter 'C:\Windows\Web\TSWeb' into the text box that appears then click the 'OK' button. Click on the 'Yes' button if you are prompted to create the TSWeb folder. The Terminal Services will then be activated on your computer.
Read more ►

How to Get Rid of C:\Windows\System32\Ddraw.dll


1. Click 'Start,' type 'cmd' into the search field and press 'Enter' to open the Command Prompt.
2. Type the following command into the Command Prompt and press 'Enter.'cd c:\window\system32
3. Type the following command into the Command Prompt and press 'Enter.'regsvr32 /u Ddraw.dll
4. Type the following command into the Command Prompt and press 'Enter.'del Ddraw.dll
5. Close the Command Prompt.
Read more ►

How to Use Visual Basic Express


1. Download the free Visual Basic Express 2008 from the Microsoft Visual Studio Download page listed in the Resources section and follow the instructions to install the software.
2. Click on 'Start,' then 'All Programs' and locate the installed program listed as Microsoft Visual Basic 2008 Express Edition. Click on this to start the program.
3. Click on 'File,' then 'New Project' and choose 'Windows Forms Application.' In the empty box at the bottom, provide a name like 'My First VB Program' and click 'OK.'
4. Display the Properties pane on the right by clicking on 'View,' then 'Properties Window.' The Tool pane should be showing on the left. If not, display it by repeating this step and clicking on 'Toolbox' in the View drop down menu.
5. Double-click the Label tool in the Toolbox to place a label on the form you see. In the Properties pane, double-click on the Label Text property and type 'Hello there, what is your name?'
6. Double-click on the Textbox control, and then drag it down below the Label you just created. Change the Width (under Size) property to 275. Double-click on the Button tool and then drag it below the Textbox. Change the Button Text property to 'Continue.'
7. Double-click on the Continue button to open the Code view. Type the following text between the line that begins 'Private Sub Button1_Click' and the 'End Sub' line:
Dim MyName As String
MyName = TextBox1.Text
TextBox1.Text = 'Glad to meet you, ' & MyName & '. My name is Zork.'
8. Click 'Debug,' then 'Start Debugging' to test the program. If you entered the code correctly, you should see a dialog.
Read more ►

Saturday, January 12, 2013

How to Pick the Default Viewer in IE for the PDF


1. Close Internet Explorer. Start the Adobe Acrobat Reader program.
2. Click "Edit" and select "Preferences." From the list on the left, select "Internet."
3. Uncheck "Display PDF in browser" and click "OK." Open the "Preferences" window again. Select "Internet." Place a check next to "Display PDF in browser."
4. Open Internet Explorer. Click "Tools." Click "Manage Add-ons."
5. Click "Toolbars and Extensions." Look for and right-click "Adobe Acrobat Control for ActiveX (pdf.ocx)." Select "Enable." Click "OK."
6. Restart Internet Explorer. PDF files opened within Internet Explorer will display within the browser itself.
Read more ►

How to Program a Pansat 2800A Receiver


1. Press 'Menu' with your 2800A connected to your television and press 'Installation' once it appears on the screen.
2. Press 'OK,' select 'Antenna Setup' and press 'OK' again.
3. Select 'OK' next to the 2800A line and press 'Exit.'
4. Select 'Satellite Scan' and press 'OK' in the menu and allow the progress bar to advance to 100 percent.
5. Select 'Satellite Scan' again on a different channel and press 'Exit' once the progress is completed to 100 percent.
Read more ►

Friday, January 11, 2013

How to Repair System 32 Files


1. Turn your computer on and start tapping on 'F8' at the top of your keyboard.
2. Use the arrow keys to high light the 'Safe Mode' option in the next window. Press 'Enter' to boot the computer into Safe Mode.
3. Click the 'Start' menu after the computer has booted.
4. Go to 'Computer' and then to your C: drive. Right click on the C: drive and select the 'Properties' tab.
5. Go over to the 'Tools' button and then click the 'Check Now' tab under the 'Error Checking' prompt.
6. Check the small box next to the option labeled 'Automatically fix file system errors' and then click the 'Start' button at the bottom of the window.
7. Restart your system after the scan has completed.
Read more ►

Thursday, January 10, 2013

How to Reinstall Pwrmgr in a T60


1. Click 'Start' and 'Control Panel.' Select 'View by Category' and click 'Uninstall a program.' Click 'ThinkPad Power Management Driver' and select 'Uninstall' to remove the current version from your computer. Follow the prompts and reboot your computer.
2. Log in to your administrator account in Windows. Download and save the latest version of the Power Managment driver from the IBM website. Double-click the installation file and follow the onscreen instructions. Choose a location to install the driver and click 'Next.'
3. Click 'Install' on the 'Ready to Install' window and select the check box next to 'Install ..... now.' Click 'Finish' to install the driver and reboot your computer when prompted. Then delete the installation file.
Read more ►

Wednesday, January 9, 2013

How to Repair Add/Remove Programs in Windows XP


1. Click 'Start' then 'Run'
2. Type 'regsvr32 Appwiz.cpl' and click 'Enter.' Click 'OK' on the 'RegSvr32' dialog box.
3. Type 'regsvr32 mshtml.dll' and click 'Enter.' Click 'OK' on the 'RegSvr32' dialog box.
4. Type 'regsvr32 shdocvw.dll -i' and click 'Enter.' Click 'OK' on the 'RegSvr32' dialog box.
5. Type 'regsvr32 shell32.dll -i' and click 'Enter.' Click 'OK' on the 'RegSvr32' dialog box.
6. Reboot the computer and access the add/remove programs utility, which should now work properly.
Read more ►

Tuesday, January 8, 2013

How to Fix Mshtml.dll


Method One
1. Click on the 'Start' menu, and click on 'Control Panel.'
2. Click on 'Uninstall a Program' under 'Programs.'
3. Click on 'Turn Windows features on or off' in the left pane. A new window will open.
4. Uncheck the box next to 'Internet Explorer 8' (or whatever version of Internet Explorer you have) and click 'OK.'
5. Go to the link in Resources and download the current version of Internet Explorer. This should fix the Mshtml.dll file. If it does not, continue to the next method.
Method Two
6. Click on the 'Start' menu, and click on 'Run.'
7. Type 'cmd' (without the quotation marks) into the open box and click 'OK.' The Command Prompt window will open.
8. Type 'regsvr32 Mshtml.dll' (without the quotation marks) into the Command Prompt window and press 'Enter.' This will re-register the Mshtml.dll file.
9. Restart your computer.
Read more ►

How to Replace Missing Registry amp; DLL Files


1. Note the filename of the missing DLL in the error message. Many DLLs have long and cryptic names made up of seemingly-random letters and numbers, so be sure you have it exactly as displayed. One simple solution is to save it to the clipboard and paste it in when you need it.
2. Visit a DLL download website (see Resources) and search for the file in question. Download it and extract the ZIP file to a hard-drive location of your choice. The logical choices are C:\Windows\System32 or the folder of the program that requires it, but anywhere will do.
3. Press Win-R to open the Run dialog. Enter the following command:Regsvr32 'C:\Windows\System32\example.dll'Replace the path and filename with that of your DLL. This will catalog the file in the Windows Registry, and allow programs to find it in the future.
Read more ►

How to Register Msvcr80.Dll


1. Go to the Start menu, type "run" in the "Start Search" box and hit "Enter" to start the "Run" command prompt in Windows Vista or 7.Go to the Start menu and click "Run" to start the "Run" command in Windows XP.
2. Type the following string in the command prompt of the Run window:Regsvr32 "C:\Windows\System32\Msvcr80.dll"Press "Enter" on the keyboard.
3. Click "Yes" in the confirmation pop-up to register the Msvcr80.dll.
Read more ►

Monday, January 7, 2013

How to Fix the Stop C0000218 Error in Windows XP


How to Fix the STOP: c0000218 {Registry File Failure} Error
1. Check if your hardware is compatible with Windows XP. You can find compatibility information at the official Microsoft marketplace website (see Resources).
2. Use the recovery system if your hardware is compatible but is still not working. You can access the recovery console by simply putting in your Windows XP CD before booting your computer. You will be asked whether you want to 'Repair or Recover.' Simply press the 'R' key.
3. Type in your administrator password. (You must have admin access to use this option.)
4. Choose to use the 'chkdsk' command line, which will allow you to check your disk. Once in the chkdsk use the 'chkdsk /r' command to check your hard disks for errors. Press 'Enter' to start the disk check.
5. Type in 'chkdsk /f'. If any errors are found this will allow your computer to attempt a fix of the broken drive.
6. Restart your computer after the disk fix has been performed, and attempt to run your Windows XP setup again.
7. Replace your hard disk if the setup fails with the same message. At this point your hard disk is more than likely broken and needs to be replaced.
Read more ►