<?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">
    <channel>
        <title>Recent Discussions — SRP Forum</title>
        <link>https://forum.srpcs.com/</link>
        <pubDate>Tue, 09 Jun 2026 20:31:20 +0000</pubDate>
        <language>en</language>
            <description>Recent Discussions — SRP Forum</description>
    <atom:link href="https://forum.srpcs.com/discussions/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>$DEBUG</title>
        <link>https://forum.srpcs.com/discussion/1646/debug</link>
        <pubDate>Fri, 29 May 2026 19:44:03 +0000</pubDate>
        <category>SRP Editor</category>
        <dc:creator>BarryStevens</dc:creator>
        <guid isPermaLink="false">1646@/discussions</guid>
        <description><![CDATA[Can the new OI10 <b>$DEBUG</b> be highlighted in red for the OI10 version of the editor]]>
        </description>
    </item>
    <item>
        <title>How to use 'Options' to validate passed-in service parameters</title>
        <link>https://forum.srpcs.com/discussion/1647/how-to-use-options-to-validate-passed-in-service-parameters</link>
        <pubDate>Tue, 02 Jun 2026 13:48:15 +0000</pubDate>
        <category>SRP Utilities</category>
        <dc:creator>angelo_melo</dc:creator>
        <guid isPermaLink="false">1647@/discussions</guid>
        <description><![CDATA[<h3>Code example </h3>

<pre>
Options DoSomething.thing.options = 'thing 1', 'thing 2', 'thing 3', 'thing 4'
Service DoSomething(thing=DoSomething.thing.options)
    
    // Validate param
    * How to make sure `thing` is one of `DoSomething.thing.options`
    
    Response = 'Did ' : thing
    
end service
</pre>

<h3>Question</h3>

Is it possible to access the values defined by an "Options" statement at runtime so they can be used to validate a service argument?

In other words, can I validate that thing is one of the values from "DoSomething.thing.options", without manually duplicating the same list of values inside the service?]]>
        </description>
    </item>
    <item>
        <title>Attach_Table</title>
        <link>https://forum.srpcs.com/discussion/1645/attach-table</link>
        <pubDate>Thu, 21 May 2026 00:34:22 +0000</pubDate>
        <category>OpenInsight</category>
        <dc:creator>jimvaughan</dc:creator>
        <guid isPermaLink="false">1645@/discussions</guid>
        <description><![CDATA[Code looks something like this, with Table_Names set to an @FM delimited list of tables. And the directory contains a bunch of rev files. Files where originally attached in a different location and copied to this buffer directory where they are then re-attached. 

Dir_Name = "C:\Users\jimva\AppData\Local\Temp\TACTIC_BUFFER\5\"
Call Attach_Table(Dir_Name, Table_Names, "", "")

Tables are not attached Status() returns zero. This code works fine in OI 9.4 is something different in OI10?

]]>
        </description>
    </item>
    <item>
        <title>Returning a record to a calling pgm using post_event</title>
        <link>https://forum.srpcs.com/discussion/1644/returning-a-record-to-a-calling-pgm-using-post-event</link>
        <pubDate>Wed, 20 May 2026 18:04:13 +0000</pubDate>
        <category>OpenInsight</category>
        <dc:creator>JGlover</dc:creator>
        <guid isPermaLink="false">1644@/discussions</guid>
        <description><![CDATA[I have reason to change a use of end_dialog to post_event.  According to documentation, up to 20 params can be passed. I'm passing a single @fm-delimited record:

"post_event(winid,'CLOSE',pseudo)", getting the error:

"ENG0711: PS_EXEC_METHOD, line 1.  Too many parameters passed to procedure RUN_EVENT."
]]>
        </description>
    </item>
    <item>
        <title>SRP Editor Suggestion Box</title>
        <link>https://forum.srpcs.com/discussion/1051/srp-editor-suggestion-box</link>
        <pubDate>Fri, 11 Sep 2020 04:22:12 +0000</pubDate>
        <category>SRP Editor</category>
        <dc:creator>Opto_Will</dc:creator>
        <guid isPermaLink="false">1051@/discussions</guid>
        <description><![CDATA[Has SRP ever thought of grouping favorites via tabs at the top of the Favorites Bar or (preferably due to witdh considerations) collapsible header entries in the list that Procedures (etc.) can be attached to?

I am working on five projects at once at the moment and the list of files I attack frequently is getting quite long (requiring a decent scroll)!!]]>
        </description>
    </item>
    <item>
        <title>SRP_Regex crash with invalid pattern</title>
        <link>https://forum.srpcs.com/discussion/1643/srp-regex-crash-with-invalid-pattern</link>
        <pubDate>Fri, 01 May 2026 14:05:53 +0000</pubDate>
        <category>SRP Utilities</category>
        <dc:creator>angelo_melo</dc:creator>
        <guid isPermaLink="false">1643@/discussions</guid>
        <description><![CDATA[
<p>Hi,</p>
<br />
<p>I noticed an issue with  <b>SRP_Regex</b>, where if an invalid pattern is passed in, OI crashes.</p>
<p>Our <b>SRPUtilites</b> DLL version is 2.2.15.3 </p>
<h4>Examples</h4>

<p>✅ This works</p>
<pre>
goodEmailPattern = '.*@mydomain\.com$' 
isOurEmail       = SRP_Regex('Match', 'angelo.melo@mydomain.com', emailPattern)
</pre>

<p> 😢 This kills OI</p>
<pre>
badEmailPattern  = '*@mydomain\.com$' 
isOurEmail       = SRP_Regex('Match', 'angelo.melo@mydomain.com', emailPattern)
</pre>

The difference is the missing “.” (period) before the “@” sign, which makes the pattern invalid. 
In regex101.com that pattern raises the error 
<pre>
<b>* The preceding token is not quantifiable</b>
</pre>

It would be helpful if <b>SRP_Regex</b> returned a similar error message instead of crashing the runtime.

Thank you
]]>
        </description>
    </item>
    <item>
        <title>How to escape periods in Super Strings</title>
        <link>https://forum.srpcs.com/discussion/1642/how-to-escape-periods-in-super-strings</link>
        <pubDate>Tue, 28 Apr 2026 22:12:03 +0000</pubDate>
        <category>SRP Utilities</category>
        <dc:creator>angelo_melo</dc:creator>
        <guid isPermaLink="false">1642@/discussions</guid>
        <description><![CDATA[<p>Hi, I am trying to figure out how to properly escape periods (.) in Super Strings.</p>

<h4>Example 1</h4>

<p>This works as expected:</p>

<pre>
name      = "Angelo"
greeting  = "Hello, $name."
</pre>

<p>But this does not work:</p>

<pre>
networkID = "199.188.1"
hostID    = "22"
myIP      = `$networkID.$hostID`
</pre>

<h4>Example 2</h4>

<pre>
jsonProperty = 'people_array'
itemIndex    = 4
nameProperty = 'name_full_with_middle_init'
</pre>

<p>This works:</p>

<pre>
jsonPath_noSuperStr = jsonProperty : '.' : itemIndex : '.' : nameProperty
</pre>

<p>But this does not:</p>

<pre>
jsonPath_yesSuperStr = `$jsonProperty.$itemIndex.$nameProperty`
</pre>

<p><b>Note:</b> When I say "does not work," I mean it throws a "Variable not assigned to a value" runtime error.</p>

<p>Is there a proper way to escape or handle periods inside Super Strings?</p>

<p>Thanks you!</p>]]>
        </description>
    </item>
    <item>
        <title>SRP Editor version and SRPEditor.ocx versions are out of sync</title>
        <link>https://forum.srpcs.com/discussion/1641/srp-editor-version-and-srpeditor-ocx-versions-are-out-of-sync</link>
        <pubDate>Fri, 24 Apr 2026 19:47:33 +0000</pubDate>
        <category>SRP Editor</category>
        <dc:creator>Sandra</dc:creator>
        <guid isPermaLink="false">1641@/discussions</guid>
        <description><![CDATA[I just installed the latest version of SRP Editor (3.4.11.0) and when I look at the version number it shows the old version number for the Editor Version and the new version number for the SRPEditor.ocx. I've tried re-registering the .ocx file but that has not resolved the issue. Am I missing something?]]>
        </description>
    </item>
    <item>
        <title>DLL Prototype</title>
        <link>https://forum.srpcs.com/discussion/1640/dll-prototype</link>
        <pubDate>Wed, 22 Apr 2026 21:40:59 +0000</pubDate>
        <category>OpenInsight</category>
        <dc:creator>jimvaughan</dc:creator>
        <guid isPermaLink="false">1640@/discussions</guid>
        <description><![CDATA[After migration I see this in the logfile. 
Imported "DLL_GDI32_MIGRATED" DLL Prototype record OK
However, when my code calls a function like CreateCopatibleBitmap, OI says the code could not be found (or words to that effect). 
Do I need to do some additional steps after migrating the DLL prototype records?

]]>
        </description>
    </item>
    <item>
        <title>Struct</title>
        <link>https://forum.srpcs.com/discussion/1639/struct</link>
        <pubDate>Wed, 22 Apr 2026 19:38:27 +0000</pubDate>
        <category>OpenInsight</category>
        <dc:creator>jimvaughan</dc:creator>
        <guid isPermaLink="false">1639@/discussions</guid>
        <description><![CDATA[Does any tool exist to copy structures from OI 9.4 to OI 10?]]>
        </description>
    </item>
    <item>
        <title>OI 10 Migrate</title>
        <link>https://forum.srpcs.com/discussion/1638/oi-10-migrate</link>
        <pubDate>Tue, 21 Apr 2026 20:05:53 +0000</pubDate>
        <category>OpenInsight</category>
        <dc:creator>jimvaughan</dc:creator>
        <guid isPermaLink="false">1638@/discussions</guid>
        <description><![CDATA[Trying to migrate from OI9 to OI10.

Wanted to start from scratch, so I deleted app in OI10. When I know try to transfer the app again, a bunch of options are not available, see screenshot. I tried un-installing OI10 and re-installing. These options were available when I first did the transfer. 

What am I doing wrong?

<img src="https://forum.srpcs.com/uploads/editor/au/y30bsdiofegc.png" alt="" />

Nevermind I figured it out. You need to do it from the new app. 

]]>
        </description>
    </item>
    <item>
        <title>NSIS SRPUtil</title>
        <link>https://forum.srpcs.com/discussion/1598/nsis-srputil</link>
        <pubDate>Wed, 26 Mar 2025 22:26:47 +0000</pubDate>
        <category>SRP Utilities</category>
        <dc:creator>BarryStevens</dc:creator>
        <guid isPermaLink="false">1598@/discussions</guid>
        <description><![CDATA[My nsis rdk create cant find SRPUtil , where can I download this from. It seems to be missing from the 'SRP NSIS Utilities' download (unless it is being blocked, should it be getting installed)]]>
        </description>
    </item>
    <item>
        <title>How to uniquely identify worker/engine instances?</title>
        <link>https://forum.srpcs.com/discussion/1637/how-to-uniquely-identify-worker-engine-instances</link>
        <pubDate>Mon, 30 Mar 2026 17:25:55 +0000</pubDate>
        <category>SRP HTTP Framework</category>
        <dc:creator>angelo_melo</dc:creator>
        <guid isPermaLink="false">1637@/discussions</guid>
        <description><![CDATA[I’m experimenting with a custom logger for our OI HTTP server and want each engine to append its log entries to its own file.

I’m struggling to find a reliable way to identify the current engine so I can name the log files accordingly.

I initially tried using the engine’s PID, but since engines are despawned and respawned depending on traffic, the PID isn’t stable and ends up referring to different processes over time.

Would it be possible to use the port number of the engine handling a given HTTP request as an identifier? Or is there a better approach for uniquely identifying each engine instance?]]>
        </description>
    </item>
    <item>
        <title>Editor looping resize</title>
        <link>https://forum.srpcs.com/discussion/1636/editor-looping-resize</link>
        <pubDate>Fri, 27 Mar 2026 02:25:14 +0000</pubDate>
        <category>SRP Editor</category>
        <dc:creator>AusMarkB</dc:creator>
        <guid isPermaLink="false">1636@/discussions</guid>
        <description><![CDATA[Often when my machine wakes from its sleep, if I have a copy of the editor open, and I usually do, it seems to get stuck in a loop doing something. It makes it difficult to do anything else because it is constantly changing app focus. I accept that the source of the issue may not be the editor, but it is what is displaying the symptom. Usually, I have to end the OI task via task manager to get it to stop though I noticed this morning that it stopped on its own after about ten minutes. 
The editor is constantly alternating between maximised and not.
see videos.
https://www.dropbox.com/scl/fi/2ta2k8oamamqp0gyp643f/flashingeditor.mp4?rlkey=z3qkgjojqvdwstrtk7dsnsdjb&amp;dl=0
https://www.dropbox.com/scl/fi/dlj7scm2m4t05cpifznpr/flashingeditor2.mp4?rlkey=7x76qgj4amxy9570q1gx3qtck&amp;dl=0
Just wondering if anyone else has experienced this.]]>
        </description>
    </item>
    <item>
        <title>SRP_ActiveX_Info.exe - No expiry date shown</title>
        <link>https://forum.srpcs.com/discussion/1635/srp-activex-info-exe-no-expiry-date-shown</link>
        <pubDate>Wed, 18 Feb 2026 16:42:38 +0000</pubDate>
        <category>General</category>
        <dc:creator>Hank</dc:creator>
        <guid isPermaLink="false">1635@/discussions</guid>
        <description><![CDATA[Trying to verify the license date for my SRPCS controls.
Running SRP_ActiveX_Info, It shows everything as being Licensed, but does not show a license expiry date.

Should it?  If not, how can I see the license expiry date.

Note: the SRP_ActiveX_Info.exe has version 2.0.1.0,  64bit version of controls.





]]>
        </description>
    </item>
    <item>
        <title>Sending Email with attachment returns &quot;The specified protocol is unknown&quot;</title>
        <link>https://forum.srpcs.com/discussion/1633/sending-email-with-attachment-returns-the-specified-protocol-is-unknown</link>
        <pubDate>Tue, 17 Feb 2026 22:49:49 +0000</pubDate>
        <category>SRP Mail Utility</category>
        <dc:creator>sbotes</dc:creator>
        <guid isPermaLink="false">1633@/discussions</guid>
        <description><![CDATA[Hi Kevin,

I have a customer for whom we can send mail just fine, except with an attachment. When we send with an attachment, the error in the title is returned.  The same code works on other computers just fine. This one is Windows 10 PRO. 
Here is the configuration file I send to SRP_SEND_MAIL

		ConfigFile    = ""
		ConfigFile&lt;1&gt; = 2													; * Send Using Port (Email server not on local machine)
		//ConfigFile&lt;1&gt; = ""													; * Send Using Port (Email server not on local machine)
		ConfigFile&lt;2&gt; = ""
		ConfigFile&lt;3&gt; = 465													; * SMTP Server Port
		//ConfigFile&lt;3&gt; = 587													; * SMTP Server Port
		ConfigFile&lt;4&gt; = "mail.smtp2go.com"
		ConfigFile&lt;5&gt; = 1                    								; * SMTP Authentication
		ConfigFile&lt;6&gt; = "sbotes@retailware.net"							    ; * Account User Name
		ConfigFile&lt;7&gt; = EmailConfig&lt;4&gt;								        ; * Account Password
		ConfigFile&lt;8&gt; = 1                                                   ; * Use SSL to send email

I have tried ConfigFile&lt;1&gt; set to both a 2 and "", Tried the two different port addresses and looked at the comments in the forum regarding ConfigFile&lt;8&gt;  but have left that at 1.

For the other systems it runs fine with ConfigFile&lt;1&gt; = 2  and ConfigFile&lt;3&gt; set to 465.

Any suggestions would be appreciated.  I have the same code on my system and can send attachments just fine. So it strikes me as something with their system. ]]>
        </description>
    </item>
    <item>
        <title>SRP_ActiveX_Info.exe - No expiry date shown</title>
        <link>https://forum.srpcs.com/discussion/1634/srp-activex-info-exe-no-expiry-date-shown</link>
        <pubDate>Wed, 18 Feb 2026 16:42:21 +0000</pubDate>
        <category>General</category>
        <dc:creator>Hank</dc:creator>
        <guid isPermaLink="false">1634@/discussions</guid>
        <description><![CDATA[Trying to verify the license date for my SRPCS controls.
Running SRP_ActiveX_Info, It shows everything as being Licensed, but does not show a license expiry date.

Should it?  If not, how can I see the license expiry date.

Note: the SRP_ActiveX_Info.exe has version 2.0.1.0,  64bit version of controls.





]]>
        </description>
    </item>
    <item>
        <title>srp_jsonx_go &amp; go_back</title>
        <link>https://forum.srpcs.com/discussion/1632/srp-jsonx-go-go-back</link>
        <pubDate>Fri, 13 Feb 2026 04:08:25 +0000</pubDate>
        <category>SRP Utilities</category>
        <dc:creator>AusMarkB</dc:creator>
        <guid isPermaLink="false">1632@/discussions</guid>
        <description><![CDATA[This is the first time I've attempted to use these two commands and I don't know whether I'm misunderstanding something or I've just done it wrong, which I guess is the same thing. But it's not doing what I'm expecting at least.
I have a json array with six objects.
I loop through the array using go and back the way I think they're intended to be used, but I only retrieve the data of the odd numbered rows.
iteration 1 worked just fine and the data I wanted was retrieved.
Then I went go back and went through iteration 2 and everything returned null so I thought, Ok, I've got it wrong.
But then iteration 3 went through and all the correct data was returned.
Iteration 4 - nulls
Iteration 5 - data
Iteration 6 - nulls.
<code lang="basicplus">			For itemCnt = 1 to numItems
				SRP_JsonX_Go('[':itemCnt:']')
				orderId		= SRP_JsonX_Get('id')
				orderDate	= SRP_JsonX_Get('date_created')
				custID		= SRP_JsonX_Get('customer_id')
				custName	= SRP_JsonX_Get('billing.first_name'):" ":SRP_JsonX_Get('billing.last_name')
				orderNo		= SRP_JsonX_Get('number')
				orderStatus	= SRP_JsonX_Get('status')
				custNote	= SRP_JsonX_Get('customer_note')
				total		= SRP_JsonX_Get('total')
				numLineItems	= SRP_JsonX_Count('line_items')		; //
				for liCount = 1 to numLineItems
					SRP_JsonX_Go('line_items[':liCount:']')
					itemWebId	= SRP_JsonX_Get('product_id')
					thisItem	= SRP_JsonX_Get('sku')
					itemQty		= SRP_JsonX_Get('quantity')
					itemPrice	= SRP_JsonX_Get('price')
					itemTotal	= SRP_JsonX_Get('total')
					SRP_JsonX_GoBack()		; // go back to the parent item (the line_items object)
				next liCount 
				SRP_JsonX_GoBack()		; // go back to the parent item (the array object)
			Next itemCnt
</code>
The code is so much nicer to read then the long way round but I'm missing something. Well, 3 things - rows 2,4 and 6.

In typing this, I tested the code without the inner line_items loop. Without that loop, I get all six rows so the inner goback must be screwing me over somehow. But only every second time.
<img src="https://forum.srpcs.com/uploads/editor/xa/mo3ss9gdc02b.png" alt="" />
]]>
        </description>
    </item>
    <item>
        <title>EngineServer as service</title>
        <link>https://forum.srpcs.com/discussion/1631/engineserver-as-service</link>
        <pubDate>Tue, 03 Feb 2026 05:50:55 +0000</pubDate>
        <category>SRP Engine Server</category>
        <dc:creator>AusMarkB</dc:creator>
        <guid isPermaLink="false">1631@/discussions</guid>
        <description><![CDATA[How do you configure the engineserver to run without a specific user profile, like a service for example?
We want the engineserver running whilstever the server is up and running without the need for a specific user profile to be logged in.
I'd imagine this is pretty standard but I've never done it.]]>
        </description>
    </item>
    <item>
        <title>FYI - The wiki is down</title>
        <link>https://forum.srpcs.com/discussion/1630/fyi-the-wiki-is-down</link>
        <pubDate>Tue, 13 Jan 2026 11:29:47 +0000</pubDate>
        <category>General</category>
        <dc:creator>AusMarkB</dc:creator>
        <guid isPermaLink="false">1630@/discussions</guid>
        <description><![CDATA[<img src="https://forum.srpcs.com/uploads/editor/bh/095kv9hieqqa.png" alt="" />
]]>
        </description>
    </item>
    <item>
        <title>SrpControls64 v4.2.7.12</title>
        <link>https://forum.srpcs.com/discussion/1628/srpcontrols64-v4-2-7-12</link>
        <pubDate>Mon, 17 Nov 2025 20:27:32 +0000</pubDate>
        <category>SRP Editor</category>
        <dc:creator>BarryStevens</dc:creator>
        <guid isPermaLink="false">1628@/discussions</guid>
        <description><![CDATA[This issue that is fixed in v4.2.6.8 is back.
Right+click:

<img src="https://forum.srpcs.com/uploads/editor/tf/8rygmuth7sqc.png" alt="" />
]]>
        </description>
    </item>
    <item>
        <title>OI table which exists but also doesn't</title>
        <link>https://forum.srpcs.com/discussion/1629/oi-table-which-exists-but-also-doesnt</link>
        <pubDate>Fri, 28 Nov 2025 13:27:20 +0000</pubDate>
        <category>OpenInsight</category>
        <dc:creator>rogercurtishall</dc:creator>
        <guid isPermaLink="false">1629@/discussions</guid>
        <description><![CDATA[I have been working on some code which is intended, during the application exit process, to create &amp; populate an OI table from an excel spreadsheet.  The table data would will be used in future sessions by other programs.  The program is supposed to first delete the table if it exists &amp; then create it anew.  

I started writing this program a couple of days ago, but I forgot to add the table to the database.  Now, my table does not exist according to the TableExists &amp; Delete_Table functions, but I get an FS146 (table exists) from the Create_Table function.

I am thinking I need to delete (via windows) the REV files for this table to fix this.  I noticed, tough, that the REVMEDIA files were updated the same time.  Do I need to do anything with those?

Thanks for any assistance.]]>
        </description>
    </item>
    <item>
        <title>OI10 &amp; Tab Control</title>
        <link>https://forum.srpcs.com/discussion/1199/oi10-tab-control</link>
        <pubDate>Thu, 25 Nov 2021 03:26:48 +0000</pubDate>
        <category>SRP Tab Control</category>
        <dc:creator>AusMarkB</dc:creator>
        <guid isPermaLink="false">1199@/discussions</guid>
        <description><![CDATA[I recently added an SRP Tab control to an existing form in OI9 as I have done many times before. All works as expected. As this form has been around forever, there are several OI buttons with images in the old toolbar fashion.
<img src="https://forum.srpcs.com/uploads/editor/r5/r20qqrmfppct.png" alt="" />
No real problem with that until, the form was migrated to OI10.
With the tab control added, the OI buttons no longer display the images at runtime. They do display them in the OI10 form designer but at runtime, no images.
<img src="https://forum.srpcs.com/uploads/editor/dr/nqiw1108iwnv.png" alt="" />
<img src="https://forum.srpcs.com/uploads/editor/4u/wa33dbud0lyv.png" alt="" />
Remove the tab control and the buttons return to displaying as they should.

Changing the buttons to SRP buttons, (which do behave correctly), is a nice idea but not a realistic endeavour.
Too many buttons on too many forms.]]>
        </description>
    </item>
    <item>
        <title>is there a way to read windows environment variables?</title>
        <link>https://forum.srpcs.com/discussion/1627/is-there-a-way-to-read-windows-environment-variables</link>
        <pubDate>Tue, 21 Oct 2025 16:47:55 +0000</pubDate>
        <category>OpenInsight</category>
        <dc:creator>rogercurtishall</dc:creator>
        <guid isPermaLink="false">1627@/discussions</guid>
        <description><![CDATA[I think I should know this but I am drawing a blank.  Thanks.]]>
        </description>
    </item>
    <item>
        <title>Excel</title>
        <link>https://forum.srpcs.com/discussion/1626/excel</link>
        <pubDate>Wed, 01 Oct 2025 18:14:59 +0000</pubDate>
        <category>OpenInsight</category>
        <dc:creator>jimvaughan</dc:creator>
        <guid isPermaLink="false">1626@/discussions</guid>
        <description><![CDATA[Does any function exist to allow OI to read data from an Excel file?]]>
        </description>
    </item>
    <item>
        <title>Is it possible to have sub-value marks in data be turned into line feeds in Run_Report?</title>
        <link>https://forum.srpcs.com/discussion/1625/is-it-possible-to-have-sub-value-marks-in-data-be-turned-into-line-feeds-in-run-report</link>
        <pubDate>Tue, 02 Sep 2025 20:00:19 +0000</pubDate>
        <category>OpenInsight</category>
        <dc:creator>rogercurtishall</dc:creator>
        <guid isPermaLink="false">1625@/discussions</guid>
        <description><![CDATA[This is for an OI 8.0.1 app.  I have the following statement which I am passing to Run_Report.  

LIST TABLE BIG04 COLHEAD "PO#" QTY_IT1 COLHEAD "qty" LOTNUM_IT1 COLHEAD "Lot#" EXPDATE_IT1 COLHEAD "Exp Date" WITH BIG04 = "01011011101" ID-SUPP BY BIG04

The data I want to make into line feeds are subvalue marks in a couple of the columns.

Thanks in advance.]]>
        </description>
    </item>
    <item>
        <title>Win 11 - Datepicker evaluation message</title>
        <link>https://forum.srpcs.com/discussion/1624/win-11-datepicker-evaluation-message</link>
        <pubDate>Tue, 02 Sep 2025 02:21:35 +0000</pubDate>
        <category>SRP DatePicker Control</category>
        <dc:creator>AusMarkB</dc:creator>
        <guid isPermaLink="false">1624@/discussions</guid>
        <description><![CDATA[A customer has had their machines updated from Windows 10 to 11 and now whenever they use the datepicker control, they receive an evaluation version message.
Their licence is current. No other SRP controls trigger a message, just the datepicker.
<img src="https://forum.srpcs.com/uploads/editor/8a/qol3y8nthcfz.png" alt="" />
They can just close it and move on but it's a nuisance.

They have the same srpcontrols and licence that I have on my dev machine.]]>
        </description>
    </item>
    <item>
        <title>Is it possible to center a check box style in an OI edittable?</title>
        <link>https://forum.srpcs.com/discussion/1623/is-it-possible-to-center-a-check-box-style-in-an-oi-edittable</link>
        <pubDate>Sun, 31 Aug 2025 15:40:52 +0000</pubDate>
        <category>OpenInsight</category>
        <dc:creator>rogercurtishall</dc:creator>
        <guid isPermaLink="false">1623@/discussions</guid>
        <description><![CDATA[This is in OI 9.4.4.  I have the data justification set to Centered, but the checkbox still comes out left justified.
Thanks in advance for your help.]]>
        </description>
    </item>
    <item>
        <title>srp_path-&gt;PathToUNC</title>
        <link>https://forum.srpcs.com/discussion/1622/srp-path-pathtounc</link>
        <pubDate>Thu, 07 Aug 2025 07:58:01 +0000</pubDate>
        <category>SRP Utilities</category>
        <dc:creator>BarryStevens</dc:creator>
        <guid isPermaLink="false">1622@/discussions</guid>
        <description><![CDATA[I am getting scrambled result v2.2.16, here is my test
<img src="https://forum.srpcs.com/uploads/editor/sx/we4rzp49c9rk.png" alt="" />
]]>
        </description>
    </item>
    <item>
        <title>Broken link?</title>
        <link>https://forum.srpcs.com/discussion/1621/broken-link</link>
        <pubDate>Tue, 05 Aug 2025 08:36:02 +0000</pubDate>
        <category>SRP Utilities</category>
        <dc:creator>BarryStevens</dc:creator>
        <guid isPermaLink="false">1621@/discussions</guid>
        <description><![CDATA[I dont think this link is working properly.
Can you please confirm.
<img src="https://forum.srpcs.com/uploads/editor/54/0ekaql71ir9j.png" alt="" />
]]>
        </description>
    </item>
   </channel>
</rss>
