<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://community.psion.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Discussions</title><link>http://community.psion.com/discussions/default.aspx</link><description /><dc:language>en-US</dc:language><generator>6.x Production</generator><item><title>Forum Post: RE: How to open/close SIP , WM6.5</title><link>http://community.psion.com/discussions/f/68/p/11668/45544.aspx#45544</link><pubDate>Fri, 17 May 2013 21:22:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45544</guid><dc:creator>tdtfrancisco</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt; &lt;p&gt;I made the test and it works great, that solve my problem, thanks&lt;/p&gt;</description></item><item><title>Forum Post: RE: Identify type of reboot</title><link>http://community.psion.com/discussions/f/160/p/13356/45543.aspx#45543</link><pubDate>Fri, 17 May 2013 16:15:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45543</guid><dc:creator>Jacques Gourmelen</dc:creator><description>&lt;p&gt;Good morning Advin,&lt;/p&gt; &lt;p&gt;Detecting Boot States on Psion Devices can be done via IOTCL calls:&lt;/p&gt; &lt;p&gt;&lt;span style="color:#008000;font-family:courier new,courier;"&gt;// Determine if the last boot was a coldboot&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#008000;font-family:courier new,courier;"&gt;// in : 0&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#008000;font-family:courier new,courier;"&gt;// out: 1(TRUE) if the last boot was a cold boot, 0(FALSE) if not&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&lt;span style="color:#0000ff;"&gt;#define&lt;/span&gt; IOCTL_PTX_IS_COLDBOOT&amp;nbsp; CTL_CODE(FILE_DEVICE_HAL, \&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0xFFE, METHOD_BUFFERED, FILE_ANY_ACCESS)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#008000;font-family:courier new,courier;"&gt;// Determine if the unit should perform the AutoRestore feature if a &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#008000;font-family:courier new,courier;"&gt;// clone/auto-restore profile is detected.&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#008000;font-family:courier new,courier;"&gt;// in : 0&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#008000;font-family:courier new,courier;"&gt;// out: 1(TRUE) if the unit should perform AutoRestore for Total Recall, &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#008000;font-family:courier new,courier;"&gt;//&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0(FALSE) if not (typically on Hive based systems)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&lt;span style="color:#0000ff;"&gt;#define&lt;/span&gt; IOCTL_PTX_DO_AUTORESTORE&amp;nbsp; CTL_CODE(FILE_DEVICE_HAL, \&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0xFFD, METHOD_BUFFERED, FILE_ANY_ACCESS)&lt;/span&gt;&lt;/p&gt; &lt;p&gt;--&amp;nbsp;&lt;/p&gt; &lt;p&gt;Windows CE 5.0 (Object Store/RAM based operating systems):&lt;/p&gt; &lt;ul&gt; &lt;li&gt;warm boot&amp;nbsp;&lt;span style="font-family:wingdings,zapf dingbats;"&gt;&amp;egrave;&lt;/span&gt; IOCTL_PTX_IS_COLDBOOT = FALSE, IOCTL_PTX_DO_AUTORESTORE = TRUE&lt;/li&gt; &lt;li&gt;cold boot &lt;span style="font-family:wingdings,zapf dingbats;"&gt;&amp;egrave;&lt;/span&gt; IOCTL_PTX_IS_COLDBOOT = TRUE,&amp;nbsp; IOCTL_PTX_DO_AUTORESTORE = TRUE&lt;/li&gt; &lt;li&gt;clean start &lt;span style="font-family:wingdings,zapf dingbats;"&gt;&amp;egrave;&lt;/span&gt; IOCTL_PTX_IS_COLDBOOT = TRUE,&amp;nbsp; IOCTL_PTX_DO_AUTORESTORE = FALSE&lt;/li&gt; &lt;/ul&gt; &lt;p&gt;Windows CE 6.0 (Persistant Storage, with warm/cold boot options)&lt;/p&gt; &lt;ul&gt; &lt;li&gt;warm boot &lt;span style="font-family:wingdings,zapf dingbats;"&gt;&amp;egrave;&lt;/span&gt; IOCTL_PTX_IS_COLDBOOT = FALSE, IOCTL_PTX_DO_AUTORESTORE = FALSE&lt;/li&gt; &lt;li&gt;cold boot &lt;span style="font-family:wingdings,zapf dingbats;"&gt;&amp;egrave;&lt;/span&gt; IOCTL_PTX_IS_COLDBOOT = TRUE,&amp;nbsp; IOCTL_PTX_DO_AUTORESTORE = FALSE&lt;/li&gt; &lt;li&gt;clean start &lt;span style="font-family:wingdings,zapf dingbats;"&gt;&amp;egrave;&lt;/span&gt; IOCTL_PTX_IS_COLDBOOT = TRUE,&amp;nbsp; IOCTL_PTX_DO_AUTORESTORE = TRUE&lt;/li&gt; &lt;/ul&gt; &lt;p&gt;Windows Mobile 6.x (Persistant storage, no notion of warm/cold boot... only reboot)&lt;/p&gt; &lt;ul&gt; &lt;li&gt;warm/cold boot &lt;span style="font-family:wingdings,zapf dingbats;"&gt;&amp;egrave;&lt;/span&gt; IOCTL_PTX_IS_COLDBOOT = TRUE,&amp;nbsp; IOCTL_PTX_DO_AUTORESTORE = FALSE&lt;/li&gt; &lt;li&gt;clean start &lt;span style="font-family:wingdings,zapf dingbats;"&gt;&amp;egrave;&lt;/span&gt; IOCTL_PTX_IS_COLDBOOT = TRUE,&amp;nbsp; IOCTL_PTX_DO_AUTORESTORE = TRUE&lt;/li&gt; &lt;/ul&gt; &lt;p&gt;--&lt;/p&gt; &lt;p&gt;E.g.&lt;/p&gt; &lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;DWORD IsBoostStateSetToCleanStart(BOOL *bBoostStateIsSetToCleanStart)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BOOL bIsColdBoot = FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BOOL bDoAutoRestore = FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DWORD dwRet = ERROR_SUCCESS;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DWORD dwBytesReturned = 0;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&lt;span style="color:#0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if&lt;/span&gt; (!KernelIoControl(IOCTL_PTX_DO_AUTORESTORE, 0, 0, &amp;amp;bDoAutoRestore, &lt;span style="color:#0000ff;"&gt;sizeof&lt;/span&gt;(bDoAutoRestore), &amp;amp;dwBytesReturned))&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dwRet = GetLastError();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dwBytesReturned = 0;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&lt;span style="color:#0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if&lt;/span&gt; (!KernelIoControl(IOCTL_PTX_IS_COLDBOOT, 0, 0, &amp;amp;bIsColdBoot, &lt;span style="color:#0000ff;"&gt;sizeof&lt;/span&gt;(bIsColdBoot), &amp;amp;dwBytesReturned))&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dwRet = GetLastError();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *bBoostStateIsSetToCleanStart = bIsColdBoot &amp;amp; bDoAutoRestore;&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;&lt;span style="color:#0000ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return&lt;/span&gt; dwRet;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new,courier;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I do hope this helps.&lt;br /&gt;Kind regards,&lt;/p&gt; &lt;p&gt;Jacques&lt;/p&gt;</description></item><item><title>Forum Post: RE: MCC lockdown menu</title><link>http://community.psion.com/discussions/f/68/p/13352/45532.aspx#45532</link><pubDate>Thu, 16 May 2013 19:08:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45532</guid><dc:creator>abra</dc:creator><description>&lt;p&gt;Hi John,&lt;/p&gt; &lt;p&gt;The issue is the device is not connected to the wireless cause i need to change the WPA2 wifi username and password, i cannot do it through the MCC console.&lt;/p&gt; &lt;p&gt;it&amp;#39;s not normal that we click on the keyboard button and nothing happen.&lt;/p&gt; &lt;p&gt;It&amp;#39;s a issue of the MCC, i had to download another software in order to resolve this issue&lt;/p&gt; &lt;p&gt;Regards&lt;/p&gt; &lt;p&gt;Adil&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Forum Post: RE: XenApp6 on Omnii XT10</title><link>http://community.psion.com/discussions/f/67/p/13323/45504.aspx#45504</link><pubDate>Wed, 15 May 2013 18:28:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45504</guid><dc:creator>abra</dc:creator><description>&lt;p&gt;Is there any incompatibility between XT10 hardware and XenApp 6 ?&lt;/p&gt;</description></item><item><title>Forum Post: RE: Expansion port 3 omnii xt10</title><link>http://community.psion.com/discussions/f/165/p/12180/45502.aspx#45502</link><pubDate>Wed, 15 May 2013 16:40:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45502</guid><dc:creator>Steven Cox</dc:creator><description>&lt;p&gt;&lt;span style="font-size:medium;"&gt;After review, I don&amp;#39;t believe that you need to use &lt;strong&gt;&lt;em&gt;Hdk7545_SetPower&lt;/em&gt;&lt;/strong&gt; to use the UART off the Expansion port (which expansion port are you using?), but I&amp;#39;m not certain it will work properly unless you use create a peripheral driver, which requires the use of an EEPROM.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Forum Post: RE: Camera trigger on Psio Ep10</title><link>http://community.psion.com/discussions/f/160/p/13334/45492.aspx#45492</link><pubDate>Wed, 15 May 2013 15:09:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45492</guid><dc:creator>Steven Cox</dc:creator><description>&lt;p&gt;[quote user=&amp;quot;robymun&amp;quot;]&lt;/p&gt; &lt;p&gt;&lt;span lang="en"&gt;&lt;span class="hps"&gt;with this control is a good idea to upgrade &lt;span style="font-family:arial,helvetica,sans-serif;font-size:medium;"&gt;&lt;strong&gt;&lt;em&gt;Imager_Installer&amp;nbsp;&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt; to solve this problem ?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;[/quote]&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:medium;"&gt;No, not necessarily.&amp;nbsp; That control uses &lt;strong&gt;&lt;em&gt;DirectShow&lt;/em&gt;&lt;/strong&gt; to manipulate the camera.&amp;nbsp; The Imager_Installer 16.0 refers to using &lt;strong&gt;&lt;em&gt;ICS&lt;/em&gt;&lt;/strong&gt; for camera control, which is completly different.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:medium;"&gt;As mentioned above, I would recommend starting a trouble ticket with Help Desk.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:medium;"&gt;You may also want to try taking pictures with the &amp;#39;Pictures and Videos&amp;#39; and see if that works.&amp;nbsp; Try it the same amount of times you used CameraCtrlPtx, and see if you can generate the error.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Forum Post: WAP G2 and G3 UL Certification</title><link>http://community.psion.com/discussions/f/67/t/13337.aspx</link><pubDate>Tue, 14 May 2013 18:07:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:13337</guid><dc:creator>msippel</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt; &lt;p&gt;We have been asked by Chrysler to provide UL approval file numbers for the WAP handhelds. Does PSION have&amp;nbsp;UL approval and can you provide the UL file number if you do?&lt;/p&gt; &lt;p&gt;Thank you,&lt;/p&gt; &lt;p&gt;Mark&lt;/p&gt;</description></item><item><title>Forum Post: RE: Dr. Debug</title><link>http://community.psion.com/discussions/f/68/p/13248/45470.aspx#45470</link><pubDate>Tue, 14 May 2013 17:05:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45470</guid><dc:creator>Paul Hedley</dc:creator><description>&lt;p&gt;Hi Ew,&lt;/p&gt; &lt;p&gt;I can not see information in the netlog files that help me identify what the problem is.&amp;nbsp; You could try installing the most recent software, but it is hard to say if it will fix the problem.&lt;/p&gt; &lt;ul&gt; &lt;li&gt;Do you use the XT15s with desktop docks or with quad docks?&lt;/li&gt; &lt;li&gt;Have you tried changing the IE configuration for Tools &amp;gt;&amp;gt; Options &amp;gt;&amp;gt; Other &amp;gt;&amp;gt; Browse webistes as &amp;#39;Mobile Device&amp;#39;?&lt;/li&gt; &lt;li&gt;Have you tried changing the IE configuration for Tools &amp;gt;&amp;gt; Options &amp;gt;&amp;gt; Privacey and Security &amp;gt;&amp;gt; &amp;#39;Enable scripts&amp;#39; to disable?&lt;/li&gt; &lt;/ul&gt; &lt;p&gt;It would also be helpful if you could&amp;nbsp;run a&amp;nbsp;netlog debug and capture the problem happening.&amp;nbsp; Make sure you stop the netlog before you copy the log file from the XT15.&lt;/p&gt; &lt;p&gt;PAul&amp;nbsp;&lt;/p&gt;</description></item><item><title>Forum Post: EP10 In Vehicle Charging - Powered Vehicle Dock</title><link>http://community.psion.com/discussions/f/67/t/13332.aspx</link><pubDate>Tue, 14 May 2013 08:32:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:13332</guid><dc:creator>james.comley@heaveyrf.com</dc:creator><description>&lt;p&gt;Is there a solution to hard wire the EP10 powered vehicle cradle to the mains supply on a customer vehicle?&lt;/p&gt; &lt;p&gt;Currently the only solution i can see on the Psion price list is with &amp;quot;Cable Vehicle Cradle Vehicle Power Adapter (CLA for cradle) - RV3050&amp;quot; and a cigerette extension cable RV1205.&lt;/p&gt; &lt;p&gt;if you could provide an alternative solution including part numbers it would be appreciated.&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt; &lt;p&gt;kinid regards James&lt;/p&gt;</description></item><item><title>Forum Post: RE: WAP2 vehicle cradle and serial connection to barcode scanner</title><link>http://community.psion.com/discussions/f/151/p/13329/45448.aspx#45448</link><pubDate>Mon, 13 May 2013 12:53:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45448</guid><dc:creator>Mazhar Iqbal</dc:creator><description>&lt;p&gt;I am not aware of any working solution in UK? 7535G2 and OmniXT15 are the recommended products for the fork lift/warehousing applications. Also 7535G2 and Omni port ruplicators does support the external scanner.&lt;/p&gt;</description></item><item><title>Forum Post: RE: Psion Workabout Pro 3 CE5.0 is working very slow and showing scanner is getting updated...</title><link>http://community.psion.com/discussions/f/38/p/13325/45445.aspx#45445</link><pubDate>Mon, 13 May 2013 12:24:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45445</guid><dc:creator>Jacques Gourmelen</dc:creator><description>&lt;p&gt;As stated earlier, please provide us your device system properties.&lt;br /&gt;To do so, please follow the instructions provided in the &amp;laquo; &lt;a title="Creating a System Properties file" href="http://community.psion.com/knowledge/w/knowledgebase/1117.creating-a-system-properties-file-en.aspx" target="_blank"&gt;Creating a System Properties file&lt;/a&gt; &amp;raquo; article.&lt;/p&gt;</description></item><item><title>Forum Post: RE: Keypress order to enable cable link mode on 3mx</title><link>http://community.psion.com/discussions/f/151/p/13322/45428.aspx#45428</link><pubDate>Fri, 10 May 2013 14:01:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45428</guid><dc:creator>Dodge</dc:creator><description>&lt;p&gt;You LEGEND!&amp;nbsp; Thank you SO much.&lt;/p&gt;</description></item><item><title>Forum Post: RE: No icon on my shortcut</title><link>http://community.psion.com/discussions/f/160/p/13319/45421.aspx#45421</link><pubDate>Fri, 10 May 2013 06:59:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45421</guid><dc:creator>themonz31</dc:creator><description>&lt;p&gt;I am an as.hole :)&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;I&amp;#39;ve only have to change the icon to &amp;quot;embedded resource&amp;quot; to make it worked !!!&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;Dummy is my nickname !!!&lt;/p&gt; &lt;p&gt;&lt;/p&gt; &lt;p&gt;sorry folks&lt;/p&gt;</description></item><item><title>Forum Post: RE: Application is killed on onTriggerEvent(TriggerEvent te)</title><link>http://community.psion.com/discussions/f/160/p/13295/45419.aspx#45419</link><pubDate>Thu, 09 May 2013 20:17:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45419</guid><dc:creator>Jacques Gourmelen</dc:creator><description>&lt;p&gt;Anton,&lt;/p&gt; &lt;p&gt;The difficulty you ran into, which, by the way, I also observed while using CrEme 4.12, seems to be JVM related.&lt;/p&gt; &lt;p&gt;Indeed, as depicted below, the [discontinued] Jeode JVM and IBM J9 JVM did not exhibit such problem&lt;/p&gt; &lt;p&gt;&lt;a href="http://community.psion.com/cfs-file.ashx/__key/communityserver-discussions-components-files/160/8726.MDSDK-v5.3-_2D00_-Java-Trigger-DemoJava-Trigger-Demo-VS-Jeode-JVM-and-IBM-J9.jpg"&gt;&lt;img border="0" alt=" " src="http://community.psion.com/resized-image.ashx/__size/550x0/__key/communityserver-discussions-components-files/160/8726.MDSDK-v5.3-_2D00_-Java-Trigger-DemoJava-Trigger-Demo-VS-Jeode-JVM-and-IBM-J9.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="color:#808080;"&gt;Jeode JVM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IBM J9&lt;/span&gt;&lt;/p&gt; &lt;p&gt;Let me further discuss this matter internally and let you know what could be done from our end (if anything).&lt;/p&gt; &lt;p&gt;Kind regards,&lt;br /&gt;Jacques&lt;/p&gt;</description></item><item><title>Forum Post: RE: MDSDK 6.0 CreateFile(SCS0:) exception when constructing ScannerServicesDriver</title><link>http://community.psion.com/discussions/f/160/p/13314/45418.aspx#45418</link><pubDate>Thu, 09 May 2013 20:04:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45418</guid><dc:creator>Jacques Gourmelen</dc:creator><description>&lt;p&gt;&lt;span style="color:black;font-family:arial,helvetica,sans-serif;"&gt;[quote user=&amp;quot;coffeenkfc&amp;quot;]What kind of goodness is in the add on CAB?[/quote]&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="color:black;font-family:arial,helvetica,sans-serif;"&gt;The Add-On CAB adds numerous [Psion proprietary] extras, which do not / cannot de-facto come with the Windows Mobile 6.x core OS, such as specific control panels, the Scanner Control Services (the one that caused you grief), etc. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="color:black;font-family:arial,helvetica,sans-serif;"&gt;This Add-On CAB comes pre-installed when units leave our manufacturing plants&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="color:black;font-family:arial,helvetica,sans-serif;"&gt;This said, please bear in mind that an Add-On CAB file needs to be (re-)installed every time the Windows Mobile 6.x &lt;/span&gt;&lt;/p&gt; &lt;ul&gt; &lt;li&gt;&lt;span style="color:black;font-family:arial,helvetica,sans-serif;"&gt;OS is upgraded&lt;/span&gt;&lt;/li&gt; &lt;li&gt;&lt;span style="color:black;font-family:arial,helvetica,sans-serif;"&gt;device is clean started (reset to factory default)&lt;br /&gt;&lt;/span&gt;&lt;span style="color:black;font-family:arial,helvetica,sans-serif;"&gt;Feel free to take a peek at the &amp;laquo; &lt;a title="Reset (KB)" href="http://community.psion.com/knowledge/w/knowledgebase/1297.reset-8000271.aspx" target="_blank"&gt;Reset&lt;/a&gt; &amp;raquo; knowledge base article for further info about performing a clean start and its &lt;em&gt;effects&lt;/em&gt;.&lt;/span&gt;&lt;/li&gt; &lt;/ul&gt; &lt;p&gt;&lt;span style="color:black;font-family:arial,helvetica,sans-serif;"&gt;Kind regards,&lt;br /&gt;Jacques&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Forum Post: RE: Code Sample for PtxRemoteSock.dll on NB Terminal</title><link>http://community.psion.com/discussions/f/160/p/13311/45401.aspx#45401</link><pubDate>Thu, 09 May 2013 03:27:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45401</guid><dc:creator>mjbrandys</dc:creator><description>&lt;p&gt;thanks Steven&lt;/p&gt; &lt;p&gt;I have looked at this post and another that give some hints on how this is done. (as below)&lt;/p&gt; &lt;p&gt;&lt;span style="font-family:Calibri;font-size:x-small;"&gt;&lt;a title="blocked::http://community.psion.com/discussions/f/160/p/12793/43517.aspx#43517" href="http://community.psion.com/discussions/f/160/p/12793/43517.aspx#43517"&gt;http://community.psion.com/discussions/f/160/p/12793/43517.aspx#43517&lt;/a&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-family:Calibri;font-size:x-small;"&gt;&lt;a title="blocked::http://community.psion.com/discussions/f/160/t/12915.aspx" href="http://community.psion.com/discussions/f/160/t/12915.aspx"&gt;http://community.psion.com/discussions/f/160/t/12915.aspx&lt;/a&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;I have &amp;nbsp;a lot of code that uses .NET that calls webservices on various terminals, I have never attempted to use the Remote Socket API.&lt;/p&gt; &lt;p&gt;If there is is some real working code that I can borrow, then this will improve my chances of getting this working.&lt;/p&gt; &lt;p&gt;My task is further complicated by not currently having a narrow band terminal, (my customer is in Europe). So I am not able to simulate the remote socket call. (Not sure if this can be simulated, where I could call the proxy running on the 9510 software). I am attempting to cobble together a NB test environment.&amp;nbsp;&lt;/p&gt;</description></item><item><title>Forum Post: RE: Use PCB from RS232 Snap On to connect through USB</title><link>http://community.psion.com/discussions/f/165/p/13304/45400.aspx#45400</link><pubDate>Thu, 09 May 2013 03:09:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45400</guid><dc:creator>Steven Cox</dc:creator><description>&lt;p&gt;&lt;span style="font-size:medium;"&gt;I guess it would be possible.&amp;nbsp; You would just follow the schematic of the USB SnapOn when designing around the current RS232 components.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:medium;"&gt;It would seem easier, from my point of view, to use the Development Board discussed in our other thread and start fresh, using the USB SnapOn as a template.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Forum Post: RE: GPRS o Virtual WWAN port for WA 7527</title><link>http://community.psion.com/discussions/f/151/p/13256/45390.aspx#45390</link><pubDate>Tue, 07 May 2013 21:02:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45390</guid><dc:creator>Jacques Gourmelen</dc:creator><description>&lt;p&gt;You are welcome !&lt;/p&gt; &lt;p&gt;I am pleased to read that everything is now back to &lt;em&gt;normal&lt;/em&gt; &lt;img src="http://community.psion.com/emoticons/emotion-1.gif" alt="Smile" /&gt;&lt;/p&gt;</description></item><item><title>Forum Post: RE: Disable screen rotation in code on EP10</title><link>http://community.psion.com/discussions/f/160/p/13302/45368.aspx#45368</link><pubDate>Tue, 07 May 2013 08:12:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45368</guid><dc:creator>neno</dc:creator><description>&lt;p&gt;Hi Jacques,&lt;/p&gt; &lt;p&gt;many thanks for this.&lt;/p&gt; &lt;p&gt;Here is my code:&lt;/p&gt; &lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public void DisableScreenRotate()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PsionTeklogix.Display.Orientation o = new PsionTeklogix.Display.Orientation();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; o.CurrentAutoRotateBehavior = PsionTeklogix.Display.Orientation.AutoRotateBehavior.Off;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; o.CurrentOrientation = PsionTeklogix.Display.Orientation.Orientations.Orient0Degrees;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public void EnableScreenRotate()&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PsionTeklogix.Display.Orientation o = new PsionTeklogix.Display.Orientation();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; o.CurrentAutoRotateBehavior = PsionTeklogix.Display.Orientation.AutoRotateBehavior.All;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt; &lt;p&gt;Also calling the .cpl file is great idea :)&lt;/p&gt; &lt;p&gt;&lt;br /&gt;br,&lt;/p&gt; &lt;p&gt;neno&lt;/p&gt;</description></item><item><title>Forum Post: RE: High Quality Images</title><link>http://community.psion.com/discussions/f/160/p/5635/45357.aspx#45357</link><pubDate>Mon, 06 May 2013 08:12:00 GMT</pubDate><guid isPermaLink="false">54009f3a-31b6-4c23-96d3-4890e86d45f2:45357</guid><dc:creator>cryimage</dc:creator><description>&lt;p&gt;i donnot know others, but you can definitely use this i&lt;a href="http://www.rasteredge.com/how-to/csharp-imaging/load-from-file/"&gt;mage sdk&lt;/a&gt;&amp;nbsp; to get a high quality image . give it a try.&lt;/p&gt;</description></item></channel></rss>