Wednesday, April 18, 2012

How to Use the Serial Port in Visual Basic


1. Open Microsoft Visual Studio and select 'File->New->Project' from the primary file menu. Then, choose 'Project Types->Visual Basic Projects' and select the 'Console Application' under the templates menu.
2. Right click the project icon and select the 'Add Reference' menu option. Then, choose the 'Com' menu tab and select 'Microsoft Comm Control 6.0' that is listed under 'Component Name'. Choose 'Select' followed by the 'OK' button.
3. Double-click the program module visible in the Visual Basic IDE. This will open the programming window.
4. Input the following programming code to initialize the serial port data structures that will be used to manipulate the serial port once opened:
Dim MSComm1 As MSComm
MSComm1 = New MSComm
Dim Buffer As String
MSComm1.CommPort = 1
MSComm1.Settings = '9600,N,8,1'
MSComm1.InputLen = 0
5. Open the serial port by including the following programming code after the last line of code entered in step 4:
MSComm1.PortOpen = True
MSComm1.InputMode() = InputModeConstants.comInputModeText
MSComm1.InBufferCount() = 0
MSComm1.Output = 'ATV1Q0' & Chr(13)
6. Manipulate the serial port information and then close the serial port by entering the following code at the bottom of the Visual Basic programming module:
Do
Buffer = Buffer & MSComm1.Input
Loop Until InStr(Buffer, 'OK' & vbCrLf)
MSComm1.PortOpen = False
Console.WriteLine('Close the serial port.')
EndModule
7. Select the 'CTRL+F5' keys simultaneously to build and run the project.
Read more ►

Monday, April 16, 2012

How to Remove Nero Coveredextension.Dll


1. Click the Windows logo or 'Start' button in the lower-left corner of the screen.
2. Click the 'Computer' icon if your operating system is Vista or Windows 7. Click 'My Computer' for Windows XP.
3. Double-click the drive letter that corresponds to the hard disk, which is typically 'C.'
4. Open the 'Windows' folder and open 'System32.'
5. Scroll down the list of DLL files until you locate 'coverdextension.dll.'
6. Right-click 'coverdextension.dll' and click 'Delete.' Exit Windows Explorer.
7. Double-click 'Recycle Bin' on the desktop and click 'Empty the Recycle Bin.'
Read more ►

Saturday, April 14, 2012

How to Fix DLL Errors in XP


1. Insert the XP CD into the PC. Restart the PC.
2. Press any key when prompted to boot from CD.
3. Press 'Enter' at the first screen and 'F8' at the second.
4. Highlight the drive containing Windows XP and press 'R,' repairing the operating system and overwriting the faulty DLL files.
Read more ►

Friday, April 13, 2012

How to Fix a HackShield in quot;MapleStoryquot;


1. Navigate to the folder where your copy of 'MapleStory' is installed. By default, it is in the 'Program Files' folder on the root of your boot drive.
2. Open the 'HShield' folder located inside your 'Maplestory' folder. double-click the file named 'HSUpdate.exe.' This will manually start the Hackshield updater that can fix the program if any error is preventing it from starting.
3. Start the 'Internet Explorer' browser and click the 'Tools' button at the top of the menu bar. Click the 'Work Offline' button if there is a green check mark next to it to uncheck it. 'MapleStory' and Hackshield connect to the Internet via Internet Explorer (even if you use another browser like Firefox), and having it set to 'offline' mode will cause errors.
4. Type a description of your exact problems with Hackshield in the pop-up window that appears when the program crashes. The details must go in the 'Describe The Problem' section and your e-mail in the smaller section below it. Click the 'Run AhnReport' button to automatically save the error log files and email it to the creators of Hackshield for analysis. This is a last resort to fix Hackshield and should be done only if the previous steps did not rectify the problem.
Read more ►

Thursday, April 12, 2012

How to Correct ActiveX Errors


1. Click on the 'Tools' button. This will open up a drop-down menu.
2. Click 'Manage Add-ons.' This will open up a new window that features all of the add-ons Internet Explorer has installed.
3. Select the ActiveX control that needs to be corrected.
4. Click 'Disable.' This stops the ActiveX control from working. Make sure to click 'OK' afterward, otherwise the change will not take effect.
5. Select the ActiveX control you just disabled and click on 'Enable.' Click 'OK.' This resets the ActiveX control and will remove any errors associated with it.
Read more ►

How to Close an Internet Browser With the Flash.ccx Add


1. Download the Flash Player Uninstaller (see Resources).
2. Close all open Internet browsers.
3. Double-click the Flash Player Uninstaller icon from your desktop and follow the onscreen prompts for the uninstaller.
4. Restart your computer after the uninstall has completed.
5. Install the latest Adobe Flash Player version from the Adobe website (see Resources).
Read more ►

How Do I Stop Rundll32?


1. Press 'Ctrl' + 'Alt' + 'Delete.'
2. Click on 'Start Task Manager.' The Windows Task Manager opens.
3. Click on the 'Processes' tab of the Windows Task Manager.
4. Locate Rundll.exe from the list of processes. Note that you may have more than one process with the name 'Rundll.exe.' If this is the case, you will need to decide which process to stop.
5. Right-click on 'Rundll32.exe' and select 'Properties.' The Properties window opens. In the Properties window, you will see a file path listed under Location. If the file path reads 'C:\Windows\System32' then the Rundll32.exe process is a legitimate Windows Process and it should not be stopped. If the file path reads anything other than 'C:\Windows\System32' then the Rundll32.exe process belongs to a virus and it should be stopped immediately.
6. Close the 'Properties' window.
7. Right-click on the 'Rundll32.exe' process that you want to stop and select 'End Process.'
Read more ►

Wednesday, April 11, 2012

How to Delete Uxtheme.dll


1. Click 'Start,' 'All Programs,' 'Accessories,' right-click 'Command Prompt' and select 'Run as Administrator.' Type your administrator password if prompted. The Command Prompt opens.
2. Type the following commands into the Command Prompt. Press 'Enter' after each command.regsvr32 /u uxtheme.dlldel uxtheme.dll
3. Type 'exit' and press 'Enter' to close the Command Prompt. Uxtheme.dll is now deleted.
Read more ►

Tuesday, April 10, 2012

How to Install mfc71.dll


1. Click the first link in Resources and wait for the download of the Visual C++ 2008 runtime to begin. Choose the directory where you'd like to save your file.
2. Browse to your file's directory and double-click it.
3. Click 'Next' and continue following the installation instructions until you get a 'Finish' button and click it.
4. Restart your computer.
Read more ►

Monday, April 9, 2012

How to Package a File With OCX in Visual Basic 6.0


1. Complete writing the code for your application including any standard or user-created OCX files needed. Make a note of where on your computer you saved these extra OCX files. Test your Visual Basic application by pressing 'F5' to run the program. Complete any necessary debugging for errors.
2. Create an executable version by clicking 'File' and then 'Make [project].exe.' The 'project' name is the one you assigned at the start of programming and will appear in the list automatically. Let the program compile and save the result.
3. Click on 'Add-Ins' in the top level Visual Basic menu. Select 'Add-In Manager' in the drop-down list. From the list of available add-ins, click on the 'Package and Deployment Wizard.' In the bottom right corner of this window, add a checkmark to the box next to the line reading 'Loaded/Unloaded.' Click 'OK.'
4. Click the 'Package and Deployment Wizard' now in the Add-Ins list. Save the project when prompted. Select the first option on the next screen of the wizard labeled 'Package.' The next screen may remind you that some sources files are newer than the executable file and offer a chance to recompile. You must decide on the necessity of this based on your own code and choose 'Yes' or 'No.'
5. Choose the 'Standard Setup Package' on the next screen and then click 'Next.' Choose where to assemble the package and click 'Next.' Follow the next set of prompts until a list of the files included in the package appears. Any user-created controls held in OCX probably will not appear in the list.
6. Click 'Add' to the right of the file list, locate the additional OCX files on your computer, and add them to the package. Continue clicking 'Next' as you step through the remaining options until the 'Finish' button appears. The resulting setup file includes all the OCX needed to run the application
Read more ►

How to Find Out Which Version of Flash Player is Running on My Computer?


1. Visit the Adobe Flash Player website (adobe.com/software/flash/about).
2. View your computer's current version of Adobe Flash Player. You can find this information in the box labeled 'Version Information.' The box should list something similar to 'You have version 10.1.102.64 installed.'
3. Compare your version of Adobe Flash Player to the latest version. The latest version of Adobe Flash Player is listed in the box below 'Version Information.' If your computer is not running the latest version, consider upgrading.
4. Click the 'Player Download Center' link to upgrade your computer's version of Adobe Flash Player. Click the 'Download Now' button and follow the instructions to install the program.
Read more ►

Saturday, April 7, 2012

How to Debug in DLL


1. Open Visual Studio 2010. Launch the 'Solution Explorer' utility from the 'Tools' menu.
2. Select the project that handles the DLL you wish to debug within the Solution Explorer, and then select the 'Property Pages' option from the 'View' menu.
3. Select the 'Debugging' category from within the 'Configuration Properties' folder.
4. Write or paste the path to the '.EXE' that handles the DLL you wish to debug in the command box.
5. Add any additional arguments in the 'Command Arguments' box if needed, and then click the 'Debug' button to begin debugging the DLL. The debugging process will take a variable length of time, depending on how large the program is and at which point in its execution the debugger encounters an error. For most programs, it will be only a few short minutes before the debugging is complete and you are prompted with the results.
Read more ►

How to Fix a Computer Program That#039;s Not Responding


1. Launch your antivirus program and click the 'Update' button to install any virus or spyware definition updates. If you do not have an antivirus program, download and install AVG Anti-Virus free (see Resources).
2. Perform a full system scan and delete all detected files. Close your antivirus program
3. Run a registry cleaner. If you do not have a registry cleaner, download and install CCleaner free (see Resources).
4. Launch your program after it has installed and click the 'Registry' button on the left panel. Click 'Scan for issues.' CCleaner will scan for missing .dll files, leftover registry values from uninstalled applications and more.
5. Click 'Fix selected issues' when the scan is complete and click 'Yes' to back up and save the registry. Click 'Fix all selected issues' and click 'OK' to remove unnecessary registry entries and repair corrupt ones.
6. Defragment your computer system to allocate scattered files. To defragment your computer system, click the Windows 'Start' button and click 'All Programs.'
7. Scroll up and select 'Accessories.' Click 'System Tools' and click 'Disc Defragmentor.' Click on your computer hard drive and click 'Defragment.'
8. Uninstall and reinstall your program if it is not responding every time you use it. To uninstall the program, click the Windows 'Start' button and click the 'Control Panel.' Double-click 'Add or Remove Programs.' Click the program you want to uninstall and click 'Remove/Uninstall.' Click 'Yes' to confirm and uninstall the program.
9. Insert your installation disc for your program into the CD-ROM drive on your computer and reinstall it. If you have to reinstall the program by a website download, navigate to the website you used and download the program.
Read more ►

How to Register Mswinsck.ocx


1. Press the 'Windows' key and the 'R' key at the same time to open a 'Run' dialog box. Type 'cmd' (no quotation marks) into the dialog box and click 'OK.'
2. Change directories to the location that you copied the Mswinsck.ocx file to, using the 'cd' command. If you copied the file into the standard Windows 7 system directory, for instance, you would input 'cd C:\Windows\System32' and press 'Enter.'
3. Type the command 'Regsvr32 Mswinsck.ocx' and press 'Enter.' Include a '/s' before the name of the OCX to run the command in silent mode and suppress messages; otherwise wait for the Windows system to confirm that it has registered the file.
4. Click on the 'Windows Orb' button to open the 'Start' menu, then click the arrow next to the 'Shut Down' button. Select 'Restart' and reboot the system to ensure that changes take effect.
Read more ►

Friday, April 6, 2012

How to Delete Dbghelp.Dll


1. Log in to the Windows operating system as an administrator.
2. Click the 'Start' menu and type 'cmd' into the 'Search' box and press 'Enter' if you are using Windows Vista or 7. If you are using a version of Windows XP, click 'Start' and 'Run' and type 'cmd' into the dialog box and click 'OK.' The Windows Command Prompt opens.
3. Type 'regsvr32 /u dbghelp.dll' (without the quotation marks) into the Command Prompt and press 'Enter.'
4. Click 'Yes' when asked if you are sure that you want to delete dbghelp.dll.
5. Close the Command Prompt and restart your computer.
Read more ►