<?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: VBA support in OpenOffice.Org Calc</title>
	<atom:link href="http://pkrishnan.net/vba-support-in-openoffice-org-calc/feed/" rel="self" type="application/rss+xml" />
	<link>http://pkrishnan.net/vba-support-in-openoffice-org-calc/</link>
	<description>Krishnan&#039;s weblog - A scribble pad. A hybrid microblog. Mostly bread crumbs of an internet journey.</description>
	<lastBuildDate>Wed, 01 Feb 2012 19:45:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: james</title>
		<link>http://pkrishnan.net/vba-support-in-openoffice-org-calc/comment-page-1/#comment-1135</link>
		<dc:creator>james</dc:creator>
		<pubDate>Sun, 07 Feb 2010 14:46:37 +0000</pubDate>
		<guid isPermaLink="false">http://pkrishnan.net/vba-support-in-openoffice-org-calc/#comment-1135</guid>
		<description>ingnoring the &quot;rems&quot;
how would you right this in OOo ?? i cant work out OOo - pls get me started ??
Rem Sub Words()
Rem &#039;
Rem &#039; Words Macro
Rem &#039; Macro recorded 07/02/2010 by Owner
Rem &#039;
Rem &#039; Keyboard Shortcut: Ctrl+w
Rem &#039;
Rem     Dim NumWords As Integer
Rem     Dim WordLength As Integer
Rem     Dim Count As Integer
Rem     Dim Count2 As Integer
Rem     Dim Lcase As Integer
Rem 
Rem     Dim Word As String
Rem     Dim MixedWord As String
Rem     Dim Letter As String
Rem     
Rem &#039;    Worksheets(&quot;Words&quot;).Activate
Rem 
Rem     Set wordRange = Worksheets(&quot;Words&quot;).Range(&quot;A1:A500&quot;)
Rem     NumWords = Application.WorksheetFunction.CountA(wordRange)
Rem 
Rem     For Count = 1 To NumWords
Rem         WordLength = Len(Cells(Count, 1))
Rem         
Rem 
Rem     &#039;    Application.EnableSound = False
Rem 
Rem     &#039;    Application.EnableSound = True
Rem         Word = Cells(Count, 1)
Rem     &#039;    Cells(Count, 1).Activate
Rem     &#039;    ActiveCell.Characters(1, 3).PhoneticCharacters = Word
Rem         MixedWord = &quot;&quot;
Rem         For Count2 = 1 To WordLength
Rem         Letter = Mid(Cells(Count, 1), Count2, 1)
Rem   &#039;      Application.Speech.Speak (Letter)
Rem         Lcase = Round(Rnd)
Rem 
Rem 
Rem         If Lcase = 1 And Asc(Letter) &gt;= 97 Then Letter = Chr(Asc(Letter) - 32)
Rem         
Rem         MixedWord = MixedWord + Letter
Rem         Next Count2
Rem         Cells(1, 5) = MixedWord
Rem         
Rem         Dim Message, Title, Default, MyValue
Rem         Message = &quot;Ready Monkey ?&quot;
Rem         Title = &quot;Honors spelling game.&quot;
Rem         Default = &quot;YES&quot;
Rem         MyValue = InputBox(Message, Title, Default)
Rem 
Rem 
Rem         For Count2 = 1 To WordLength
Rem          Letter = Mid(Cells(Count, 1), Count2, 1)
Rem          Application.Speech.Speak (Letter)
Rem         Next Count2
Rem         Application.Speech.Speak (Word)
Rem         
Rem         If MyValue  &quot;YES&quot; Then
Rem             Application.Speech.Speak (&quot;That&#039;s wrong pooey - you entered&quot;)
Rem             WordLength = Len(MyValue)
Rem             For Count2 = 1 To WordLength
Rem                 Letter = Mid(MyValue, Count2, 1)
Rem                 Application.Speech.Speak (Letter)
Rem             Next Count2
Rem             Application.Speech.Speak (MyValue)
Rem         End If
Rem         
Rem 
Rem     Next Count
Rem     
Rem     
Rem End Sub
Rem</description>
		<content:encoded><![CDATA[<p>ingnoring the &#8220;rems&#8221;<br />
how would you right this in OOo ?? i cant work out OOo &#8211; pls get me started ??<br />
Rem Sub Words()<br />
Rem &#8216;<br />
Rem &#8216; Words Macro<br />
Rem &#8216; Macro recorded 07/02/2010 by Owner<br />
Rem &#8216;<br />
Rem &#8216; Keyboard Shortcut: Ctrl+w<br />
Rem &#8216;<br />
Rem     Dim NumWords As Integer<br />
Rem     Dim WordLength As Integer<br />
Rem     Dim Count As Integer<br />
Rem     Dim Count2 As Integer<br />
Rem     Dim Lcase As Integer<br />
Rem<br />
Rem     Dim Word As String<br />
Rem     Dim MixedWord As String<br />
Rem     Dim Letter As String<br />
Rem<br />
Rem &#8216;    Worksheets(&#8220;Words&#8221;).Activate<br />
Rem<br />
Rem     Set wordRange = Worksheets(&#8220;Words&#8221;).Range(&#8220;A1:A500&#8243;)<br />
Rem     NumWords = Application.WorksheetFunction.CountA(wordRange)<br />
Rem<br />
Rem     For Count = 1 To NumWords<br />
Rem         WordLength = Len(Cells(Count, 1))<br />
Rem<br />
Rem<br />
Rem     &#8216;    Application.EnableSound = False<br />
Rem<br />
Rem     &#8216;    Application.EnableSound = True<br />
Rem         Word = Cells(Count, 1)<br />
Rem     &#8216;    Cells(Count, 1).Activate<br />
Rem     &#8216;    ActiveCell.Characters(1, 3).PhoneticCharacters = Word<br />
Rem         MixedWord = &#8220;&#8221;<br />
Rem         For Count2 = 1 To WordLength<br />
Rem         Letter = Mid(Cells(Count, 1), Count2, 1)<br />
Rem   &#8216;      Application.Speech.Speak (Letter)<br />
Rem         Lcase = Round(Rnd)<br />
Rem<br />
Rem<br />
Rem         If Lcase = 1 And Asc(Letter) &gt;= 97 Then Letter = Chr(Asc(Letter) &#8211; 32)<br />
Rem<br />
Rem         MixedWord = MixedWord + Letter<br />
Rem         Next Count2<br />
Rem         Cells(1, 5) = MixedWord<br />
Rem<br />
Rem         Dim Message, Title, Default, MyValue<br />
Rem         Message = &#8220;Ready Monkey ?&#8221;<br />
Rem         Title = &#8220;Honors spelling game.&#8221;<br />
Rem         Default = &#8220;YES&#8221;<br />
Rem         MyValue = InputBox(Message, Title, Default)<br />
Rem<br />
Rem<br />
Rem         For Count2 = 1 To WordLength<br />
Rem          Letter = Mid(Cells(Count, 1), Count2, 1)<br />
Rem          Application.Speech.Speak (Letter)<br />
Rem         Next Count2<br />
Rem         Application.Speech.Speak (Word)<br />
Rem<br />
Rem         If MyValue  &#8220;YES&#8221; Then<br />
Rem             Application.Speech.Speak (&#8220;That&#8217;s wrong pooey &#8211; you entered&#8221;)<br />
Rem             WordLength = Len(MyValue)<br />
Rem             For Count2 = 1 To WordLength<br />
Rem                 Letter = Mid(MyValue, Count2, 1)<br />
Rem                 Application.Speech.Speak (Letter)<br />
Rem             Next Count2<br />
Rem             Application.Speech.Speak (MyValue)<br />
Rem         End If<br />
Rem<br />
Rem<br />
Rem     Next Count<br />
Rem<br />
Rem<br />
Rem End Sub<br />
Rem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krishnan</title>
		<link>http://pkrishnan.net/vba-support-in-openoffice-org-calc/comment-page-1/#comment-1118</link>
		<dc:creator>Krishnan</dc:creator>
		<pubDate>Mon, 09 Nov 2009 17:37:14 +0000</pubDate>
		<guid isPermaLink="false">http://pkrishnan.net/vba-support-in-openoffice-org-calc/#comment-1118</guid>
		<description>The syntax is obviously incorrect as I can see.

If, Then, Else are the keywords to be used. Not Or.</description>
		<content:encoded><![CDATA[<p>The syntax is obviously incorrect as I can see.</p>
<p>If, Then, Else are the keywords to be used. Not Or.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rakesh</title>
		<link>http://pkrishnan.net/vba-support-in-openoffice-org-calc/comment-page-1/#comment-1116</link>
		<dc:creator>Rakesh</dc:creator>
		<pubDate>Sat, 07 Nov 2009 15:15:31 +0000</pubDate>
		<guid isPermaLink="false">http://pkrishnan.net/vba-support-in-openoffice-org-calc/#comment-1116</guid>
		<description>Hi,
I have tried doing what u have mentioned, but still it doesn&#039;t work.
if SHEET1.CELLS(7, 4) = &quot;&quot;  Or SHEET1.CELLS(9, 4) = &quot;&quot; Or SHEET1.CELLS(10, 4) = &quot;&quot;

In this line i am getting property or method not found.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I have tried doing what u have mentioned, but still it doesn&#8217;t work.<br />
if SHEET1.CELLS(7, 4) = &#8220;&#8221;  Or SHEET1.CELLS(9, 4) = &#8220;&#8221; Or SHEET1.CELLS(10, 4) = &#8220;&#8221;</p>
<p>In this line i am getting property or method not found.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

