<?xml version="1.0" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">

	<channel>
		<lastBuildDate>Thu, 19 Jun 2008 14:02:52 GMT</lastBuildDate>
		<copyright>All content &amp;copy; Vishal Monpara</copyright>
		<description>Vishal Monpara's blog contains his programming experience with ASP .Net, Microsoft Access, web development, other microsoft related technology as well as open source technology like java, jsp</description>
		<link>http://blog.vishalon.net</link>
		<title>Vishal Monpara's Blog</title>
		<language>en-US</language>
		<item>
			<title>MS Access Pass-through query Error: Cannot execute a select query</title>
			<description>&lt;P&gt;When I tried to run an UPDATE statement from pass-through query, it throwed error "Cannot execute a select query". This is due to that fact the property ReturnsRecords is set to True which requires the pass through query to return results. If it does not return recordset, it will throw an error. You can correct this error by&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Open pass-through query into design mode. Click on Properties button (Alt+Enter) and set Return Records to No&lt;/LI&gt;
&lt;LI&gt;Using program you can set QueryDef object's ReturnsRecords property to False.&lt;/LI&gt;&lt;/OL&gt;</description>
			<link>http://blog.vishalon.net/Post/99.aspx</link>
			<dc:creator>Vishal Monpara</dc:creator>
			<pubDate>Thu, 19 Jun 2008 21:02:52 GMT</pubDate>
			<guid>http://blog.vishalon.net/Post/99.aspx</guid>
		</item>
		<item>
			<title>Check the existence of COM object registered using regsvr32</title>
			<description>I had a chance to work on project which was using a COM object. This object was registered using regsvr32. During application migration to another server, I wanted to check the if this object exists on new server or not. I don't wanted to write VB application to just check that object so suddenly a thought came in my mind. If I write down a vbs script file, with few lines of code, I can check out quickly. Here are the instructions to do it.&lt;br&gt;&lt;br&gt;For this, you need to create a file checkobject.vbs on your computer and copy/paste the following code in it.&lt;br&gt;&lt;pre&gt;On Error Resume Next&lt;br&gt;Dim objVariable&lt;br&gt;Set objVariable = WScript.CreateObject ("Wscript.Network1" )&lt;br&gt;If Err.Number &amp;lt;&amp;gt; 0 Then&lt;br&gt;	Msgbox "Object is not found", vbCritical&lt;br&gt;	Err.Clear&lt;br&gt;Else&lt;br&gt;	Msgbox "Object found"		&lt;br&gt;End If&lt;br&gt;Set objVariable = nothing&lt;/pre&gt;Now if you double click on that file, VB Script will be executed and appropriate message will be shown.&lt;br&gt;</description>
			<link>http://blog.vishalon.net/Post/98.aspx</link>
			<dc:creator>Vishal Monpara</dc:creator>
			<pubDate>Fri, 02 May 2008 23:03:02 GMT</pubDate>
			<guid>http://blog.vishalon.net/Post/98.aspx</guid>
		</item>
		<item>
			<title>MS Access: Check If The Normal Form Or Subform Form Is Loaded</title>
			<description>If you need to check if MS Access form is loaded or not, you can easily check it using the folloing code&lt;br&gt;&lt;pre&gt;If CurrentProject.AllForms("FORMNAME").IsLoaded = True Then&lt;br&gt;	' DO SOMETHING&lt;br&gt;End If&lt;br&gt;&lt;/pre&gt;This code is good until you are using single form application. This code will fail if the form is used as subform. To search all the forms including subform, I have created a function calling which will search for all the loaded forms and gives the result as boolean value. Here is the example to check if the form is loaded or not&lt;br&gt;&lt;pre&gt;Dim IsLoaded as Boolean&lt;br&gt;IsLoaded = IsFormLoaded("FORMNAME")&lt;/pre&gt;The function IsFormLoaded will search each and every control within each form to find the form FORMNAME. Of course, this is a overhead to the application so to reduce the amount of search, two optional arguments can be provided which can be very helpful in searching subform. If you already know the parent form name of the subform and the controlname which holds subform within parent form, the time to search subform will be reduced. For example&lt;br&gt;&lt;pre&gt;Dim IsLoaded as Boolean&lt;br&gt;IsLoaded = IsFormLoaded("FORMNAME","PARENTFORMNAME")&lt;/pre&gt;will search all the controls withing PARENTFORMNAME form while&lt;br&gt;&lt;pre&gt;Dim IsLoaded as Boolean&lt;br&gt;IsLoaded = IsFormLoaded("FORMNAME","PARENTFORMNAME","CONTROLNAME")&lt;/pre&gt;will search for the CONTROLNAME control within PARENTFORMNAME form to check if the FORMNAME form is loaded.&lt;br&gt;&lt;br&gt;The above mentioned functions are here.&lt;br&gt;&lt;pre&gt;Public Function IsFormLoaded(strFormName As String, &lt;br&gt;		Optional LookupFormName As Form, &lt;br&gt;		Optional LookupControl As Control) As Boolean&lt;br&gt;    Dim frm As Form&lt;br&gt;    Dim bFound As Boolean&lt;br&gt;&lt;br&gt;    If Not (IsMissing(LookupFormName) Or IsNull(LookupFormName) &lt;br&gt;		Or LookupFormName Is Nothing) Then&lt;br&gt;        If Not (IsMissing(LookupControl) Or IsNull(LookupControl) &lt;br&gt;		Or LookupControl Is Nothing) Then&lt;br&gt;        On Error GoTo ErrorHandler:&lt;br&gt;            If LookupControl.ControlType = acSubform Then&lt;br&gt;                If LookupControl.Form.Name = strFormName Then&lt;br&gt;                    bFound = True&lt;br&gt;                End If&lt;br&gt;            End If&lt;br&gt;        Else&lt;br&gt;            Call SearchInForm(LookupFormName, strFormName, bFound)&lt;br&gt;        End If&lt;br&gt;    Else&lt;br&gt;        For Each frm In Forms&lt;br&gt;            If frm.Name = strFormName Then&lt;br&gt;                bFound = True&lt;br&gt;                Exit For&lt;br&gt;            Else&lt;br&gt;                Call SearchInForm(frm, strFormName, bFound)&lt;br&gt;                If bFound Then&lt;br&gt;                    Exit For&lt;br&gt;                End If&lt;br&gt;            End If&lt;br&gt;        Next&lt;br&gt;    End If&lt;br&gt;ErrorHandler:&lt;br&gt;    IsFormLoaded = bFound&lt;br&gt;End Function&lt;br&gt;&lt;br&gt;Public Function SearchInForm(frm As Form, strDoc As String, &lt;br&gt;			bFound As Boolean)&lt;br&gt;On Error GoTo ErrorHandler&lt;br&gt;    Dim ctl As Control&lt;br&gt;&lt;br&gt;    For Each ctl In frm.Controls&lt;br&gt;        If ctl.ControlType = acSubform Then&lt;br&gt;            If ctl.Form.Name = strDoc Then&lt;br&gt;            'If ctl.SourceObject = strDoc Then&lt;br&gt;                bFound = True&lt;br&gt;            Else&lt;br&gt;                Call SearchInForm(ctl.Form, strDoc, bFound)&lt;br&gt;            End If&lt;br&gt;SkipElement:&lt;br&gt;            If bFound Then&lt;br&gt;                Exit For&lt;br&gt;            End If&lt;br&gt;        End If&lt;br&gt;    Next&lt;br&gt;    Exit Function&lt;br&gt;ErrorHandler:&lt;br&gt;            Resume SkipElement&lt;br&gt;    &lt;br&gt;End Function&lt;/pre&gt;</description>
			<link>http://blog.vishalon.net/Post/97.aspx</link>
			<dc:creator>Vishal Monpara</dc:creator>
			<pubDate>Fri, 18 Apr 2008 15:59:18 GMT</pubDate>
			<guid>http://blog.vishalon.net/Post/97.aspx</guid>
		</item>
		<item>
			<title>MS Word: Remove watermark from all Word pages using VBA</title>
			<description>You can create watermark in MS Word document by going to Format Menu &amp;gt; Background &amp;gt; Printed Watermarks... Here you will be able to set Text Watermark in each page. Now if you want to remove the watermark from all pages, use the following VBA script.&lt;br&gt;
&lt;pre&gt;&lt;br&gt;   Dim section As Word.section&lt;br&gt;   Dim pheadertype As Long&lt;br&gt;   Dim hdr As Range&lt;br&gt;   Dim sp As Shape&lt;br&gt;   Dim str As String&lt;br&gt;   For Each section In ActiveDocument.Sections&lt;br&gt;      With section&lt;br&gt;         Set hdr = .Headers(wdHeaderFooterFirstPage).Range&lt;br&gt;         For Each sp In hdr.ShapeRange&lt;br&gt;            str = sp.Name&lt;br&gt;            If InStr(str, "PowerPlusWaterMarkObject") &amp;gt; 0 Then&lt;br&gt;               sp.Visible = msoFalse&lt;br&gt;             End If&lt;br&gt;          Next&lt;br&gt;          Set hdr = .Headers(wdHeaderFooterPrimary).Range&lt;br&gt;          For Each sp In hdr.ShapeRange&lt;br&gt;             str = sp.Name&lt;br&gt;             If InStr(str, "PowerPlusWaterMarkObject") &amp;gt; 0 Then&lt;br&gt;                 sp.Visible = msoFalse&lt;br&gt;             End If&lt;br&gt;           Next&lt;br&gt;       End With&lt;br&gt;    Next&lt;br&gt;&lt;/pre&gt;</description>
			<link>http://blog.vishalon.net/Post/96.aspx</link>
			<dc:creator>Vishal Monpara</dc:creator>
			<pubDate>Fri, 28 Mar 2008 14:17:23 GMT</pubDate>
			<guid>http://blog.vishalon.net/Post/96.aspx</guid>
		</item>
		<item>
			<title>CodAddict: A new way to store and manage your code bookmarks/examples</title>
			<description>It was very difficult for me to remember all my code examples and mingle my code bookmark with my social bookmarks. So I came up with a solution to easily store and manage code examples online. The website name is &lt;a href="http://www.codaddict.com"&gt;http://www.codaddict.com&lt;/a&gt;. I have come up with this name because I am a code addict. I hope you will also like this website and use it to store your code bookmark and share your knowledge with whole world.&lt;br&gt;&lt;br&gt;&lt;font size="4"&gt;&lt;b&gt;Main Features&lt;/b&gt;&lt;/font&gt;&lt;br&gt;&lt;div class="fixedwidth"&gt;
&lt;ul&gt;&lt;li&gt;Its &lt;strong&gt;FREE&lt;/strong&gt;!!!&lt;/li&gt;&lt;li&gt;Access your code example from any end of the world&lt;/li&gt;&lt;li&gt;Store your code example from any end of the world&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Dont go through a lengthy article when you need a line of code&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;Make you code example private if you want to.&lt;/li&gt;&lt;li&gt;Easily organize your code example&lt;/li&gt;&lt;li&gt;Retrive your code example very easily&lt;/li&gt;&lt;li&gt;Import/export your code examples with a single click&lt;/li&gt;&lt;li&gt;Share your code examples with the world&lt;/li&gt;&lt;li&gt;Get new ideas from other geek's code example&lt;/li&gt;&lt;li&gt;Separate your code example bookmark from social bookmark&lt;/li&gt;&lt;li&gt;Built by a developer who knows what you need.&lt;/li&gt;&lt;li&gt;Takes about 1 minute to &lt;a href="http://www.codaddict.com/register"&gt;&lt;strong&gt;join&lt;/strong&gt;&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;br&gt;</description>
			<link>http://blog.vishalon.net/Post/95.aspx</link>
			<dc:creator>Vishal Monpara</dc:creator>
			<pubDate>Sun, 12 Aug 2007 20:40:35 GMT</pubDate>
			<guid>http://blog.vishalon.net/Post/95.aspx</guid>
		</item>
		<item>
			<title>Flash File (.swf) is not loading in IE, works fine in FF</title>
			<description>I have some video tutorial uploaded on my website. I tried it on FF and it worked perfectly but when I tried on IE, I did not get anything. I checked on google and after spending much time, I found the problem. I am explaining with example.&lt;br&gt;&lt;br&gt;&lt;pre&gt;&amp;lt;object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" &lt;br&gt;id="banner" codebase="http://download.macromedia.com/&lt;br&gt;pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"&lt;br&gt;&amp;nbsp;border="0" width="754" height="64"&amp;gt;&lt;br&gt;	&amp;lt;&lt;b&gt;param name="movie" value="banner.swf"&lt;/b&gt;&amp;gt;&lt;br&gt;	&amp;lt;param name="quality" value="High"&amp;gt;&lt;br&gt;	&amp;lt;&lt;b&gt;embed src="http://www.domain.com/video/banner.swf&lt;/b&gt;"&lt;br&gt;&amp;nbsp;pluginspage="http://www.macromedia.com/go/getflashplayer" &lt;br&gt;type="application/x-shockwave-flash" &lt;br&gt;name="banner" width="754" height="64" quality="High"&amp;gt;&amp;lt;/object&amp;gt; &lt;/pre&gt;Now IE uses param movie tag to download swf file and FF uses embed src tag to download swf. Now you realized why IE is not displaying flash object. Correct code would be&lt;br&gt;&lt;br&gt;&lt;pre&gt;&amp;lt;object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000"&lt;br&gt;id="banner" codebase="http://download.macromedia.com/&lt;br&gt;pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"&lt;br&gt;border="0" width="754" height="64"&amp;gt;&lt;br&gt;	&amp;lt;&lt;b&gt;param name="movie" value="http://www.domain.com/&lt;/b&gt;&lt;b&gt;&lt;b&gt;video&lt;/b&gt;&lt;/b&gt;&lt;b&gt;/banner.swf"&lt;/b&gt;&amp;gt;&lt;br&gt;	&amp;lt;param name="quality" value="High"&amp;gt;&lt;br&gt;	&amp;lt;&lt;b&gt;embed src="http://www.domain.com/video/banner.swf&lt;/b&gt;"&lt;br&gt;pluginspage="http://www.macromedia.com/go/getflashplayer"&lt;br&gt;type="application/x-shockwave-flash" name="banner" &lt;br&gt;width="754" height="64" quality="High"&amp;gt;&amp;lt;/object&amp;gt;&lt;/pre&gt; &lt;br&gt;&lt;br&gt;</description>
			<link>http://blog.vishalon.net/Post/94.aspx</link>
			<dc:creator>Vishal Monpara</dc:creator>
			<pubDate>Tue, 17 Jul 2007 16:04:22 GMT</pubDate>
			<guid>http://blog.vishalon.net/Post/94.aspx</guid>
		</item>
		<item>
			<title>Wordpress Comment Spam Even with Comments Disabled for Blog</title>
			<description>I have my wordpress blog at &lt;a href="http://diary.vishalon.net"&gt;http://diary.vishalon.net&lt;/a&gt;. Every day I am getting hundreds of comment spam. I had installed comment spam fight plugin and it seems like worked for few days but again I was getting spam comments. I changed the settings of blog so that only logged in user can put a comment. I even disabled comments completely but all efforts were in vein. I tried to find some information on google but couldn't get it So I thought let me debug the application and check it out why I am getting hunderds of comments everyday. For this, in wp-comments-post.php file I wrote a code to write all parameters in a text file so I can check out what's wrong with application. I can post my comment and see the log file but for spam, there was no log trail. It seemed to me that comments are coming from other&amp;nbsp; files. so I moved that code into config file and I found that those comments are actually trackbacks. If you want to check if the comment is trackback or not, check the Email value of comment. If you see it empty, it means it is a trackback. I disabled trackback by loggin in site &amp;gt; Options &amp;gt; Discussion and disabling trackback and pingback.&lt;br&gt;&lt;br&gt;Now I am relieved of spam comments(actually trackbacks).&lt;br&gt;</description>
			<link>http://blog.vishalon.net/Post/93.aspx</link>
			<dc:creator>Vishal Monpara</dc:creator>
			<pubDate>Fri, 27 Apr 2007 19:06:22 GMT</pubDate>
			<guid>http://blog.vishalon.net/Post/93.aspx</guid>
		</item>
		<item>
			<title>php.ini changes have no effect</title>
			<description>Today I tried to install PHP and MySQL on my local Windows XP Pro machine. Both were working fine individually but I couldnot connect to the MySQL from PHP code. I tried to change php.ini file but no matter what I do, changes were not reflected when I tried phpinfo() function. &lt;br&gt;&lt;br&gt;It was showing Configuration File (php.ini) Path = C:\php\php.ini which is correct and I did not have any php.ini on any other location. Everytime I make changes, I was restarting the IIS Server but any how changes were not reflected. In resetting IIS what I was following is go to Control Panel &amp;gt; Administrative Tools &amp;gt; Internet Information Services &amp;gt; Expand [Computer Name] &amp;gt; Expand Website &amp;gt; Right Click on Default Website and press Stop button and again start it. But after sometime I found that this is NOT IIS restart. It is just Website restart. For IIS restart run the following command on Dos prompt.&lt;br&gt;&lt;br&gt;&lt;code&gt;iisreset /restart&lt;/code&gt;&lt;br&gt;&lt;br&gt;And boom. I got my php correctly configured and now I can connect to MySQL from PHP code.</description>
			<link>http://blog.vishalon.net/Post/92.aspx</link>
			<dc:creator>Vishal Monpara</dc:creator>
			<pubDate>Fri, 13 Apr 2007 17:21:41 GMT</pubDate>
			<guid>http://blog.vishalon.net/Post/92.aspx</guid>
		</item>
		<item>
			<title>How to Enable Windows XP Language Toolbar?</title>
			<description>&lt;p&gt;I was completely frustrated with Languge toolbar as it was enabled in some computer and not enabled in other computer. I tried many methods and after some trial and error, I found few things which might help you get your Windows Language Toolbar back. This solution is given for Windows XP user.&lt;/p&gt;&lt;br&gt;Method 1:&lt;br&gt;Right click on the Taskbar and go to toolbars. If Language Bar option is there check it by clicking it. and you will get Language Toolbar.&lt;br&gt;&lt;br&gt;Method 2:&lt;br&gt;Go to Start menu &amp;gt; Control Panel &amp;gt; Regional and Language Options &amp;gt; Languages Tab &amp;gt; Text Services and Input Languages Box&amp;gt; Details... &amp;gt; Settings Tab &amp;gt; Preferences Box &amp;gt; Language Bar... &lt;br&gt;Now tick the option "Show Language bar on desktop" and you will get Language bar on your task bar.&lt;br&gt;&lt;br&gt;Make sure that Start menu &amp;gt; Control Panel &amp;gt; Regional and Language Options &amp;gt; Languages Tab &amp;gt; Text Services and Input Languages Box&amp;gt; Details... &amp;gt; Advanced Tab &amp;gt; System Configuration Box &lt;br&gt;Make sure that Turn off advanced text service is unchecked.&lt;br&gt;&lt;br&gt;Method 3:&lt;br&gt;Language bar is a core component in Windows XP. When you are opening any Office XP application, this program starts running. Sometime, this program runs on startup. If you want to check if this program is running or not, to to task manager by clicking ctrl+Shirt + Esc or by right clicking on Taskbar and choosing Task Manager &amp;gt; Processes tab. Check if the process ctfmon.exe is running or not. If it is not running, go to Start &amp;gt; Run... Type ctfmon and press Enter. This will start the process and you will be able to see Language Bar.&lt;br&gt;&lt;br&gt;Method 4:&lt;br&gt;Go to Start &amp;gt; Run... type regedit. This will open up registry. Browse to HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar&lt;br&gt;Here you will see&lt;br&gt;1) ExtraIconsOnMinimized = 1&lt;br&gt;2) Label = 1&lt;br&gt;3) ShowStatus = 4&lt;br&gt;4) Transparency= ff&lt;br&gt;&lt;br&gt;Out of these four options, ShowStatus is very important and it is responsible for actually showing the Language Bar on Taskbar. If you dont have this option set to 4, set it 4, close regedit browser, kill the process ctfmon.exe if it is there and start it by following steps in Method 3.&lt;br&gt;&lt;br&gt;I hope now you would have got your Language Toolbar.&lt;br&gt;&lt;br&gt;Click here for &lt;a href="http://www.vishalon.net/VideoTutorial/EnableLanguageToolbarinWindows/tabid/231/Default.aspx" target="_blank"&gt;Video Tutorial on How to Enable Language Toolbar in Windows&lt;/a&gt;</description>
			<link>http://blog.vishalon.net/Post/91.aspx</link>
			<dc:creator>Vishal Monpara</dc:creator>
			<pubDate>Thu, 12 Apr 2007 18:25:52 GMT</pubDate>
			<guid>http://blog.vishalon.net/Post/91.aspx</guid>
		</item>
		<item>
			<title>WordPress Yearly/Monthly/Weekly Post Repeater Plugin</title>
			<description>Post Repeater plugin is a boon when you need to repeat a single post every year/month/week of the day. You may achieve this functionality by editing timestamp manually, but using this plugin you can automate this task. This plugin is very useful when you are blogging about weekly/monthly/yearly/historical events, famous persons etc. All the posts which needs to be repeated are listed on the top of your blog posts for that day.&lt;br&gt;&lt;br&gt;&lt;div align="center"&gt;&lt;a class="ItemTitle" href="/download/PostRepeater.zip"&gt;Download&amp;nbsp;WordPress Post Repeater Plugin&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;br&gt;&lt;p class="ItemAttribute"&gt;&lt;b&gt;Features&lt;/b&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Uses custom field&lt;/li&gt;&lt;li&gt;No change required in theme&lt;/li&gt;&lt;li&gt;No cron job&lt;/li&gt;&lt;li&gt;No change in original timestamp of post&lt;br&gt;&lt;br&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p class="ItemAttribute"&gt;&lt;b&gt;Version Supported&lt;/b&gt;&lt;/p&gt;WordPress 2.1 and greater&lt;br&gt;WordPress Mu 1.1 and greater&lt;br&gt;&lt;br&gt;&lt;p class="ItemAttribute"&gt;&lt;b&gt;Installtion Procedure:&lt;/b&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Download the plugin and unzip it&lt;/li&gt;&lt;li&gt;Put the PostRepeater.php file into your wp-content/plugins/ directory&lt;/li&gt;&lt;li&gt;Go to the Plugins page in your WordPress Administration area and click "Activate" for Post Repeater Plugin&lt;/li&gt;&lt;/ol&gt;So easy hmmm.......&lt;br&gt;&lt;br&gt;&lt;p class="ItemAttribute"&gt;&lt;b&gt;How to repeat your post?&lt;/b&gt;&lt;/p&gt;It is even simpler than installing your plugin. Choose the post you need to repeat and open it in edit mode. This plugin uses custom field to tag the repeater post.&lt;br&gt;Here is the custom field settings&lt;br&gt;Key = REPEATON, Value = MM/DD for yearly repeat&lt;br&gt;Key = REPEATON, Value = DD for monthly repeat&lt;br&gt;Key = REPEATON, Value = Sun/Mon/Tue/Wed/Thu/Fri/Sat for weekly repeat&lt;br&gt;&lt;br&gt;&lt;p class="ItemAttribute"&gt;&lt;b&gt;Custom Field Settings Example&lt;/b&gt;&lt;/p&gt;Key = REPEATON, Value = 04/24 will repeat the post on 24th April every year.&lt;br&gt;Key = REPEATON, Value = 09 will repeat the post on 9th of every month.&lt;br&gt;Key = REPEATON, Value = Fri will repeat the post on every friday.&lt;br&gt;&lt;br&gt;Dont forget that you must have to put two digits for date and month number.&lt;br&gt;&lt;br&gt;&lt;p class="ItemAttribute"&gt;&lt;b&gt;Known Issue&lt;/b&gt;&lt;/p&gt;If your repeating post is very latest and comes on the front page of your blog, it will be repeated. (This post will be shown as a repeating post and as a regular post)&lt;br&gt;&lt;br&gt;&lt;p class="ItemAttribute"&gt;&lt;b&gt;FAQ's&lt;/b&gt;&lt;/p&gt;1) I activated plugin but cannot see repeating post.&lt;br&gt;Check your wordpress version. It must be WP 2.1 or &amp;gt; or WPMU 1.1 or &amp;gt;. Check the custom field name and make sure that you spelled it correct. Check the custom field value is set to proper format MM/DD (with leading zero)&lt;br&gt;&lt;br&gt;2) I would like to activate Sticky Post Plugin as well&lt;br&gt;Dont do that mistake. It is going to throw mysql error.&lt;br&gt;&lt;br&gt;3) I got wierd mysql error&lt;br&gt;This plugin changes query for showing posts. It is possible that you have another plugin which also modifies the query and hence the resultant query is a junk query which MySQL is not recognizing. so now you have to deactivate any one of the plugin.&lt;br&gt;</description>
			<link>http://blog.vishalon.net/Post/90.aspx</link>
			<dc:creator>Vishal Monpara</dc:creator>
			<pubDate>Sun, 08 Apr 2007 20:11:52 GMT</pubDate>
			<guid>http://blog.vishalon.net/Post/90.aspx</guid>
		</item>
	</channel></rss>