16 November 2010

lunch

Lunch is a great time to hang out with the co-workers and learn more about them.

One guy had venison stew today and offered us all to try it. It smelled great, but as I had already had alot of food, I wasn't able to give it a try. Maybe tomorrow! (Can you believe it was venison?)

Also, one of the partners came down for lunch today (what a humble guy), and dropped multiple times how he is dating someone who weights about 105 lbs and is a size zero, his words "she's skin and bones." (he's 60 or so). Pretty cool to hear an old rich guy talk about girls!

Well, this little project im working on isnt going to do itself... back to it... (need to create a macro to insert a logo in the header of every worksheet, centered and scaled, should be fun!)

6 comments:

  1. you should post the code for the macro when you finish it

    ReplyDelete
  2. i, too, would be interested in viewing this source code

    ReplyDelete
  3. for those who were interested in code:

    Sub headerz()
    '
    ' sick macro for inserting the image I want
    'and scaling it to the pixels I want

    '
    Dim ws As Worksheet
    For Each ws In Worksheets

    ws.PageSetup.CenterHeaderPicture.Filename = _
    "H:\FA\Long_Beach\Logo.jpg"
    With ws.PageSetup.CenterHeaderPicture
    .Height = 90
    .Width = 90
    End With
    With ws.PageSetup
    .CenterHeader = "&G"

    End With
    Next

    End Sub

    ReplyDelete
  4. might want to indicate that this is company proprietary material

    ReplyDelete
  5. great work robert. one question - why is the With...End With necessary for the last command? In other words, it is not necessary. Have a great day.

    ReplyDelete