<?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>Problem Solved</title>
	<atom:link href="http://lnx.acidsoft.net/problemsolved/feed" rel="self" type="application/rss+xml" />
	<link>http://lnx.acidsoft.net/problemsolved</link>
	<description>Solutions to everyday problems I faced in web, tech, sap, etc...</description>
	<lastBuildDate>Tue, 10 Apr 2012 15:44:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Double dependant scroll on a&#160;div</title>
		<link>http://lnx.acidsoft.net/problemsolved/double-dependant-scroll-on-a-div.html</link>
		<comments>http://lnx.acidsoft.net/problemsolved/double-dependant-scroll-on-a-div.html#comments</comments>
		<pubDate>Tue, 10 Apr 2012 15:44:08 +0000</pubDate>
		<dc:creator>alessandro</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[doublescroll]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://lnx.acidsoft.net/problemsolved/?p=220</guid>
		<description><![CDATA[A simple javascript to make a div scroll dependant for two different divs, one depends on the vertical scroll and the other on the horizontal scroll. Here an example page. function syncScrolls&#40;&#41; &#123; document.getElementById&#40;'header'&#41;.scrollLeft = document.getElementById&#40;'data'&#41;.scrollLeft; document.getElementById&#40;'side'&#41;.scrollTop = document.getElementById&#40;'data'&#41;.scrollTop; &#125;]]></description>
			<content:encoded><![CDATA[<p>A simple javascript to make a div scroll dependant for two different divs, one depends on the vertical scroll and the other on the horizontal scroll.<br />
<a href="http://www.acidsoft.net/problemsolved/double_scroll.html" target="_blank"> Here an example page.</a></p>

<div class="wp_codebox"><table><tr id="p2202"><td class="code" id="p220code2"><pre class="javascript" style="font-family:monospace;">      <span style="color: #003366; font-weight: bold;">function</span> syncScrolls<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
        document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'header'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">scrollLeft</span> <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'data'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">scrollLeft</span><span style="color: #339933;">;</span>
	document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'side'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">scrollTop</span> <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'data'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">scrollTop</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://lnx.acidsoft.net/problemsolved/double-dependant-scroll-on-a-div.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sap object locked into change&#160;request</title>
		<link>http://lnx.acidsoft.net/problemsolved/sap-object-locked-into-change-request.html</link>
		<comments>http://lnx.acidsoft.net/problemsolved/sap-object-locked-into-change-request.html#comments</comments>
		<pubDate>Thu, 06 Oct 2011 15:38:20 +0000</pubDate>
		<dc:creator>alessandro</dc:creator>
				<category><![CDATA[Sap]]></category>
		<category><![CDATA[abap]]></category>
		<category><![CDATA[cr]]></category>
		<category><![CDATA[sap]]></category>
		<category><![CDATA[se03]]></category>

		<guid isPermaLink="false">http://lnx.acidsoft.net/problemsolved/?p=211</guid>
		<description><![CDATA[My problem was caused by an all-systems-crash that thrown off coherence, because data on dev, qas and prd were restored from different time situations. In particular there was some abap objects that were not inserted in change requests anymore while saving them, but they apparently weren&#8217;t in a cr. I found that those object were [...]]]></description>
			<content:encoded><![CDATA[<p>My problem was caused by an all-systems-crash that thrown off coherence, because data on dev, qas and prd were restored from different time situations. In particular there was some abap objects that were not inserted in change requests anymore while saving them, but they apparently weren&#8217;t in a cr. I found that those object were locked in a change request <span style="color: #ff0000;">released</span> task, so I cannot take them in a new change request.</p>
<p>As solution to the problem I used the transaction <strong>SE03</strong>, request/tasks &#8211; unlock objects (expert tools). All tasks containing the objects to rescue, not only the main change requests, must be unlocked. Then I could save workbench changes of those objects in a new cr.</p>
]]></content:encoded>
			<wfw:commentRss>http://lnx.acidsoft.net/problemsolved/sap-object-locked-into-change-request.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filemaker GO background image on&#160;iPad</title>
		<link>http://lnx.acidsoft.net/problemsolved/filemaker-go-background-image-on-ipad.html</link>
		<comments>http://lnx.acidsoft.net/problemsolved/filemaker-go-background-image-on-ipad.html#comments</comments>
		<pubDate>Thu, 08 Sep 2011 14:13:42 +0000</pubDate>
		<dc:creator>alessandro</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Filemaker]]></category>
		<category><![CDATA[Filemaker GO]]></category>
		<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://lnx.acidsoft.net/problemsolved/?p=204</guid>
		<description><![CDATA[I had to solve this little but annoying problem starting to develop solutions based on Filemaker on iPad. Once I add a background image to my Filemaker format that image results cut at about half of its height when I open the database on the iPad, via Filemaker GO. The problem could be solved if [...]]]></description>
			<content:encoded><![CDATA[<p>I had to solve this little but annoying problem starting to develop solutions based on Filemaker on iPad. Once I add a background image to my Filemaker format that image results cut at about half of its height when I open the database on the iPad, via Filemaker GO.</p>
<p>The problem could be solved if <strong><span style="text-decoration: underline;">the background image is NOT placed between two sections of the format</span></strong> (i.e. header and body). For a correct visualization the image must be contained in only one section!</p>
<p>Greet.</p>
]]></content:encoded>
			<wfw:commentRss>http://lnx.acidsoft.net/problemsolved/filemaker-go-background-image-on-ipad.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sap DMS on&#160;MacOSX</title>
		<link>http://lnx.acidsoft.net/problemsolved/sap-dms-on-macosx.html</link>
		<comments>http://lnx.acidsoft.net/problemsolved/sap-dms-on-macosx.html#comments</comments>
		<pubDate>Fri, 22 Apr 2011 15:38:10 +0000</pubDate>
		<dc:creator>alessandro</dc:creator>
				<category><![CDATA[Sap]]></category>
		<category><![CDATA[dms]]></category>
		<category><![CDATA[macosx]]></category>

		<guid isPermaLink="false">http://lnx.acidsoft.net/problemsolved/?p=193</guid>
		<description><![CDATA[I faced this simple but annoying problem lately: technical drawings stored in Sap DMS have to be accessed from both sap gui for windows (on win it&#8217;s also possible the Sap Easy DMS plugin of explorer) and sap gui for java on MacOSX. At the &#8220;view&#8221; command on the sap gui the drawing file (pdf [...]]]></description>
			<content:encoded><![CDATA[<p>I faced this simple but annoying problem lately: technical drawings stored in Sap DMS have to be accessed from both sap gui for windows (on win it&#8217;s also possible the <em>Sap Easy DMS</em> plugin of explorer) and sap gui for java on MacOSX. At the &#8220;view&#8221; command on the sap gui the drawing file (pdf in my case) is transferred to the frontend and then opened&#8230; but the directory where the sap gui copy the file is determinated by a Path customized under &#8220;Define data carrier type server, front end&#8221; in Transaction: DC20. But if you set this Path for the data carrier type &#8220;PC&#8221; it will not work on both Win and Mac (yes, Sap on standard functions for determinate the frontend type returns &#8220;PC&#8221; also for MacOSX, this is the ral problem&#8230;).</p>
<p>The solution is to <span style="color: #ff0000;">simply leave blank the field Path for the data carrier type &#8220;PC&#8221;</span>. The sap gui will copy the dms files in its temp directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://lnx.acidsoft.net/problemsolved/sap-dms-on-macosx.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Facebook fans web&#160;services</title>
		<link>http://lnx.acidsoft.net/problemsolved/free-facebook-fans-web-services.html</link>
		<comments>http://lnx.acidsoft.net/problemsolved/free-facebook-fans-web-services.html#comments</comments>
		<pubDate>Fri, 25 Feb 2011 15:25:52 +0000</pubDate>
		<dc:creator>alessandro</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fanpage]]></category>
		<category><![CDATA[freefan]]></category>
		<category><![CDATA[freefanlikes]]></category>

		<guid isPermaLink="false">http://lnx.acidsoft.net/problemsolved/?p=154</guid>
		<description><![CDATA[Facebook is part of our lifes, and as web developer I had to develop on the Fb plattform, API, plugins and tabs for Fan Pages/Official Pages. But when you develop a fanpage it&#8217;s inevitable: the client will ask some sort of free advertising to promote his new Page. Preface: when you create an Official Page [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook is part of our lifes, and as web developer I had to develop on the Fb plattform, API, plugins and tabs for Fan Pages/Official Pages. But when you develop a fanpage it&#8217;s inevitable: the client will ask some sort of free advertising to promote his new Page.</p>
<p>Preface: when you create an Official Page first of all you have to</p>
<p>1) invite via facebook* or via mail a selected audience/friends that can like your Page, to create a substrate of fan to start from; *UPDATE: <span style="text-decoration: underline;">Facebook suspended the page suggestion method</span>, even for page admins, even if it left the link &#8220;suggest to friends&#8221;, we can now only &#8220;share&#8221; the link of a page (or pay for a fb advertise campaign)&#8230;</p>
<p>2)<span style="text-decoration: underline;"> fill the Page with rich, interesting and fresh contents, create pools, promotions for users, etc</span>&#8230;</p>
<p>You can&#8217;t think to start from few fans and no contents and only promote on free services, almost useless. But if you created and launched your Page properly as described and want to reach a &#8220;<em>critical mass</em>&#8221; of fan to create a reputation for your Page &#8211; that level/number that create some sort of trust into potential fans/likers, usually some thousand fans &#8211; <strong>then</strong> you can then try those services (btw if you have a budget &gt; 0 you can first think to a fb adv campaign or even &#8220;buying&#8221; some fans, but this is not our topic now).</p>
<p>Here you are a little review of some <em>free Facebook fans services </em>(the first is a bit sponsored, I developed some modules):</p>
<ul>
<li><a href="http://www.FreeFanLikes.com" target="_blank">FreeFanLikes</a> a simple and well designed service that works with a &#8220;like to be liked&#8221; logic: you like a pair of dozens pages from a cute interface (you can even skip or report inappropriate contents for some of them) and than you can insert and expose your Page on the site. No login requested, only facebook app permission to select what you already like and an email to be reminded of the expiring of the Page inserted (email is not checked so you can give a fake if you don&#8217;t want the alert); the Page stays active for three month and than you can re-insert that in the same way&#8230; Easy and I suggest it!</li>
<li><a href="http://www.freefacebookfans.com" target="_blank">FreeFacebookFans</a> the site section where you can achieve free fans is a little visitors attracting trick, in fact it is a promise to &#8220;suggest&#8221; your page to other fans of the site facebook page once I&#8217;ll have liked it; they also publish every week a list of the new pages inserted on the homepage&#8230; but the real site business is the facebook fans invite selling, so I can&#8217;t really consider this site a &#8220;service&#8221;.</li>
<li><a href="http://www.earnfans.com" target="_blank">Earnfans</a> similar to freefanlikes, it is simple but not too clear: you can insert your page to the earnfans database by giving your like to a list of 10 pages; you cannot skip a page of the list and it&#8217;s not clear how long your page stays on the database of likeable pages&#8230; by the way easy, and no registration is needed: give it a try.</li>
<li><del><a href="http://twiends.com/" target="_blank">Twiends</a> is a popular credit based sevice, you earn credits giving like to Facebook Pages or becoming follower on Twitter (or, off course, buying it) and you then decide how many credits to give in exchange of fans or followers for your own fb Page/twitter account like or follow (also you can get website visits or youtube views). You have to create an account and then connect with facebook/twitter. With Safari I cannot connect with facebook due to a bug. It can give immediate return to the &#8220;investment&#8221; of using it but it is mainly focused on twitter and it is often used with fake accounts.</del> UPDATE: Twiends suspended the fb page service due to problems with Facebook.</li>
<li><a href="http://www.fantunnel.com" target="_blank">Fantunnel</a> another credit based service: cute graphic, doesn&#8217;t need registration, only facebook app access that ask for public, email(I hate this) and stram publish authorizations (when I tryed it I don&#8217;t grant the last two and the site crashed&#8230;but refreshing all turns ok). The best value is that it&#8217;s possible to target fans with nationality. Once you grant permissions you have a dashboard where you can like pages to earn the amount of credits that page offers (or as always you can buy credits), and a section were to publish Some critics: a lot of pages doesn&#8217;t show the like button, seems like a problem with facebook api/like button&#8230;and when you logoff from the site you also automatically logoff from facebook-annoying! A little buggy.</li>
<li><a href="http://www.Llinks.org" target="_blank">Llinks</a> a mix of &#8220;like to be liked&#8221; and &#8220;credits&#8221; service: after you have liked all the &#8220;VIP&#8221; pages on the home you can insert yours but you have to (buy or) earn credits by likeing other &#8220;Regular&#8221; pages in order to have an high credit amount at the end of the day; if your page is one of the higher credits page of the day will be inserted on the VIP section for (only) one day. No registration needed. Very bad interface design. Too complicated=ineffective.</li>
<li><a href="http://www.likestat.com" target="_blank">LikeStat</a> &#8220;like to be liked&#8221;/&#8221;credits&#8221; mixed service that has the possibility to view the like increase of the inserted pages on a graph (but it&#8217;s not clear if the statistics are about likes received on Likestat or your general trend). You only have to grant facebook permission to the site, including email details. Pages are on a list ordered by number of credits earned by like (or buyed). Interesting is the fact that you can sell your credits to your facebook friends for money.</li>
<li><a href="http://likeexchange.net/" target="_blank">Likeexchange</a> ugly &#8220;like to be liked&#8221; young service. It needs registration and facebook permissions, in two separate steps. Usability is unknown on this site. Good ideas but bad implementation.</li>
</ul>
<p>___</p>
<p>A final note goes to those sites audience: most of users are Facebook Page owners therefore an high percentage is represented by developers/web designers/marketing consultants and finally there are advanced Facebook users that created an official Page.</p>
<p>Hope you enjoyed the article!</p>
]]></content:encoded>
			<wfw:commentRss>http://lnx.acidsoft.net/problemsolved/free-facebook-fans-web-services.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Windows Phone 7 Developer tools on Windows&#160;XP</title>
		<link>http://lnx.acidsoft.net/problemsolved/install-windows-phone-7-developer-tools-on-windows-xp.html</link>
		<comments>http://lnx.acidsoft.net/problemsolved/install-windows-phone-7-developer-tools-on-windows-xp.html#comments</comments>
		<pubDate>Sat, 19 Feb 2011 16:33:39 +0000</pubDate>
		<dc:creator>alessandro</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[windowsphone]]></category>
		<category><![CDATA[WP7]]></category>

		<guid isPermaLink="false">http://lnx.acidsoft.net/problemsolved/?p=147</guid>
		<description><![CDATA[Lately I&#8217;m trying windows phone 7 as smartphone OS, and I&#8217;m very satisfied of it: responsive, crash free, well designed and I loved the graphic theme&#8230; It do what it has to! Being a programmer I wanted also try to develop something on this new platform, but my vm on mac is a win xp, [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I&#8217;m trying windows phone 7 as smartphone OS, and I&#8217;m very satisfied of it: responsive, crash free, well designed and I loved the graphic theme&#8230; It do what it has to! Being a programmer I wanted also try to develop something on this new platform, but my vm on mac is a win xp, for performace reasons, and Microsoft developer tools for WP7 don&#8217;t allow (by default) the install on Windows XP. To overcome this problem I found a little but very useful post from <a href="http://www.brucebarrera.com" target="_blank">www.brucebarrera.com</a> :</p>
<ul>
<li>Download Windows Phone 7 dev tools from <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=49b9d0c5-6597-4313-912a-f0cca9c7d277" target="_blank">here</a></li>
<li>Extract the contents of the package to a specified folder by using <strong>vm_web.exe /x</strong></li>
<li>from the extracted files open <strong>baseline.dat</strong> with a text editor</li>
<li>go to the section <strong>[gencomp7788] </strong></li>
<li>change the values of  <strong>InstallOnLHS</strong> and <strong>InstallOnWinXP</strong> from <strong>1</strong> to <strong>0</strong></li>
<li>save the file baseline.dat</li>
<li>Run <strong>setup.exe /web</strong> from the folder you extracted to in step 2</li>
</ul>
<p>Thanx to <em><a href="http://www.brucebarrera.com" target="_blank">Bruce Barrera</a></em> for the tip!</p>
]]></content:encoded>
			<wfw:commentRss>http://lnx.acidsoft.net/problemsolved/install-windows-phone-7-developer-tools-on-windows-xp.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Local Print on SAPGUI for java (Linux &#8211; MacOSX): Sap output device&#160;configuration</title>
		<link>http://lnx.acidsoft.net/problemsolved/local-print-on-sapgui-for-java-linux-macosx-sap-output-device-configuration.html</link>
		<comments>http://lnx.acidsoft.net/problemsolved/local-print-on-sapgui-for-java-linux-macosx-sap-output-device-configuration.html#comments</comments>
		<pubDate>Mon, 24 Jan 2011 15:39:28 +0000</pubDate>
		<dc:creator>alessandro</dc:creator>
				<category><![CDATA[Sap]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[sap]]></category>
		<category><![CDATA[sapgui]]></category>

		<guid isPermaLink="false">http://lnx.acidsoft.net/problemsolved/?p=138</guid>
		<description><![CDATA[I have some clients starting migrating to MacOSX for daily office use, and they need the Sapgui, and off course they want to print on their local printers. I had them installed the latest Sapgui for java (rel. 7.20 at this time) but they couldn&#8217;t print on local printers with the classic LOCL/LPT1 sap device [...]]]></description>
			<content:encoded><![CDATA[<p>I have some clients starting migrating to <strong>MacOSX</strong> for daily office use, and they need the Sapgui, and off course they want to <em>print on their local printers.</em> I had them installed the <em>latest Sapgui for java (rel. 7.20 at this time)</em> but they couldn&#8217;t print on local printers with the classic LOCL/LPT1 sap device (They still could print on sap server connected printers, host spooler access method &#8220;C&#8221;).</p>
<p>In order to print on local printers on Sapgui for java we have to:</p>
<ul>
<li>add &#8220;G&#8221; to the Host Spooler Access Methods Sap list, using <strong>Report RSPO0075</strong> (if you don&#8217;t find this report follow the Sap Note 821519 Instructions);</li>
<li>create a <span style="text-decoration: underline;">new output device</span> in Transaction SPAD with <strong>device type POST2</strong> and <strong>access method &#8220;G&#8221;</strong>, as shown on the following images.</li>
</ul>
<p><img class="alignnone size-full wp-image-141" title="h-00100100000_image006" src="http://lnx.acidsoft.net/problemsolved/wp-content/uploads/2011/01/h-00100100000_image006.jpg" alt="" width="551" height="166" /></p>
<p><img class="alignnone size-full wp-image-142" title="h-00100100000_image008" src="http://lnx.acidsoft.net/problemsolved/wp-content/uploads/2011/01/h-00100100000_image008.jpg" alt="" width="550" height="173" /></p>
<p>Further documentation <a href="http://help.sap.com/saphelp_nw70/helpdata/en/77/ad0c3c5aadd94ee10000000a11402f/frameset.htm" target="_blank">here</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://lnx.acidsoft.net/problemsolved/local-print-on-sapgui-for-java-linux-macosx-sap-output-device-configuration.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Print with&#160;SAPSprint</title>
		<link>http://lnx.acidsoft.net/problemsolved/print-with-sapsprint.html</link>
		<comments>http://lnx.acidsoft.net/problemsolved/print-with-sapsprint.html#comments</comments>
		<pubDate>Thu, 20 Jan 2011 17:26:03 +0000</pubDate>
		<dc:creator>alessandro</dc:creator>
				<category><![CDATA[Sap]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[sap]]></category>
		<category><![CDATA[SAPSprint]]></category>

		<guid isPermaLink="false">http://lnx.acidsoft.net/problemsolved/?p=131</guid>
		<description><![CDATA[A brief post for a little trick I used lately&#8230; The scenario was: the client have to print via sap but the printer isn&#8217;t neither connected to sap server nor a network printer. The method I adopted is SAPSprint, a sap windows utility that transform the pc where is connected the printer to a printer [...]]]></description>
			<content:encoded><![CDATA[<p>A brief post for a little trick I used lately&#8230; The scenario was: the client have to print via sap but the printer isn&#8217;t neither connected to sap server nor a network printer. The method I adopted is SAPSprint, a sap windows utility that transform the pc where is connected the printer to a printer server compatible with sap. Once you installed SAPSprint there&#8217;s only a pair of step to complete:</p>
<ul>
<li>Share the printer from the windows sharing;</li>
<li>Create a new printer on SAP, via Tx SPAD, with those parameters:<br />
- On <span style="text-decoration: underline;">DeviceAttributes</span> Tab:<br />
Device Type &#8211; <strong>SAPWIN</strong><br />
Device Class &#8211; <strong>Standard Printer</strong><br />
- On <span style="text-decoration: underline;">Access Method</span> Tab:<br />
Host Spool Access Method: <strong>S: print using SAP protocol</strong><br />
Host Printer: <strong>&lt;network shared printer path&gt;</strong> (i.e.: \\PC12\SHAREDPRINTER)<br />
Destination host: <strong>&lt;name of the pc sharing the printer&gt;</strong> (i.e.: PC12)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://lnx.acidsoft.net/problemsolved/print-with-sapsprint.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Asp Excel integration: open/close xls files on server &#8211; read/write&#160;cell</title>
		<link>http://lnx.acidsoft.net/problemsolved/asp-excel-integration-openclose-xls-files-on-server-readwrite-cell.html</link>
		<comments>http://lnx.acidsoft.net/problemsolved/asp-excel-integration-openclose-xls-files-on-server-readwrite-cell.html#comments</comments>
		<pubDate>Thu, 23 Sep 2010 13:46:14 +0000</pubDate>
		<dc:creator>alessandro</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Asp]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Integration]]></category>

		<guid isPermaLink="false">http://lnx.acidsoft.net/problemsolved/?p=107</guid>
		<description><![CDATA[This is a particular scenario: I have to use an excel worksheet as calculation engine on a web page. MS itself discourages the asp-excel (application) integration but this is the easiest method I found. Here are my test&#8217;s steps and the code for the test, in asp: Create an Excel Object and open a worksheet [...]]]></description>
			<content:encoded><![CDATA[<p>This is a particular scenario: I have to use an excel worksheet as calculation engine on a web page. MS itself discourages the asp-excel (application) integration but this is the easiest method I found. Here are my test&#8217;s steps and the code for the test, in asp:</p>
<ul>
<li>Create an Excel Object and open a worksheet of an xls file;</li>

<div class="wp_codebox"><table><tr id="p1077"><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code" id="p107code7"><pre class="asp" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">Set</span> ex <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #990099; font-weight: bold;">server</span>.<span style="color: #330066;">CreateObject</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Excel.Application&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
<span style="color: #990099; font-weight: bold;">If</span> IsObject<span style="color: #006600; font-weight:bold;">&#40;</span>ex<span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #990099; font-weight: bold;">Then</span>
ex.<span style="color: #990099; font-weight: bold;">Application</span>.<span style="color: #9900cc;">DisplayAlerts</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #0000ff; font-weight: bold;">False</span>
ex.<span style="color: #990099; font-weight: bold;">Application</span>.<span style="color: #9900cc;">Visible</span><span style="color: #006600; font-weight: bold;">=</span> <span style="color: #0000ff; font-weight: bold;">True</span>
ex.<span style="color: #9900cc;">Workbooks</span>.<span style="color: #330066;">Open</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;C:\Inetpub\wwwroot\testExcel\Test.xls&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span></pre></td></tr></table></div>

<li>Write a pair of values on two cells (I prepared a third cell with the SUM formula for these two cells, to test the formulas execution);</li>

<div class="wp_codebox"><table><tr id="p1078"><td class="line_numbers"><pre>6
7
</pre></td><td class="code" id="p107code8"><pre class="asp" style="font-family:monospace;">ex.<span style="color: #9900cc;">ActiveSheet</span>.<span style="color: #9900cc;">Cells</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #800000;">1</span>,<span style="color: #800000;">1</span><span style="color: #006600; font-weight:bold;">&#41;</span>.<span style="color: #9900cc;">Value</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;4&quot;</span>
ex.<span style="color: #9900cc;">ActiveSheet</span>.<span style="color: #9900cc;">Cells</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #800000;">1</span>,<span style="color: #800000;">2</span><span style="color: #006600; font-weight:bold;">&#41;</span>.<span style="color: #9900cc;">Value</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;3&quot;</span></pre></td></tr></table></div>

<li>Save (<span style="color: #ff0000;">that means execution of the formulas<span style="color: #888888;">, the file Test1.xls is only for cache, the real file saved is the same Test.xls</span></span>) and close the file and Excel Application;</li>

<div class="wp_codebox"><table><tr id="p1079"><td class="line_numbers"><pre>8
9
10
11
12
13
</pre></td><td class="code" id="p107code9"><pre class="asp" style="font-family:monospace;">ex.<span style="color: #9900cc;">Save</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;C:\Inetpub\wwwroot\testExcel\Temp1.xls&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
ex.<span style="color: #9900cc;">Workbooks</span>.<span style="color: #330066;">Close</span>
ex.<span style="color: #9900cc;">Quit</span>
<span style="color: #990099; font-weight: bold;">Else</span>
<span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">write</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;Can Not Connect to Excel.Application&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
<span style="color: #990099; font-weight: bold;">End</span> <span style="color: #990099; font-weight: bold;">IF</span></pre></td></tr></table></div>

<li>Reopen the xls file, as first point;</li>
<li>Read the cell of the formula result;</li>

<div class="wp_codebox"><table><tr id="p10710"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p107code10"><pre class="asp" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">write</span><span style="color: #006600; font-weight:bold;">&#40;</span>ex.<span style="color: #9900cc;">ActiveSheet</span>.<span style="color: #9900cc;">Cells</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #800000;">4</span>,<span style="color: #800000;">4</span><span style="color: #006600; font-weight:bold;">&#41;</span>.<span style="color: #9900cc;">Value</span><span style="color: #006600; font-weight:bold;">&#41;</span></pre></td></tr></table></div>

<li>close the file and Excel Application, as before;</li>
</ul>
<p>The great limitation of the solution is that Excel must be installed on the web server.</p>
]]></content:encoded>
			<wfw:commentRss>http://lnx.acidsoft.net/problemsolved/asp-excel-integration-openclose-xls-files-on-server-readwrite-cell.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android 2.2 Froyo on Motorola Milestone &#8211; how to (not official&#160;version)</title>
		<link>http://lnx.acidsoft.net/problemsolved/android-2-2-froyo-on-motorola-milestone-how-to-not-official-versionporting-from-droid-2.html</link>
		<comments>http://lnx.acidsoft.net/problemsolved/android-2-2-froyo-on-motorola-milestone-how-to-not-official-versionporting-from-droid-2.html#comments</comments>
		<pubDate>Mon, 16 Aug 2010 16:47:17 +0000</pubDate>
		<dc:creator>alessandro</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Froyo]]></category>
		<category><![CDATA[Millestone]]></category>

		<guid isPermaLink="false">http://lnx.acidsoft.net/problemsolved/?p=88</guid>
		<description><![CDATA[(Obiouvsly) I am a Motorola Milestone owner (I friendly hate touchscreen keyboards) and during this summer holidays I spent a little time to find how to have my smartphone updated to Android 2.2, aka Froyo. Motorola haven&#8217;t released an official update yet but I can&#8217;t wait &#8230;here is a solution (follow these steps at your [...]]]></description>
			<content:encoded><![CDATA[<p>(Obiouvsly) I am a Motorola Milestone owner (I friendly hate touchscreen keyboards) and during this summer holidays I spent a little time to find how to have my smartphone updated to Android 2.2, aka Froyo. Motorola haven&#8217;t released an official update yet but <strong>I can&#8217;t wait</strong> <img src='http://lnx.acidsoft.net/problemsolved/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  &#8230;here is a solution (<span style="text-decoration: underline;">follow these steps at your own risk!</span>) [<strong>UPDATED 14-10-2010</strong>]:</p>
<ul>
<li>wipe your phone/factory reset (always have a backup&#8230;);</li>
<li><del datetime="2010-10-14T12:51:26+00:00">Download OpenRecovery from <a href="http://groupoften.wordpress.com/2010/07/14/new-version-of-g-o-t-openrecovery-v1-04a/" target="_blank">here</a> (latest version is 1.04a);</del> <strong>UPDATE:</strong> download new open recovery here: <a rel="nofollow" href="http://code.google.com/p/androidiani-openrecovery/" target="_blank">androidiani-openrecovery</a>, copy the contents of the zip into the root of the sd card;</li>
<li>Download the custom 2.2 Rom, <del datetime="2010-10-14T12:51:26+00:00">MotoFrenzy, from <a href="http://modmymobile.com/forums/f401/image-v0-4-3-aug-2010-motofrenzy-froyo-2-2-milestone-554590/" target="_blank">here</a> (by now is the  version 0.52 and the only issue is a focus disfunction of the camera), </del><strong>CyanogenMod 6 for Milestone </strong>from <a href="http://github.com/downloads/nadlabak/android/update-cm-6.1.0-RC0-Milestone-signed-2010-10-02.zip">here</a> (<a href="http://modmymobile.com/forums/563-motorola-milestone-roms/556562-rom-alpha-0-02-10-10-02-02-oct-2010-cyanogenmod-6-milestone-bastardized-2-2-a.html">here it is</a> the official thread on modmymobile, <a href="http://android.doshaska.net/cm6">here the official page</a> from the developer nadlabak),<strong> </strong>and copy the zip into: sd card/openrecovery/updates/</li>
<li>Start OpenRecovery: reboot in recovery mode (shutdown the phone, press camera button + stanby button, when a triangle appear press volume up + camera button), now select &#8220;apply update.zip&#8221; and you are in OpenRecovery menu;</li>
<li>Install the rom from OpenRecovery menu-&gt;nandroid-&gt;restore image-&gt;motofrenzy (or the name of the directory you copied the rom files of point 3); use OpenRecovery Apply Update menu to install the custom ROM;</li>
<li>Done! &#8230;Enjoy flash (download the flash player from the market), app to sd, jit, etc! <span style="text-decoration: underline;">Now with working camera and better battery life!</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://lnx.acidsoft.net/problemsolved/android-2-2-froyo-on-motorola-milestone-how-to-not-official-versionporting-from-droid-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

