Archive for the "Microsoft" Category

13
Nov

A helicopter with a pilot and a single passenger was flying around above Seattle when a malfunction disabled all of the aircraft’s navigation and communications equipment. Due to the darkness and haze, the pilot could not determine the helicopter’s position and course to get back to the airport.

The pilot saw a tall building with lights on and flew toward it, the pilot had the passenger draw a handwritten sign reading “WHERE AM I?” and hold it up for the building’s occupants to see.

People in the building quickly responded to the aircraft, drew a large sign, and held it in a building window. Their sign said “YOU ARE IN A HELICOPTER.”

The pilot smiled, waved, looked at his map, determined the course to steer to SEATAC airport, and landed safely.

After they were on the ground, the passenger asked the pilot how the “YOU ARE IN A HELICOPTER” sign helped determine their position.

The pilot responded “I knew that had to be the Microsoft support building, they gave me a technically correct but entirely useless answer.”

18
Oct

Dual Boot in Vista

Author: admin

Some of you may have purchased systems that came with vista pre-installed. If you want to run an older operating system such as XP or win2k [and you do not want to have to reinstall vista] then you might be interested in this guide. Note to do this you must have a MS vista install DVD; a recovery type disk is not going to work.

Prior to beginning this task, make a complete backup of your system. In addition do make sure that win2k/xp has drivers available for your hardware. This is especially important if you have a laptop. If there are no drivers available, you are wasting your time.

To start we need to create a partition in which to install win2k/xp. Open disk management; start>run and type in “diskmgmt.msc” without quotes. Hit enter; this brings up disk management. Right click your drive and choose shrink from the menu. I would make the partition approx 10gig for win2k and 15-20gig for XP [depending on how much software you are going to install] Once you have completed the shrink process, create a partition and format with NTFS. [Using disk management] At this point your new partition has been assigned the next available drive letter. I like drive letters in order so I use disk management to reassign the drive letters for the optical drives so I can assign drive letters sequentially for the hard disk partitions. With the new partition now labeled D and optical drives following, it is now time to install our older operating system.

Boot with your win2k/xp CD [CD set as first boot device in the bios] Select the “D” partition as to where you will install. I will not go into detailed instructions as to how to install win2k or xp; there are many guides on the web for this purpose. Complete the install. At this point, vista will no longer boot; we need to repair the boot sector and vista’s boot configuration files. Boot into win2k/xp and open a command prompt; start>run>cmd and hit enter. We will now use Bootsect.exe to restore the Vista MBR and the boot code that transfers control to the Windows Boot mgr app.

Insert your vista dvd into the drive; cancel window that may autorun. Type this in
Drive:\boot\Bootset.exe /NT60 All hit enter
In this command drive is the drive where the Vista install DVD is located.

Next we will use Bcdedit.exe to manually create an entry for win2k/xp

Type Drive:\windows\system32\Bcdedit /create {ntldr} –d “Description for earlier Windows” hit enter.
Note in this command drive is where you have vista installed; most likely “C” The description can be whatever you want ie Windows 2000, Windows XP, etc.

We now will set the active partition. Note in this command drive is the letter for the active partition; again most likely “C”
Drive:\Windows\system32\Bcdedit /set {ntldr} device partition=X: hit enter Again this is most likely C not X.

Drive:\windows\system32\Bcdedit /set {ntldr} path \ntldr hit enter
Drive:\windows\system32\Bcdedit /displayorder {ntldr} –addlast hit enter.

Now restart the system and you will have the vista boot menu giving you the choice of operating systems.

27
Sep

Excel 07 Bug

Author: admin

There is apparently a bug in the new version of Excel that returns the wrong number when you multiply certain numbers. An ex-MS programmer addresses the issue…

The first thing you have to understand is that Excel keeps numbers, internally, in a binary format, but displays them as strings. For example, when you type 77.1, Excel stores this internally using 64 bits:

0100 0000 0101 0011 0100 0110 0110 0110
0110 0110 0110 0110 0110 0110 0110 0110

The display is showing you four characters: “7″, “7″, “.”, and “1″.

Somewhere inside Excel is a function that converts binary numbers to strings for displaying. This is the code that has the bug that causes a few numbers which are extremely close to 65,535 to be formatted incorrectly as 100,000.

For more: Excel Bug