Windows 7 Beta 1 Build 7000 Installation with Screenshots
Written by ShaDow on January 3rd, 2009 with no comments.
Read more articles on Windows 7 Tips and otherSoftware.
You are currently browsing the articles from MS Windows Vista Compatible Software written on
Written by ShaDow on January 3rd, 2009 with no comments.
Read more articles on Windows 7 Tips and otherSoftware.
Written by ShaDow on January 3rd, 2009 with no comments.
Read more articles on otherSoftware and Windows vista tips.
Written by magakos on January 3rd, 2009 with no comments.
Read more articles on Ubuntu Linux and otherSoftware.
What does WebTV and Windows Media Center have in common? It’s all part of Microsoft’s plan to take over the world converge the PC with television, according to a recent history lesson published on Microsoft Videos. The 2-minute video revisits some “interesting” interfaces from WebTV and briefly shows off WMC in Windows 7 (nothing new if you’ve been keeping up with the leaks). How far we’ve come.
Written by Long Zheng on January 3rd, 2009 with no comments.
Read more articles on otherSoftware and blog.

Written by Sekhy! on January 3rd, 2009 with no comments.
Read more articles on otherSoftware and windows 7 and Wallpaper.
Here to example of using loob with condition to calculate discount price.
Posted in VB.net Tagged: VB.netModule Module1
Dim Action As Integer
Dim i As Integer
Dim price As Double
Dim discount As Double
Dim net As Double
Dim discount_percent As StringSub Main()
DoConsole.WriteLine(”Main Menu”)
Console.WriteLine(”1. Show the discount info”)
Console.WriteLine(”2. Calculate the Discount”)
Console.WriteLine(”3. Show all Discount”)
Console.WriteLine(”4. Exit”)
Console.WriteLine(”Choose your action”)Action = Console.ReadLine
If (Action = 1) Then
Console.WriteLine(”[0-1000] 5%”)
Console.WriteLine(”[1001-5000] 10%”)
Console.WriteLine(”[> 5000] 15%”)ElseIf (Action = 2) Then
Console.WriteLine(”Please Enter the price”)
price = Console.ReadLine()
If (price < 0) Then
Console.WriteLine(”You can not the Negative Number”)ElseIf (price >= 0) And (price <= 1000) Then
discount = 0.05
discount_percent = discount * 100
Console.WriteLine(”Discount Percentage is ={0}”, discount_percent)ElseIf (price >= 1001) And (price <= 5000) Then
discount = 0.1
discount_percent = discount * 100
Console.WriteLine(”Discount Percentage is ={0}”, discount_percent)Else
discount = 0.15
discount_percent = discount * 100
Console.WriteLine(”Discount Percentage is ={0}”, discount_percent)End If
ElseIf (Action = 3) Then
Console.WriteLine(”The Price is={0}”, price)
Console.WriteLine(”The Percentage of Discount is={0}”, discount)
net = price * (1 - discount)Console.WriteLine(”You have to pay={0}”, net)
ElseIf (Action = 4) Then
Console.WriteLine(”Exit”)
Else
Console.WriteLine(”You Ente the wrong number”)End If
Console.ReadLine()
Console.Clear()Loop While (Action = 1) Or (Action = 2) Or (Action = 3)
End Sub
End Module

Written by Myhouse on January 3rd, 2009 with no comments.
Read more articles on VB.net and otherSoftware.