هر چی که فکر کنی تو این هست




شهریور 1387
ش ی د س چ پ ج
            1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31          
آرشیو
موضوع بندی

Close
تبلیغات در بلاگ اسکای
دوشنبه 1 مرداد ماه سال 1386
تصاویر ویندوز از ورژن 1 تا ویستا

Windows 1.0

Evolution of versions Windows

Windows 1.0

Windows 1.01

Windows 1.01 screenshot

Windows 2.0

Windows 3.0

Windows 3.1

Windows NT 3.1

Windows 3.11

Windows 95

Windows NT 3.51

Windows 98

Windows NT 4.0

Windows 2000

Windows XP

Windows Vista


برای عضویت در خبرنامه این وبلاگ نام کاربری خود در سیستم بلاگ اسکای را وارد کنید
نام کاربری
تعداد بازدیدکنندگان : 678881


Powered by BlogSky.com

عناوین آخرین یادداشت ها

تبلیغات

#FFFFFF
 
LANGUAGE="JavaScript"> var timerID = null; var timerRunning = false; function stopclock () { if(timerRunning) clearTimeout(timerID); timerRunning = false; } function showtime () { var now = new Date(); var hours = now.getHours(); var minutes = now.getMinutes(); var seconds = now.getSeconds() var timeValue = "" + ((hours >12) ? hours -12 :hours) timeValue += ((minutes < 10) ? ":0" : ":") + minutes timeValue += ((seconds < 10) ? ":0" : ":") + seconds timeValue += (hours >= 12) ? " P.M." : " A.M." document.clock.face.value = timeValue; // you could replace the above with this // and have a clock on the status bar: // window.status = timeValue; timerID = setTimeout("showtime()",1000); timerRunning = true; } function startclock () { // Make sure the clock is stopped stopclock(); showtime(); }