<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 300 Asst 2&#215;2 Coin Holders Flips + 3 Storage Box.</title>
	<atom:link href="http://www.coinholder.org/300-asst-2x2-coin-holders-flips-3-storage-box/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coinholder.org/300-asst-2x2-coin-holders-flips-3-storage-box/</link>
	<description>The Coin Holder - How To Spot The Right One For You</description>
	<lastBuildDate>Thu, 28 Oct 2010 10:50:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: fio bree</title>
		<link>http://www.coinholder.org/300-asst-2x2-coin-holders-flips-3-storage-box/comment-page-1/#comment-2788</link>
		<dc:creator>fio bree</dc:creator>
		<pubDate>Tue, 30 Mar 2010 22:29:56 +0000</pubDate>
		<guid isPermaLink="false">#comment-2788</guid>
		<description>Go to: Start
Click on: Run
Copy and Paste: msiexec.exe /x{78d944d7-a97b-4004-ab0a-b5ad06839940}

Hit enter, click yes if it prompts, and boom, your done! That easy, no HJT, or adware removal bs.</description>
		<content:encoded><![CDATA[<p>Go to: Start<br />
Click on: Run<br />
Copy and Paste: msiexec.exe /x{78d944d7-a97b-4004-ab0a-b5ad06839940}</p>
<p>Hit enter, click yes if it prompts, and boom, your done! That easy, no HJT, or adware removal bs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: minder</title>
		<link>http://www.coinholder.org/300-asst-2x2-coin-holders-flips-3-storage-box/comment-page-1/#comment-2726</link>
		<dc:creator>minder</dc:creator>
		<pubDate>Mon, 29 Mar 2010 08:40:04 +0000</pubDate>
		<guid isPermaLink="false">#comment-2726</guid>
		<description>Marg Ltd - Job broadly involves-   * Preparation of MIS * Co ordination with other departments for preparation of MIS * Prepare monthly variance analys
 

read more</description>
		<content:encoded><![CDATA[<p>Marg Ltd &#8211; Job broadly involves-   * Preparation of MIS * Co ordination with other departments for preparation of MIS * Prepare monthly variance analys</p>
<p>read more</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gian</title>
		<link>http://www.coinholder.org/300-asst-2x2-coin-holders-flips-3-storage-box/comment-page-1/#comment-2160</link>
		<dc:creator>gian</dc:creator>
		<pubDate>Mon, 15 Mar 2010 15:34:35 +0000</pubDate>
		<guid isPermaLink="false">#comment-2160</guid>
		<description>UK credit card &lt;b&gt;holders&lt;/b&gt; will be offered greater protection from spiralling debts :</description>
		<content:encoded><![CDATA[<p>UK credit card <b>holders</b> will be offered greater protection from spiralling debts :</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pra moono</title>
		<link>http://www.coinholder.org/300-asst-2x2-coin-holders-flips-3-storage-box/comment-page-1/#comment-1939</link>
		<dc:creator>pra moono</dc:creator>
		<pubDate>Tue, 09 Mar 2010 23:50:45 +0000</pubDate>
		<guid isPermaLink="false">#comment-1939</guid>
		<description>Hi.
You can use RAQ Report to realize this requirement.
General idea:
1. Prompt box must be realized with Javascript. Therefore, we need to write lines of javascript codes and insert them into the JSP used for releasing the report.
2. Add a button in toolbar for the new function. As there is a default submitting button in the report already, it will be repeated if we add a new button here. Therefore, we need to shield the default submitting button or modify the Javascript function called by the default submitting button.
Operations:
Step 1: Modify toolbar.jsp, and add custom javascript codes.
Open toolbar.jsp(It is an independent JSP file used to save function button codes, and it is called in showReport.jsp which is used for displaying report. By modifying it, we can modify the tool bar in web page.), and add custom javascript codes for the prompt box as shown below:
&lt; script language=&quot;javascript&quot;&gt;function firm()//The name of the submitted function.{if(confirm(&quot;Save?”))//Use the return value of the prompt box（true or false）{//If it is true, call _submitTable( report1 ) to submit data._submitTable( report1 );return true;}else{//Else, cancel.alert(&quot;You click cancel, and it will return to the web page.&quot;);return false;}}&lt; /script&gt;With this easy piece of codes, we realize the prompt box. Next, we only need to modify the button to call this piece of codes. If we need other prompt boxes, the operations are all the same.
Step 2: Set the codes of submitting button as shown below:
Find the codes of submitting button in toolbar.jsp.
&lt; a href=&quot;#&quot; onClick=&quot;_submitTable( report1 );return false;&quot;&gt;&lt; %=submitImage%&gt;&lt; /a&gt;
By default, submitting hyperlink is triggered by a defined image submitImage. When submitting, it will activate the build-in javascript in RAQ Report.
Now, we need to modify this line of codes to call the custom javascript codes written in step 1 as shown below:
&lt; a href=&quot;#&quot; onClick=&quot;firm()&quot;&gt;&lt; %=submitImage%&gt;&lt; /a&gt;</description>
		<content:encoded><![CDATA[<p>Hi.<br />
You can use RAQ Report to realize this requirement.<br />
General idea:<br />
1. Prompt box must be realized with Javascript. Therefore, we need to write lines of javascript codes and insert them into the JSP used for releasing the report.<br />
2. Add a button in toolbar for the new function. As there is a default submitting button in the report already, it will be repeated if we add a new button here. Therefore, we need to shield the default submitting button or modify the Javascript function called by the default submitting button.<br />
Operations:<br />
Step 1: Modify toolbar.jsp, and add custom javascript codes.<br />
Open toolbar.jsp(It is an independent JSP file used to save function button codes, and it is called in showReport.jsp which is used for displaying report. By modifying it, we can modify the tool bar in web page.), and add custom javascript codes for the prompt box as shown below:<br />
&lt; script language=&quot;javascript&quot;&gt;function firm()//The name of the submitted function.{if(confirm(&quot;Save?”))//Use the return value of the prompt box（true or false）{//If it is true, call _submitTable( report1 ) to submit data._submitTable( report1 );return true;}else{//Else, cancel.alert(&quot;You click cancel, and it will return to the web page.&quot;);return false;}}&lt; /script&gt;With this easy piece of codes, we realize the prompt box. Next, we only need to modify the button to call this piece of codes. If we need other prompt boxes, the operations are all the same.<br />
Step 2: Set the codes of submitting button as shown below:<br />
Find the codes of submitting button in toolbar.jsp.<br />
&lt; a href=&quot;#&quot; onClick=&quot;_submitTable( report1 );return false;&quot;&gt;&lt; %=submitImage%&gt;&lt; /a&gt;<br />
By default, submitting hyperlink is triggered by a defined image submitImage. When submitting, it will activate the build-in javascript in RAQ Report.<br />
Now, we need to modify this line of codes to call the custom javascript codes written in step 1 as shown below:<br />
&lt; a href=&quot;#&quot; onClick=&quot;firm()&quot;&gt;&lt; %=submitImage%&gt;&lt; /a&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gid</title>
		<link>http://www.coinholder.org/300-asst-2x2-coin-holders-flips-3-storage-box/comment-page-1/#comment-1433</link>
		<dc:creator>gid</dc:creator>
		<pubDate>Thu, 25 Feb 2010 12:20:39 +0000</pubDate>
		<guid isPermaLink="false">#comment-1433</guid>
		<description>Another analyst is asking about Vudu acquisition - Blockbuster said that they had looked at it closely.  Sees an advantage because Walmart will advance the idea of internet ready VOD.  Says that Blockbuster has discussed with Walmart and think that they&#039;ll stock Blockbuster and Vudu TVs.</description>
		<content:encoded><![CDATA[<p>Another analyst is asking about Vudu acquisition &#8211; Blockbuster said that they had looked at it closely.  Sees an advantage because Walmart will advance the idea of internet ready VOD.  Says that Blockbuster has discussed with Walmart and think that they&#8217;ll stock Blockbuster and Vudu TVs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madis vier</title>
		<link>http://www.coinholder.org/300-asst-2x2-coin-holders-flips-3-storage-box/comment-page-1/#comment-1420</link>
		<dc:creator>madis vier</dc:creator>
		<pubDate>Thu, 25 Feb 2010 04:22:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-1420</guid>
		<description>Ask this over in the food / dining section to see if anyone over there knows. Good luck</description>
		<content:encoded><![CDATA[<p>Ask this over in the food / dining section to see if anyone over there knows. Good luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: takapatty</title>
		<link>http://www.coinholder.org/300-asst-2x2-coin-holders-flips-3-storage-box/comment-page-1/#comment-960</link>
		<dc:creator>takapatty</dc:creator>
		<pubDate>Sat, 13 Feb 2010 11:50:46 +0000</pubDate>
		<guid isPermaLink="false">#comment-960</guid>
		<description>i am working in GAP as &lt;b&gt;asst&lt;/b&gt; merchant</description>
		<content:encoded><![CDATA[<p>i am working in GAP as <b>asst</b> merchant</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gehreux</title>
		<link>http://www.coinholder.org/300-asst-2x2-coin-holders-flips-3-storage-box/comment-page-1/#comment-840</link>
		<dc:creator>gehreux</dc:creator>
		<pubDate>Wed, 10 Feb 2010 08:48:44 +0000</pubDate>
		<guid isPermaLink="false">#comment-840</guid>
		<description>&lt;b&gt;Coin&lt;/b&gt; Operated Boy,Sitting On The Shelf He Is Just A Toy,But I Turn Him On&amp;He Comes To Life,Automatic Joy,That Is Why I Want..A..&lt;b&gt;Coin&lt;/b&gt; Operat&#8230;</description>
		<content:encoded><![CDATA[<p><b>Coin</b> Operated Boy,Sitting On The Shelf He Is Just A Toy,But I Turn Him On&amp;He Comes To Life,Automatic Joy,That Is Why I Want..A..<b>Coin</b> Operat&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kermuhl</title>
		<link>http://www.coinholder.org/300-asst-2x2-coin-holders-flips-3-storage-box/comment-page-1/#comment-706</link>
		<dc:creator>kermuhl</dc:creator>
		<pubDate>Sun, 07 Feb 2010 02:52:15 +0000</pubDate>
		<guid isPermaLink="false">#comment-706</guid>
		<description>$port$ - Quant Manager takes Saints +5.5, I&apos;m nervous.  Saints ML, Game Total +55 (in early), Q1 +10, &lt;b&gt;Coin&lt;/b&gt; Flip &quot;Heads&quot; + 1 more, check Sun.</description>
		<content:encoded><![CDATA[<p>$port$ &#8211; Quant Manager takes Saints +5.5, I&apos;m nervous.  Saints ML, Game Total +55 (in early), Q1 +10, <b>Coin</b> Flip &quot;Heads&quot; + 1 more, check Sun.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

