Problem installing Hauppauge Win TV-HVR 4000

Windows Vista I’ve installed Win TV-HVR 4000 on all vista versions and found one that it only worked with vista that supports media center. Here is a link that shows the features for different vista versions http://www.microsoft.com/windows/windows-vista/compare-editions/default.aspx. So Win TV-HVR 4000 works on two vista versions: 1. Home Premium. 2. Ultimate. Windows XP After installing

Vista Photo Gallery background colors are off, dark, light green, or strange color.

To change the background color to normal, do the following: 1. Surf to http://www.adobe.com/digitalimag/adobergb.html & download the Adobe RGB (1998) ICC profile, then unzip the file. You can also download it by clicking on AdobeRGB1998.icc. 2. Goto “Control Panel”, then “Color Management” 3. Click on the “All Profiles” Tab, then click “Add”. 4. Browse to

Command in right-click

To enable Command when right-clicking on a file: 1. Create a new file with the extension (.reg).2. Copy and paste the code below in it and save the file. REGEDIT4[HKEY_CLASSES_ROOTDirectoryshellCommand] @=”” [HKEY_CLASSES_ROOTDirectoryshellCommandcommand] @=”cmd.exe \”%1\”” 3. Double-click the file, the message “Are you sure you want to add the information [path and name of the file]

Wordpad in right-click

To enable wordpad when right-clicking on a file: 1. Create a new file with the extension (.reg).2. Copy and paste the code below in it and save the file. REGEDIT4[HKEY_CLASSES_ROOT*shell][HKEY_CLASSES_ROOT*shellWordpad][HKEY_CLASSES_ROOT*shellWordpadcommand]@=”Write %1″ 3. Double-click the file, the message “Are you sure you want to add the information [path and name of the file] to registry?” will

Notepad in right-click

To enable Notepad when right-clicking on a file: 1. Create a new file with the extension (.reg).2. Copy and paste the code below in it and save the file. REGEDIT4[HKEY_CLASSES_ROOT*shell][HKEY_CLASSES_ROOT*shellNotepad][HKEY_CLASSES_ROOT*shellNotepadcommand]@=”Notepad %1″ 3. Double-click the file, the message “Are you sure you want to add the information [path and name of the file] to registry?” will

In/Uninstall dll/activex using right-click

To in/uninstall dlls/activex by right-clicking on the file, do the following: 1. Create a new file with the extension (.reg).2. Copy and paste the code below in the file and save it. REGEDIT4; ActiveX DLLs[HKEY_CLASSES_ROOT.dll]@=”dllfile”[HKEY_CLASSES_ROOTdllfileshellregdll]@=”Register ActiveX DLL”[HKEY_CLASSES_ROOTdllfileshellregdllcommand]@=”regsvr32.exe “%L””[HKEY_CLASSES_ROOTdllfileshellunregdll]@=”Unregister ActiveX DLL”[HKEY_CLASSES_ROOTdllfileshellunregdllcommand]@=”regsvr32.exe /u “%L””; ActiveX Controls[HKEY_CLASSES_ROOT.ocx]@=”ocxfile”[HKEY_CLASSES_ROOTocxfileshellregocx]@=”Register OCX Control”[HKEY_CLASSES_ROOTocxfileshellregocxcommand]@=”regsvr32.exe “%L””[HKEY_CLASSES_ROOTocxfileshellunregocx]@=”Unregister OCX Control”[HKEY_CLASSES_ROOTocxfileshellunregocxcommand]@=”regsvr32.exe /u “%L””; ActiveX EXEs[HKEY_CLASSES_ROOT.exe]@=”exefile”[HKEY_CLASSES_ROOTexefileshellregexe]@=”Register ActiveX EXE”[HKEY_CLASSES_ROOTexefileshellregexecommand]@=””%L”

[How To] Install Microsoft Java VM

The following steps to install Microsoft Java VM: 1. Download and install on Java VM based on your Windows: Microsoft Java Virtual Machine for Windows XP: download [ ms-java-vm-xp-5.0.3802.0.exe ] Microsoft Java Virtual Machine for Windows XP, Windows 2000 SP2, Windows NT 4.0, Windows Me and Windows 98Download [ msjavx86.exe ] More links: www.java-virtual-machine.netwww.alibre.com/support/downloads To

Read/write file text

The following functions is for reading/writing the entire file content. Imports system.io Public Shared Function ReadTextFromFile(ByVal FullPath As String, _Optional ByRef ErrInfo As String = “”) As String Dim strContents As StringDim objReader As StreamReaderTryobjReader = New StreamReader(FullPath)strContents = objReader.ReadToEnd()objReader.Close()Return strContentsCatch Ex As ExceptionErrInfo = Ex.MessageEnd TryEnd Function Public Shared Function SaveTextToFile(ByVal strData As String,