Question : Exchange 2007 sp2 install

We are planning to upgrade our Exchange 2007 server from sp1 to sp2.  On our Exchange server we have the Hub Transport, Client Access and Mailbox roles, we also have a separate Edge server with the Edge Teransport role.  In the sp2 release notes it suggests upgrading the servers in this order:
Client Access servers
Unified Messaging servers
Hub Transport servers
Edge Transport servers
Mailbox servers
If I run the sp2 upgrade on the Exchange server first will it let me specify to upgrade just the Client Access and Hub Transport roles first > then upgrade the Edge server > then go back and upgrade the Mailbox role on the Exchange server?  Or should I just upgrade all roles on the Exchange server first (Hub, Client Access, and Mailbox), then upgrade the Edge Transport server last?

Answer : Exchange 2007 sp2 install

This si the way Java is, an anoying problem. The only way around it that I have found is to initiate a timer for how long you think the second click should take after the first one (0.5-1 second I think is ok, but have a play with it)

See the code example below, I grabbed it from http://forums.sun.com/thread.jspa?forumID=257&threadID=413348

let me know if you need more help, Regards
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
component.addMouseListener( new MouseAdapter() {
			final Timer timer = new Timer( 300,new ActionListener(){
				 public void actionPerformed(ActionEvent e) { 
					System.out.println("single");
					timer.stop(); 
				}
			});
			public void mouseClicked (MouseEvent e){
				if(timer.isRunning()) {
					timer.stop();
					System.out.println("double"); 
				}else {
					timer.restart();
				}
			}
	});
Random Solutions  
 
programming4us programming4us