<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>cathylopez.com</title>
	<atom:link href="http://cathylopez.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://cathylopez.com</link>
	<description>sharing some random thoughts</description>
	<lastBuildDate>Fri, 07 May 2010 01:36:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Invoking Apex from a Custom Button using a Visualforce Page</title>
		<link>http://cathylopez.com/2010/02/22/invoke-apex-from-custom-button-using-visualforce-page/</link>
		<comments>http://cathylopez.com/2010/02/22/invoke-apex-from-custom-button-using-visualforce-page/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 08:42:57 +0000</pubDate>
		<dc:creator>cathy</dc:creator>
				<category><![CDATA[Salesforce.com]]></category>
		<category><![CDATA[APEX]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[SControl]]></category>
		<category><![CDATA[Visual Force page]]></category>

		<guid isPermaLink="false">http://cathylopez.com/?p=124</guid>
		<description><![CDATA[
This post is about creating a custom button to be placed in a detail page using Visualforce page instead of an S-control (deprecated). I will be using Opportunity object for this example.
The Controller:

public class VFController
&#123;
    private final ApexPages.StandardController theController;
    public List&#38;lt;Opportunity&#38;gt; listOpps = new List&#38;lt;Opportunity&#38;gt;&#40;&#41;;
&#160;
    public [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://gagabux.com/register.php/melchisholm22.html" target="_blank"><img src="http://gagabux.com/themes/GeN3/images/banner4.gif" alt="" align="center" /></a></p>
<p>This post is about creating a custom button to be placed in a detail page using Visualforce page instead of an S-control (deprecated). I will be using Opportunity object for this example.</p>
<p><strong>The Controller:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">public</span> <span style="color: #000000; font-weight: bold;">class</span> VFController
<span style="color: #009900;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">private</span> <span style="color: #000000; font-weight: bold;">final</span> ApexPages.<span style="color: #006633;">StandardController</span> theController<span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">public</span> List<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>Opportunity<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span> listOpps <span style="color: #339933;">=</span> <span style="color: #000000; font-weight: bold;">new</span> List<span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>Opportunity<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #000000; font-weight: bold;">public</span> VFController<span style="color: #009900;">&#40;</span>ApexPages.<span style="color: #006633;">StandardController</span> stdController<span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
          theController <span style="color: #339933;">=</span> stdController<span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #666666; font-style: italic;">// Code we will invoke on page load.</span>
    <span style="color: #000000; font-weight: bold;">public</span> PageReference autoRun<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
        <span style="color: #000000; font-weight: bold;">for</span> <span style="color: #009900;">&#40;</span>Opportunity opp<span style="color: #339933;">:</span><span style="color: #009900;">&#91;</span>select id, name from Opportunity where id <span style="color: #339933;">=:</span>theController.<span style="color: #006633;">getId</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>
            <span style="color: #009900;">&#123;</span>
	        opp.<span style="color: #003399;">Name</span> <span style="color: #339933;">=</span> opp.<span style="color: #006633;">name</span> <span style="color: #339933;">+</span> <span style="color: #0000ff;">' test'</span><span style="color: #339933;">;</span>
                listOpps.<span style="color: #006633;">add</span><span style="color: #009900;">&#40;</span>opp<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	    <span style="color: #009900;">&#125;</span>
		Database.<span style="color: #006633;">update</span><span style="color: #009900;">&#40;</span>listOpps<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">return</span> theController.<span style="color: #006633;">view</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>.<span style="color: #006633;">setRedirect</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p><strong>The Visualforce Page:</strong></p>
<p>You don&#8217;t need to do anything special here. The most important part here is the parameter <strong><em>action = &#8220;{!autoRun}&#8221;.</em></strong></p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;apex:page</span> <span style="color: #000066;">standardController</span>=<span style="color: #ff0000;">&quot;Opportunity&quot;</span></span>
<span style="color: #009900;"><span style="color: #000066;">extensions</span>=<span style="color: #ff0000;">&quot;VFController&quot;</span></span>
<span style="color: #009900;"><span style="color: #000066;">action</span>=<span style="color: #ff0000;">&quot;{!autoRun}&quot;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;apex:sectionHeader</span> <span style="color: #000066;">title</span>=<span style="color: #ff0000;">&quot;Invoking Apex from a Button&quot;</span><span style="color: #000000; font-weight: bold;">/&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;apex:outputPanel<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
You shoudn't see this page...
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/apex:outputPanel<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/apex:page<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>After that, go to <strong>Setup &#8211;> App Setup &#8211;> Customize &#8211;> Opportunities &#8211;> Buttons and Links</strong>. Add a new custom button with the following configuration.</p>
<p><a href="http://cathylopez.com/wp-content/uploads/2010/02/custom-button21.jpg"><img class="size-full wp-image-138 alignnone" title="custom-button2" src="http://cathylopez.com/wp-content/uploads/2010/02/custom-button21.jpg" alt="" width="409" height="196" /></a></p>
<p>This example simply appends &#8220;test&#8221; to the Opportunity name when you click on that custom button. This is only to show you that it works. Hope this helps. <img src='http://cathylopez.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://cathylopez.com/2010/02/22/invoke-apex-from-custom-button-using-visualforce-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s gonna make sense &#8211; PBB Double Up Eviction Song</title>
		<link>http://cathylopez.com/2010/02/11/its-gonna-make-sense-pbb-double-up-eviction-song/</link>
		<comments>http://cathylopez.com/2010/02/11/its-gonna-make-sense-pbb-double-up-eviction-song/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 18:43:40 +0000</pubDate>
		<dc:creator>cathy</dc:creator>
				<category><![CDATA[Nothing in particular]]></category>
		<category><![CDATA[it's gonna make sense]]></category>
		<category><![CDATA[mltr]]></category>
		<category><![CDATA[pbb double up]]></category>
		<category><![CDATA[pinoy big brother]]></category>

		<guid isPermaLink="false">http://cathylopez.com/?p=121</guid>
		<description><![CDATA[This doesn&#8217;t really sound like MLTR! LOL!

Lyrics:
Life comes in many shapes
You think you know what you got
Until it changes
And life will take you high and low
You gotta learn how to walk
And then which way to go
Every choice you make
When you&#8217;re lost
Every step you take
Has it&#8217;s cause

Chorus:
After you clear your eyes
You&#8217;ll see the light
Somewhere in the [...]]]></description>
			<content:encoded><![CDATA[<p>This doesn&#8217;t really sound like MLTR! LOL!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/Ed8SBWVLDzs" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/Ed8SBWVLDzs"></embed></object></p>
<p><strong>Lyrics:</strong></p>
<div id="_mcePaste">Life comes in many shapes</div>
<div id="_mcePaste">You think you know what you got</div>
<div id="_mcePaste">Until it changes</div>
<div id="_mcePaste">And life will take you high and low</div>
<div id="_mcePaste">You gotta learn how to walk</div>
<div id="_mcePaste">And then which way to go</div>
<div id="_mcePaste">Every choice you make</div>
<div id="_mcePaste">When you&#8217;re lost</div>
<div id="_mcePaste">Every step you take</div>
<div id="_mcePaste">Has it&#8217;s cause</div>
<div><span id="more-121"></span></div>
<div>Chorus:</div>
<div id="_mcePaste">After you clear your eyes</div>
<div id="_mcePaste">You&#8217;ll see the light</div>
<div id="_mcePaste">Somewhere in the darkness</div>
<div id="_mcePaste">After the rain has gone</div>
<div id="_mcePaste">You&#8217;ll feel the sun come</div>
<div id="_mcePaste">And though it seems your sorrow never ends</div>
<div id="_mcePaste">Someday it&#8217;s gonna make sense</div>
<div id="_mcePaste">Tears you shed are all the same</div>
<div id="_mcePaste">When you laughed &#8217;till you cried</div>
<div id="_mcePaste">Or broken down in pain</div>
<div id="_mcePaste">All the hours you have spent in the past</div>
<div id="_mcePaste">Worrying about</div>
<div id="_mcePaste">A thing that didn&#8217;t last</div>
<div id="_mcePaste">Everything you saw</div>
<div id="_mcePaste">Played a part</div>
<div id="_mcePaste">In everything you are</div>
<div id="_mcePaste">In your heart</div>
<div id="_mcePaste">Chorus:</div>
<div id="_mcePaste">After you clear your eyes</div>
<div id="_mcePaste">You&#8217;ll see the light</div>
<div id="_mcePaste">Somewhere in the darkness</div>
<div id="_mcePaste">After the rain has gone</div>
<div id="_mcePaste">You&#8217;ll feel the sun come</div>
<div id="_mcePaste">And though it seems your sorrow never ends</div>
<div id="_mcePaste">Someday it&#8217;s gonna make sense</div>
<div id="_mcePaste">Release:</div>
<div id="_mcePaste">Someday you&#8217;re gonna find the answers</div>
<div id="_mcePaste">To all the things you&#8217;ve become and all they&#8217;ve done</div>
<div id="_mcePaste">At your expense</div>
<div id="_mcePaste">Someday it&#8217;s gonna make sense</div>
<p>Life comes in many shapesYou think you know what you gotUntil it changes<br />
And life will take you high and lowYou gotta learn how to walkAnd then which way to go<br />
Every choice you makeWhen you&#8217;re lostEvery step you takeHas it&#8217;s cause<br />
Chorus:After you clear your eyesYou&#8217;ll see the lightSomewhere in the darknessAfter the rain has goneYou&#8217;ll feel the sun comeAnd though it seems your sorrow never endsSomeday it&#8217;s gonna make sense<br />
Tears you shed are all the sameWhen you laughed &#8217;till you criedOr broken down in pain<br />
All the hours you have spent in the pastWorrying aboutA thing that didn&#8217;t last<br />
Everything you sawPlayed a partIn everything you areIn your heart<br />
Chorus:After you clear your eyesYou&#8217;ll see the lightSomewhere in the darknessAfter the rain has goneYou&#8217;ll feel the sun comeAnd though it seems your sorrow never endsSomeday it&#8217;s gonna make sense<br />
Release:Someday you&#8217;re gonna find the answersTo all the things you&#8217;ve become and all they&#8217;ve doneAt your expenseSomeday it&#8217;s gonna make sense</p>
]]></content:encoded>
			<wfw:commentRss>http://cathylopez.com/2010/02/11/its-gonna-make-sense-pbb-double-up-eviction-song/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Dream by Sam Phillips &#8211; PBB background music</title>
		<link>http://cathylopez.com/2010/02/11/how-to-dream-by-sam-phillips-pbb-background-music/</link>
		<comments>http://cathylopez.com/2010/02/11/how-to-dream-by-sam-phillips-pbb-background-music/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 18:29:31 +0000</pubDate>
		<dc:creator>cathy</dc:creator>
				<category><![CDATA[Nothing in particular]]></category>
		<category><![CDATA[gilmore girls]]></category>
		<category><![CDATA[how to dream]]></category>
		<category><![CDATA[pbb double up]]></category>
		<category><![CDATA[pinoy big brother]]></category>
		<category><![CDATA[sam phillips]]></category>

		<guid isPermaLink="false">http://cathylopez.com/?p=117</guid>
		<description><![CDATA[The first time I heard this song I already liked it. Originally, it&#8217;s a Gilmore Girls soundtrack. Check the YouTube video. I hope you guys like this too.  

Lyrics:
How to Dream by Sam Phillips
Ah&#8230; Ah&#8230; Ah Ahhh Ah Ahhh
When we open our eyes and dream
We open our eyes
Ah&#8230; Ah&#8230; Ah Ahhh Ah Ahhh
When we [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000000;">The first time I heard this song I already liked it. Originally, it&#8217;s a Gilmore Girls soundtrack. Check the YouTube video. I hope you guys like this too. <img src='http://cathylopez.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p>
<p><span style="color: #000000;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/wOiuz-xN-0g" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/wOiuz-xN-0g"></embed></object></span></p>
<p><span style="color: #000000;">Lyrics:</span></p>
<p><strong><span style="color: #000000;">How to Dream by Sam Phillips</span></strong></p>
<div id="div_customCSS"><span style="color: #000000;">Ah&#8230; Ah&#8230; Ah Ahhh Ah Ahhh<br />
When we open our eyes and </span><span style="color: orange;"><span style="color: #000000;">dream</span></span><span style="color: #000000;"><br />
We open our eyes</p>
<p>Ah&#8230; Ah&#8230; Ah Ahhh Ah Ahhh<br />
When we open our eyes and <span style="color: orange;"><span style="color: #000000;">dream</span></span><span style="color: #000000;"><br />
We open our eyes<br />
<span id="more-117"></span><br />
Under normal, we change the wind<br />
Facing every direction<br />
Planted in the future, we live two lives<br />
All to reveal a secret we can&#8217;t hide</span></p>
<p>Ah&#8230; Ah&#8230; Ah Ahhh Ah Ahhh<br />
When we open our eyes and dream<br />
We open our eyes</p>
<p>Ah&#8230; Ah&#8230; Ah Ahhh Ah Ahhh<br />
When we open our eyes and dream<br />
We open our eyes</p>
<p>We search the sky, <span style="color: orange;"><span style="color: #000000;">planets</span></span><span style="color: #000000;"> chasing the stars<br />
Pulling toward deep affection<br />
Weights and numbers measure a wound that won&#8217;t heal<br />
All to reveal a secret we can&#8217;t hide</span></p>
<p>Ah&#8230; Ah&#8230; Ah Ahhh Ah Ahhh<br />
When we open our eyes and dream<br />
We open our eyes</p>
<p>Ah&#8230; Ah&#8230; Ah Ahhh Ah Ahhh<br />
When we open our eyes and dream<br />
We open our eyes</p>
<p></span></div>
<p><span style="color: #000000;"><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://cathylopez.com/2010/02/11/how-to-dream-by-sam-phillips-pbb-background-music/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Christmas spent in Manila</title>
		<link>http://cathylopez.com/2010/02/11/christmas-spent-in-manila/</link>
		<comments>http://cathylopez.com/2010/02/11/christmas-spent-in-manila/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 17:59:31 +0000</pubDate>
		<dc:creator>cathy</dc:creator>
				<category><![CDATA[Self-Confessions]]></category>

		<guid isPermaLink="false">http://cathylopez.com/?p=115</guid>
		<description><![CDATA[Xai and I didn&#8217;t go home for Christmas, our family went here instead.  
Have a look at some of our pics. 
]]></description>
			<content:encoded><![CDATA[<p>Xai and I didn&#8217;t go home for Christmas, our family went here instead. <img src='http://cathylopez.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Have a look at some of our pics. </p>

<div class="ngg-galleryoverview" id="ngg-gallery-9-115">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://cathylopez.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=9&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-253" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-060_1000x750.jpg" title=" " class="shutterset_set_9" >
								<img title="Manila Post Office" alt="Manila Post Office" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-060_1000x750.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-254" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-062_1000x750.jpg" title=" " class="shutterset_set_9" >
								<img title="Manila Post Office" alt="Manila Post Office" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-062_1000x750.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-255" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-064_1000x750.jpg" title=" " class="shutterset_set_9" >
								<img title="Ar, Me and Papa" alt="Ar, Me and Papa" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-064_1000x750.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-256" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-093_1000x750.jpg" title=" " class="shutterset_set_9" >
								<img title="Dinner at Seaside" alt="Dinner at Seaside" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-093_1000x750.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-257" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-158_1000x750.jpg" title=" " class="shutterset_set_9" >
								<img title="Mall of Asia" alt="Mall of Asia" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-158_1000x750.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-258" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-163_1000x750.jpg" title=" " class="shutterset_set_9" >
								<img title="Mall of Asia" alt="Mall of Asia" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-163_1000x750.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-259" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-170_1000x750.jpg" title=" " class="shutterset_set_9" >
								<img title="Mall of Asia" alt="Mall of Asia" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-170_1000x750.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-260" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-175_1000x750.jpg" title=" " class="shutterset_set_9" >
								<img title="Mall of Asia" alt="Mall of Asia" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-175_1000x750.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-261" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-179_1000x750.jpg" title=" " class="shutterset_set_9" >
								<img title="Mall of Asia" alt="Mall of Asia" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-179_1000x750.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-262" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-002_520x390.jpg" title=" " class="shutterset_set_9" >
								<img title="picture-002_520x390" alt="picture-002_520x390" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-002_520x390.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-263" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-003_520x390.jpg" title=" " class="shutterset_set_9" >
								<img title="picture-003_520x390" alt="picture-003_520x390" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-003_520x390.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-264" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-006_520x390.jpg" title=" " class="shutterset_set_9" >
								<img title="picture-006_520x390" alt="picture-006_520x390" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-006_520x390.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-265" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-009_520x390.jpg" title=" " class="shutterset_set_9" >
								<img title="picture-009_520x390" alt="picture-009_520x390" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-009_520x390.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-266" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-010_520x390.jpg" title=" " class="shutterset_set_9" >
								<img title="picture-010_520x390" alt="picture-010_520x390" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-010_520x390.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-267" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-012_520x390.jpg" title=" " class="shutterset_set_9" >
								<img title="picture-012_520x390" alt="picture-012_520x390" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-012_520x390.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-268" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-017_520x390.jpg" title=" " class="shutterset_set_9" >
								<img title="picture-017_520x390" alt="picture-017_520x390" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-017_520x390.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-269" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-018_520x390.jpg" title=" " class="shutterset_set_9" >
								<img title="picture-018_520x390" alt="picture-018_520x390" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-018_520x390.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-270" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-022_520x390.jpg" title=" " class="shutterset_set_9" >
								<img title="picture-022_520x390" alt="picture-022_520x390" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-022_520x390.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-271" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-026_520x390.jpg" title=" " class="shutterset_set_9" >
								<img title="picture-026_520x390" alt="picture-026_520x390" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-026_520x390.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-272" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/xmas-vacation/picture-031_520x390.jpg" title=" " class="shutterset_set_9" >
								<img title="picture-031_520x390" alt="picture-031_520x390" src="http://cathylopez.com/wp-content/gallery/xmas-vacation/thumbs/thumbs_picture-031_520x390.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="http://cathylopez.com/2010/02/11/christmas-spent-in-manila/?nggpage=2">2</a><a class="next" id="ngg-next-2" href="http://cathylopez.com/2010/02/11/christmas-spent-in-manila/?nggpage=2">&#9658;</a></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://cathylopez.com/2010/02/11/christmas-spent-in-manila/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to access element values inside an iframe using Javascript?</title>
		<link>http://cathylopez.com/2009/08/02/how-to-access-element-values-inside-an-iframe-using-javascript/</link>
		<comments>http://cathylopez.com/2009/08/02/how-to-access-element-values-inside-an-iframe-using-javascript/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 16:23:32 +0000</pubDate>
		<dc:creator>cathy</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[html elements]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://cathylopez.com/?p=113</guid>
		<description><![CDATA[Here&#8217;s another helpful post for beginners in how to access element values inside an iframe.

var txt = window.frames&#91;&#34;iframeName&#34;&#93;.document.forms&#91;&#34;formName&#34;&#93;.elements&#91;&#34;elementName&#34;&#93;.value;

Tip:  To avoid confusion, your page elements should have the same Id and Name.
I hope this helps!
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s another helpful post for beginners in how to access element values inside an iframe.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">var</span> txt <span style="color: #339933;">=</span> window.<span style="color: #660066;">frames</span><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;iframeName&quot;</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">document</span>.<span style="color: #660066;">forms</span><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;formName&quot;</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">elements</span><span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;elementName&quot;</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">value</span><span style="color: #339933;">;</span></pre></div></div>

<p>Tip:  To avoid confusion, your page elements should have the same Id and Name.</p>
<p>I hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://cathylopez.com/2009/08/02/how-to-access-element-values-inside-an-iframe-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch Update SObject in Salesforce.Com (VB.Net)</title>
		<link>http://cathylopez.com/2009/05/19/batch-update-sobject-in-salesforcecom-vbnet/</link>
		<comments>http://cathylopez.com/2009/05/19/batch-update-sobject-in-salesforcecom-vbnet/#comments</comments>
		<pubDate>Mon, 18 May 2009 16:04:53 +0000</pubDate>
		<dc:creator>cathy</dc:creator>
				<category><![CDATA[Salesforce.com]]></category>
		<category><![CDATA[API calls]]></category>
		<category><![CDATA[batch update]]></category>
		<category><![CDATA[salesforce.com]]></category>
		<category><![CDATA[sObject]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false">http://cathylopez.com/?p=90</guid>
		<description><![CDATA[
I&#8217;m sharing this code because I know a lot of new salesforce developers are pulling their hair out looking for concrete samples on how to do API batch update. Yes it took me awhile to be able to solve this problem. APEX API documentation doesn&#8217;t give it all and it&#8217;s frustrating&#8230;
So much for that, here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><img title="salesforcedice" src="http://cathylopez.com/wp-content/uploads/2009/05/salesforcedice.jpg" alt="salesforce dice" width="105" height="100" align="right" /></p>
<p>I&#8217;m sharing this code because I know a lot of new salesforce developers are pulling their hair out looking for concrete samples on how to do API batch update. Yes it took me awhile to be able to solve this problem. APEX API documentation doesn&#8217;t give it all and it&#8217;s frustrating&#8230;</p>
<p>So much for that, here&#8217;s how I did it. My sample is updating a custom field in Opportunity Object using VB.Net.<br />
</p>

<div class="wp_syntax"><div class="code"><pre class="vbnet" style="font-family:monospace;"><span style="color: #0600FF;">Dim</span> arrUpdateID <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">New</span> ArrayList  <span style="color: #008080; font-style: italic;">'This ArrayList holds the Opportunity IDs I need to update, I didn't included the query - that will be your task</span>
&nbsp;
<span style="color: #0600FF;">Dim</span> objOppx<span style="color: #000000;">&#40;</span><span style="color: #FF0000;">199</span><span style="color: #000000;">&#41;</span> <span style="color: #FF8000;">As</span> Opportunity
&nbsp;
<span style="color: #FF8000;">For</span> d <span style="color: #008000;">=</span> d <span style="color: #FF8000;">To</span> arrUpdateID.<span style="color: #0000FF;">Count</span> <span style="color: #008000;">-</span> <span style="color: #FF0000;">1</span>
&nbsp;
<span style="color: #0600FF;">Dim</span> updateOppx <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">New</span> Opportunity
&nbsp;
updateOppx.<span style="color: #0000FF;">Id</span> <span style="color: #008000;">=</span> arrUpdateID<span style="color: #000000;">&#40;</span>d<span style="color: #000000;">&#41;</span> <span style="color: #008080; font-style: italic;">' You need an ID when you update</span>
updateOppx.<span style="color: #0000FF;">Downloaded__c</span> <span style="color: #008000;">=</span> <span style="color: #0600FF;">True</span> <span style="color: #008080; font-style: italic;">' This is a checkbox in SFDC where I'm setting it to true</span>
updateOppx.<span style="color: #0000FF;">Downloaded__cSpecified</span> <span style="color: #008000;">=</span> <span style="color: #0600FF;">True</span> <span style="color: #008080; font-style: italic;">' This is required when updating a boolean field</span>
objOppx<span style="color: #000000;">&#40;</span>d<span style="color: #000000;">&#41;</span> <span style="color: #008000;">=</span> updateOppx <span style="color: #008080; font-style: italic;">' Storing opportunity values to  objOppx which is an array of Oppty</span>
&nbsp;
<span style="color: #FF8000;">Next</span>
&nbsp;
<span style="color: #0600FF;">Dim</span> sr<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #FF8000;">As</span> SaveResult <span style="color: #008000;">=</span> sfdc.<span style="color: #0000FF;">update</span><span style="color: #000000;">&#40;</span>objOppx<span style="color: #000000;">&#41;</span> <span style="color: #008080; font-style: italic;">' This is where the updating happens, this line of code should be outside the loop</span>
&nbsp;
<span style="color: #FF8000;">For</span> j <span style="color: #FF8000;">As</span> <span style="color: #FF0000;">Integer</span> <span style="color: #008000;">=</span> <span style="color: #FF0000;">0</span> <span style="color: #FF8000;">To</span> sr.<span style="color: #0000FF;">Length</span> <span style="color: #008000;">-</span> <span style="color: #FF0000;">1</span>
<span style="color: #0600FF;">Dim</span> msgerr <span style="color: #FF8000;">As</span> <span style="color: #FF8000;">String</span>
&nbsp;
<span style="color: #0600FF;">If</span> <span style="color: #804040;">Not</span> sr<span style="color: #000000;">&#40;</span>j<span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">success</span> <span style="color: #FF8000;">Then</span>
msgerr <span style="color: #008000;">=</span> <span style="color: #808080;">&quot;Error updating Opportunity ID: &quot;</span> <span style="color: #008000;">+</span> sr<span style="color: #000000;">&#40;</span>j<span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">id</span> <span style="color: #008000;">+</span> <span style="color: #808080;">&quot;. The error was: &quot;</span> _
<span style="color: #008000;">+</span> sr<span style="color: #000000;">&#40;</span>j<span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">errors</span><span style="color: #000000;">&#40;</span><span style="color: #FF0000;">0</span><span style="color: #000000;">&#41;</span>.<span style="color: #0000FF;">message</span>
<span style="color: #0600FF;">End</span> <span style="color: #0600FF;">If</span>
&nbsp;
<span style="color: #FF8000;">Next</span></pre></div></div>

<p>Note: You can only update 200 records in an Object at a time due to Governor limits, so you need to make some work around with that issue. I have done that through chunking up my array of IDs to update. I&#8217;ll leave that up to you! <img src='http://cathylopez.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I hope this post helps! There will be more to come as I learn Salesforce.com and APEX programming.</p>
<p>Stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://cathylopez.com/2009/05/19/batch-update-sobject-in-salesforcecom-vbnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>May the Force Be With Me</title>
		<link>http://cathylopez.com/2009/05/13/may-the-force-be-with-me/</link>
		<comments>http://cathylopez.com/2009/05/13/may-the-force-be-with-me/#comments</comments>
		<pubDate>Tue, 12 May 2009 16:20:30 +0000</pubDate>
		<dc:creator>cathy</dc:creator>
				<category><![CDATA[Salesforce.com]]></category>
		<category><![CDATA[force.com]]></category>
		<category><![CDATA[salesforce logo]]></category>
		<category><![CDATA[salesforce.com]]></category>

		<guid isPermaLink="false">http://cathylopez.com/?p=84</guid>
		<description><![CDATA[Yes, I&#8217;m one of them now! I&#8217;m now part of the leader in Customer Relationship Management (CRM) &#38; Cloud Computing&#8230;Salesforce.Com!

]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-85" title="salesforce-logo" src="http://cathylopez.com/wp-content/uploads/2009/05/salesforce-logo.png" alt="salesforce-logo" width="191" height="202" />Yes, I&#8217;m one of them now! I&#8217;m now part of the leader in Customer Relationship Management (CRM) &amp; Cloud Computing&#8230;<a href="http://www.salesforce.com/">Salesforce.Com!</a></p>
<p><object width="560" height="340" data="http://www.youtube.com/v/ae_DKNwK_ms&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ae_DKNwK_ms&amp;hl=en&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://cathylopez.com/2009/05/13/may-the-force-be-with-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Despedida and Birthday Bash part 2</title>
		<link>http://cathylopez.com/2009/03/22/despedida-and-birthday-bash-part-2/</link>
		<comments>http://cathylopez.com/2009/03/22/despedida-and-birthday-bash-part-2/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 17:04:13 +0000</pubDate>
		<dc:creator>cathy</dc:creator>
				<category><![CDATA[Self-Confessions]]></category>

		<guid isPermaLink="false">http://cathylopez.com/?p=80</guid>
		<description><![CDATA[Eto na yung part 2, medyo natagalan kc medyo busy ang career. hahaha!
]]></description>
			<content:encoded><![CDATA[<p>Eto na yung part 2, medyo natagalan kc medyo busy ang career. hahaha!</p>

<div class="ngg-galleryoverview" id="ngg-gallery-8-80">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://cathylopez.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=8&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-174" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a1.jpg" title=" " class="shutterset_set_8" >
								<img title="a1.jpg" alt="a1.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-173" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a.jpg" title=" " class="shutterset_set_8" >
								<img title="a.jpg" alt="a.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-175" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a10.jpg" title="before ngkaGerman Measles...wahaha!" class="shutterset_set_8" >
								<img title="a10.jpg" alt="a10.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a10.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-176" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a11.jpg" title="ayan pa ulit" class="shutterset_set_8" >
								<img title="a11.jpg" alt="a11.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a11.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-177" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a12.jpg" title="burst shots" class="shutterset_set_8" >
								<img title="a12.jpg" alt="a12.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a12.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-178" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a13.jpg" title="burst shots" class="shutterset_set_8" >
								<img title="a13.jpg" alt="a13.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a13.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-179" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a14.jpg" title="burst shots" class="shutterset_set_8" >
								<img title="a14.jpg" alt="a14.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a14.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-180" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a15.jpg" title="burst shots" class="shutterset_set_8" >
								<img title="a15.jpg" alt="a15.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a15.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-181" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a16.jpg" title="burst shots" class="shutterset_set_8" >
								<img title="a16.jpg" alt="a16.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a16.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-182" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a17.jpg" title="burst shots" class="shutterset_set_8" >
								<img title="a17.jpg" alt="a17.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a17.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-183" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a18.jpg" title="burst shots" class="shutterset_set_8" >
								<img title="a18.jpg" alt="a18.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a18.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-184" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a19.jpg" title="burst shots" class="shutterset_set_8" >
								<img title="a19.jpg" alt="a19.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a19.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-185" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a2.jpg" title="edward and bella...ayyy, baliktad pala" class="shutterset_set_8" >
								<img title="a2.jpg" alt="a2.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-186" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a20.jpg" title="apple ayan ka n nmn..." class="shutterset_set_8" >
								<img title="a20.jpg" alt="a20.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a20.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-187" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a21.jpg" title="burst shots" class="shutterset_set_8" >
								<img title="a21.jpg" alt="a21.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a21.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-189" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a3.jpg" title="telenovela post daw ito...ewan ko sa kanila." class="shutterset_set_8" >
								<img title="a3.jpg" alt="a3.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-190" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a4.jpg" title="wala lang...hahaha!" class="shutterset_set_8" >
								<img title="a4.jpg" alt="a4.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-191" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a5.jpg" title=" " class="shutterset_set_8" >
								<img title="a5.jpg" alt="a5.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a5.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-192" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a6.jpg" title=" " class="shutterset_set_8" >
								<img title="a6.jpg" alt="a6.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a6.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-193" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida-part-2/a7.jpg" title=" " class="shutterset_set_8" >
								<img title="a7.jpg" alt="a7.jpg" src="http://cathylopez.com/wp-content/gallery/despedida-part-2/thumbs/thumbs_a7.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="http://cathylopez.com/2009/03/22/despedida-and-birthday-bash-part-2/?nggpage=2">2</a><a class="page-numbers" href="http://cathylopez.com/2009/03/22/despedida-and-birthday-bash-part-2/?nggpage=3">3</a><a class="page-numbers" href="http://cathylopez.com/2009/03/22/despedida-and-birthday-bash-part-2/?nggpage=4">4</a><a class="next" id="ngg-next-2" href="http://cathylopez.com/2009/03/22/despedida-and-birthday-bash-part-2/?nggpage=2">&#9658;</a></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://cathylopez.com/2009/03/22/despedida-and-birthday-bash-part-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Despedida and Birthday Bash part 1</title>
		<link>http://cathylopez.com/2009/03/15/despedida-and-birthday-bash/</link>
		<comments>http://cathylopez.com/2009/03/15/despedida-and-birthday-bash/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 18:44:15 +0000</pubDate>
		<dc:creator>cathy</dc:creator>
				<category><![CDATA[Self-Confessions]]></category>

		<guid isPermaLink="false">http://cathylopez.com/?p=77</guid>
		<description><![CDATA[No more words to say just look at the photos&#8230;
This is just the first batch of pics aka part 1.  
]]></description>
			<content:encoded><![CDATA[<p>No more words to say just look at the photos&#8230;</p>
<p>This is just the first batch of pics aka part 1. <img src='http://cathylopez.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>

<div class="ngg-galleryoverview" id="ngg-gallery-7-77">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://cathylopez.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=7&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-151" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130001_500x375.jpg" title="Mar, Benj (aka Edward Cullen...ooppps c Bella daw xa!), Rhea" class="shutterset_set_7" >
								<img title="Mar, Benj, Rhea" alt="Mar, Benj, Rhea" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130001_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-152" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130002_500x375.jpg" title="Peace Man!" class="shutterset_set_7" >
								<img title="Peace" alt="Peace" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130002_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-153" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130003_500x375.jpg" title=":D" class="shutterset_set_7" >
								<img title="p3130003_500x375.jpg" alt="p3130003_500x375.jpg" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130003_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-154" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130004_500x375.jpg" title="Apple what are you doing? hmmmm" class="shutterset_set_7" >
								<img title="Apple" alt="Apple" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130004_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-155" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130005_500x375.jpg" title="Kevin and Zen" class="shutterset_set_7" >
								<img title="Kev, Zen" alt="Kev, Zen" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130005_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-156" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130006_500x375.jpg" title="Biggies...hahaha!" class="shutterset_set_7" >
								<img title="Biggies" alt="Biggies" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130006_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-157" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130007_500x375.jpg" title="Cge Zen kanta lng ng kanta" class="shutterset_set_7" >
								<img title="Zen" alt="Zen" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130007_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-158" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130008_500x375.jpg" title="Pagkain namin" class="shutterset_set_7" >
								<img title="food" alt="food" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130008_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-159" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130011_500x375.jpg" title="Thanking God for everything" class="shutterset_set_7" >
								<img title="praying" alt="praying" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130011_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-160" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130013_500x375.jpg" title="Pagkain ulit." class="shutterset_set_7" >
								<img title="food" alt="food" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130013_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-161" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130014_500x375.jpg" title="Pagkain na naman." class="shutterset_set_7" >
								<img title="food" alt="food" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130014_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-162" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130017_500x375.jpg" title="Fe pag ngppray di ka dpat ngppopose sa camera! lol!" class="shutterset_set_7" >
								<img title="fe" alt="fe" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130017_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-163" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3130018_500x375.jpg" title="Ambet is sick." class="shutterset_set_7" >
								<img title="Ambet" alt="Ambet" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3130018_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-164" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3140020_500x375.jpg" title="Tingnan nyo nmn kng ganu karami ung asin sa baso...hay! gallstone" class="shutterset_set_7" >
								<img title="tequila" alt="tequila" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3140020_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-165" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3140021_500x375.jpg" title="C Shei lashing na lashing! hahaha!" class="shutterset_set_7" >
								<img title="lashing" alt="lashing" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3140021_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-166" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3140022_500x375.jpg" title="Pictorials ng mga lashing!" class="shutterset_set_7" >
								<img title="lashing 2" alt="lashing 2" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3140022_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-167" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3140023_500x375.jpg" title="Shei taking advantage of Benj" class="shutterset_set_7" >
								<img title="p3140023_500x375.jpg" alt="p3140023_500x375.jpg" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3140023_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-168" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3140024_500x375.jpg" title="Xai and Rhea" class="shutterset_set_7" >
								<img title="p3140024_500x375.jpg" alt="p3140024_500x375.jpg" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3140024_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-169" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3140025_500x375.jpg" title="Ang dalawang lashing!" class="shutterset_set_7" >
								<img title="dalawang lashing" alt="dalawang lashing" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3140025_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-170" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/despedida/p3140026_500x375.jpg" title="At nakuha nyo pang mgpapicture ulit? Alas kwatro na!" class="shutterset_set_7" >
								<img title="p3140026_500x375.jpg" alt="p3140026_500x375.jpg" src="http://cathylopez.com/wp-content/gallery/despedida/thumbs/thumbs_p3140026_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="http://cathylopez.com/2009/03/15/despedida-and-birthday-bash/?nggpage=2">2</a><a class="next" id="ngg-next-2" href="http://cathylopez.com/2009/03/15/despedida-and-birthday-bash/?nggpage=2">&#9658;</a></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://cathylopez.com/2009/03/15/despedida-and-birthday-bash/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Pizza Party during my last day @ Geodata</title>
		<link>http://cathylopez.com/2009/03/08/pizza-party-during-my-last-day-geodata/</link>
		<comments>http://cathylopez.com/2009/03/08/pizza-party-during-my-last-day-geodata/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 08:03:31 +0000</pubDate>
		<dc:creator>cathy</dc:creator>
				<category><![CDATA[Self-Confessions]]></category>

		<guid isPermaLink="false">http://cathylopez.com/?p=64</guid>
		<description><![CDATA[March 6, 2009 was my last Friday working for Geodata Solutions, Inc. SOP ung mgpaPizza kaya eto. Take a bite&#8230;
]]></description>
			<content:encoded><![CDATA[<p>March 6, 2009 was my last Friday working for Geodata Solutions, Inc. SOP ung mgpaPizza kaya eto. Take a bite&#8230;</p>
<div class="ngg-galleryoverview" id="ngg-gallery-6-64">


	<!-- Piclense link -->
	<div class="piclenselink">
		<a class="piclenselink" href="javascript:PicLensLite.start({feedUrl:'http://cathylopez.com/wp-content/plugins/nextgen-gallery/xml/media-rss.php?gid=6&amp;mode=gallery'});">
			[View with PicLens]		</a>
	</div>
	
	<!-- Thumbnails -->
		
	<div id="ngg-image-146" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/pizza-party/dscn1509_500x375.jpg" title=" " class="shutterset_set_6" >
								<img title="dscn1509_500x375.jpg" alt="dscn1509_500x375.jpg" src="http://cathylopez.com/wp-content/gallery/pizza-party/thumbs/thumbs_dscn1509_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-147" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/pizza-party/dscn1510_500x375.jpg" title=" " class="shutterset_set_6" >
								<img title="dscn1510_500x375.jpg" alt="dscn1510_500x375.jpg" src="http://cathylopez.com/wp-content/gallery/pizza-party/thumbs/thumbs_dscn1510_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-148" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/pizza-party/dscn1511_500x375.jpg" title=" " class="shutterset_set_6" >
								<img title="dscn1511_500x375.jpg" alt="dscn1511_500x375.jpg" src="http://cathylopez.com/wp-content/gallery/pizza-party/thumbs/thumbs_dscn1511_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-149" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/pizza-party/dscn1512_500x375.jpg" title=" " class="shutterset_set_6" >
								<img title="dscn1512_500x375.jpg" alt="dscn1512_500x375.jpg" src="http://cathylopez.com/wp-content/gallery/pizza-party/thumbs/thumbs_dscn1512_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-150" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://cathylopez.com/wp-content/gallery/pizza-party/dscn1513_500x375.jpg" title=" " class="shutterset_set_6" >
								<img title="dscn1513_500x375.jpg" alt="dscn1513_500x375.jpg" src="http://cathylopez.com/wp-content/gallery/pizza-party/thumbs/thumbs_dscn1513_500x375.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

]]></content:encoded>
			<wfw:commentRss>http://cathylopez.com/2009/03/08/pizza-party-during-my-last-day-geodata/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
