{ iPhone Code Snippets: Create Alert

{ June 10th, 2010 | By | Under: Programming | No Comments »

UIAlertView *alert = [[UIAlertViewalloc]
  initWithTitle:@"Here's the title"
  message:@"Here's the alert message"
  delegate:nil
  cancelButtonTitle:@"Okay"
  otherButtonTitles:nil];
[alert show];
[alert release]
No Comments »

{ The Best Way to hide sheets in excel!

{ February 22nd, 2010 | By | Under: Excel | No Comments »

Today i googled to try to help a friend hide this excel sheet using VBA.

I was surprised that i had to go to the 2nd page to find the best way to do so.

So here it is

Original Post (for detailed steps)

http://vbatips.com/category/vba/page/4/

No Comments »