I want to set up fixed IP addresses for the laptops
Do I have to do this for each connection type - wired and wireless - or if I set it for one is it then set for both ?
(Windows 7 if it makes any difference)
You will need to record the Media Access Control (MAC) details for each adapter - and there will be two for a laptop as the wired and wireless adapters will have their own [MAC addresses]. You can then assign fixed-addresses against those MAC addresses such that a laptop always receives the same address(es).
Windows tends to go a little bonkers if you assign the same IP address to both the wired and wireless adapter, so it is best to list each adapter (for the laptop) and assign a separate address. That way, if a user plugs in, and the Wi-Fi is still connected, the laptop should continue to work without throwing weird errors. Linux systems running NetworkManager are able to cope with the same IP address for both adapters, as it switches to the faster connection and ignores the other.
To find the adapter's MAC, open a command prompt and issue the command "ipconfig /all". There will be a tonne of stuff scrolling up the command window. Look for the MAC strings for the wires and wireless adapters.
Microsoft likes to ignore common-protocol, so they list their MAC details with hypens in between the hexadecimal numbers, whereas proper systems use the colon (and upper-case). So a MAC address of 1C:6F:65:AD:98:5D will appear as 1C-6F-65-AD-98-5D under Windows; and if you are using the DHCP server under Windows Server, it takes the MAC address as a continuous string with no separators, e.g. 1C6F65AD985D
Once you have assigned the fixed address, you can test your DHCP config is working by opening and command prompt (as Admin) and issuing the following commands:
ipconfig /release
ipconfig /renew
After that, "ipconfig /all" will list the IP addresses of the adapters and you should be able to see if your config is working.