- From what I have experienced myself, this error is related to Windows Update.
- First, goto Windows Update and try check for update. If there is any error, for example, it says service is not running, first you can try repair Windows Update.
- Try Windows Update Automated Troubleshooter.
- Try Microsoft Fix It
- Search, download and run "WindowsUpdateDiagnostic.diagcab".
- My solution (I forgot where I found.this working solution but somewhat from Microsoft related web/forum/comment), rename "C:\Windows\SoftwareDistribution\DataStore\Logs\edb.log" or just delete it, and restart your PC. After that my Microsoft Update is working and I now can install .Net Framework 4 smoothly.
- That is my solution, I can't guarantee it will work at your PC or not, do it at your own risk.
Showing posts with label microsoft. Show all posts
Showing posts with label microsoft. Show all posts
Tuesday, August 20, 2013
Friday, July 13, 2012
(Windows XP Setup Error) Setup cannot find the End-User License Agreement (EULA). Setup will not continue.
- From Microsoft Support site, it is because the hard disk if formatted by operating system other than Windows XP. And my problem is because the hard disk if formatted by Windows 7 Setup.
- So, I use MiniTool Partition Wizard, boot from usb pendrive, and format the hard disk to FAT32. You can find my tutorial to create a bootable Partition Wizard from pendrive here.
Wednesday, May 2, 2012
Using Replace (String Function) in Visual Basic 6
Example: I want to replace "a" with "A" in Textbox1 and put the replaced string into Textbox2.
You can't use it directly like this.
Text2.Text = Replace(Text1.Text, "a", "A")
You must make use of variable, like this.
Dim TempVar As String
TempVar = Replace(Text1.Text, "a", "A")
Text2.Text = TempVar
Then the code will work. More info here.
You can't use it directly like this.
Text2.Text = Replace(Text1.Text, "a", "A")
You must make use of variable, like this.
Dim TempVar As String
TempVar = Replace(Text1.Text, "a", "A")
Text2.Text = TempVar
Then the code will work. More info here.
Subscribe to:
Posts (Atom)
