Simply Program

Simply programming - It’s a life style

Archive for May, 2009...

Filed under Programming, PHP

Read… and study it!

http://us2.php.net/manual/en/function.flock.php

Comments (0) Posted by sp on Monday, May 4th, 2009

Filed under Programming

This macro will allow you to extract a url/mailto from excel and place it into the next cell.
To see more options: Click here

CODE:
  1. Sub ExtractHL()
  2. Dim HL As Hyperlink
  3. For Each HL In ActiveSheet.Hyperlinks
  4. HL.Range.Offset(0, 1).Value = HL.Address
  5. Next
  6. End Sub

Comments (0) Posted by sp on Saturday, May 2nd, 2009