<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>PerfectForms Forums: Forum: Objects Reference - Recent Topics</title>
<link>http://www.perfectforms.com/forums/</link>
<description>Forums for the PerfectForms.com Application</description>
<language>en</language>
<pubDate>Wed, 08 Feb 2012 04:47:46 +0000</pubDate>

<item>
<title>mfeeney on "Set Read-Only State on Page Objects"</title>
<link>http://www.perfectforms.com/forums/topic/set-read-only-state-on-page-objects#post-2318</link>
<pubDate>Tue, 30 Aug 2011 14:05:31 +0000</pubDate>
<dc:creator>mfeeney</dc:creator>
<guid isPermaLink="false">2318@http://www.perfectforms.com/forums/</guid>
<description>&#60;p&#62;I am trying to set a multi-page form to Read Only if it is not accessed through the login page.&#60;/p&#62;
&#60;p&#62;I used the Set State command, and then select the six pages and set them to Read-Only.&#60;br /&#62;
I have a message field on the same path and that is working so I am sure it is getting to the Set State command.&#60;/p&#62;
&#60;p&#62;However, the fields in the pages are still editable.
&#60;/p&#62;</description>
</item>
<item>
<title>ptyrrell on "Image Import Error"</title>
<link>http://www.perfectforms.com/forums/topic/image-import-error#post-2100</link>
<pubDate>Thu, 14 Apr 2011 12:41:48 +0000</pubDate>
<dc:creator>ptyrrell</dc:creator>
<guid isPermaLink="false">2100@http://www.perfectforms.com/forums/</guid>
<description>&#60;p&#62;I'm running Ubuntu 10.10 on my laptop.  I'm using Google Chrome as my browser.&#60;/p&#62;
&#60;p&#62;I have created a new form with a few heading fields, then added 1 Image Import object; saved the form; published the form; then created a new instance.  Firstly, the &#34;Acquire&#34; button doesn't show, I have to click on the down arrow under the left-hand bottom corner of the Image box to get the button to show.&#60;/p&#62;
&#60;p&#62;The file selection dialog box pops and I select an image file.  The file dialog closes and I get a small pop-up dialog with a heading of &#34;The page at app.perf&#34; then in the dialog box body there is the triangle with an exclamation mark in it with the text next to it reading &#34;Error:undefined&#34;.  There is an OK button to click on to close the pop-up.&#60;/p&#62;
&#60;p&#62;I have a screenshot if you want me to send it to you.
&#60;/p&#62;</description>
</item>
<item>
<title>Laura Debello on "Syntax for Progress Bar Label Show"</title>
<link>http://www.perfectforms.com/forums/topic/syntax-for-progress-bar-label-show#post-2084</link>
<pubDate>Tue, 12 Apr 2011 07:00:39 +0000</pubDate>
<dc:creator>Laura Debello</dc:creator>
<guid isPermaLink="false">2084@http://www.perfectforms.com/forums/</guid>
<description>&#60;p&#62;In the object Progress Bar you have the ability to show a label under the bar. By default the value of %1% is supplied.&#60;/p&#62;
&#60;p&#62;Can you please tell me if there are other syntax or values that I can place as the progress bar label? For example, is it possible to work out what the Page x of y would be?
&#60;/p&#62;</description>
</item>
<item>
<title>MABrown on "Refresh Captcha Image"</title>
<link>http://www.perfectforms.com/forums/topic/refresh-captcha-image#post-1627</link>
<pubDate>Wed, 11 Aug 2010 23:28:52 +0000</pubDate>
<dc:creator>MABrown</dc:creator>
<guid isPermaLink="false">1627@http://www.perfectforms.com/forums/</guid>
<description>&#60;p&#62;Is there a way to allow the user to refresh the generated Captcha image?
&#60;/p&#62;</description>
</item>
<item>
<title>nevrene on "script call from code behind"</title>
<link>http://www.perfectforms.com/forums/topic/script-call-from-code-behind#post-713</link>
<pubDate>Mon, 31 Aug 2009 09:52:00 +0000</pubDate>
<dc:creator>nevrene</dc:creator>
<guid isPermaLink="false">713@http://www.perfectforms.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I tried to embed the forms to my .net site.&#60;/p&#62;
&#60;p&#62;Basically I want the form script to depend on the button click.&#60;/p&#62;
&#60;p&#62;I registered your utils.js on top of the aspx page.&#60;br /&#62;
Then on my aspx page, I added:&#60;br /&#62;
&#38;lt;asp:updatepanel runat=&#34;server&#34; id=&#34;updatepanel&#34; &#38;gt;&#60;br /&#62;
    &#38;lt;contenttemplate&#38;gt;&#60;br /&#62;
        &#38;lt;asp:button runat=&#34;server&#34; id=&#34;button&#34;&#38;gt;&#38;lt;/asp:button&#38;gt;&#60;br /&#62;
        &#38;lt;asp:literal runat=&#34;server&#34; id=&#34;formliteral&#34;&#38;gt;&#38;lt;/asp:literal&#38;gt;&#60;br /&#62;
    &#38;lt;/contenttemplate&#38;gt;&#60;br /&#62;
&#38;lt;/asp:updatepanel&#38;gt;&#60;/p&#62;
&#60;p&#62;code-behind:&#60;/p&#62;
&#60;p&#62;Public Sub button_click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles button.click&#60;br /&#62;
    Dim script As String = &#34; &#38;lt;script type=&#34;&#34;text/javascript&#34;&#34;&#38;gt;pf_embed(&#34;&#34;http://app.perfectforms.com/player.aspx&#34;&#34;, &#34;&#34;flexApplicationLTIxNDc0NjYwNjc=&#34;&#34;, &#34;&#34;f=tFRgAgWE&#34;&#34;, &#34;&#34;654&#34;&#34;, &#34;&#34;470&#34;&#34;, &#34;&#34;window&#34;&#34;); &#38;lt;/script&#38;gt;&#34;&#60;/p&#62;
&#60;p&#62;    ScriptManager.RegisterClientScriptBlock(formliteral, formliteral.GetType(), script,False)&#60;br /&#62;
    formliteral.text= script&#60;/p&#62;
&#60;p&#62;End Sub&#60;/p&#62;
&#60;p&#62;The form doesn't show up when the button is clicked - although no JS error shown. Do you know how to fix this?&#60;/p&#62;
&#60;p&#62;The idea is that I want to replace the button with dropdownlist, and show the correct form when a form is selected.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Andreas
&#60;/p&#62;</description>
</item>
<item>
<title>dalecan on "Title of message box when Check Obligatory check fails"</title>
<link>http://www.perfectforms.com/forums/topic/title-of-message-box-when-check-obligatory-check-fails#post-492</link>
<pubDate>Wed, 10 Jun 2009 16:50:52 +0000</pubDate>
<dc:creator>dalecan</dc:creator>
<guid isPermaLink="false">492@http://www.perfectforms.com/forums/</guid>
<description>&#60;p&#62;Is there a way to change the title of the message box displayed when the Check Obligatory command check fails?  By default the title displayed is the name of the form.  I would like to display my own title.
&#60;/p&#62;</description>
</item>

</channel>
</rss>

