<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Data Access Worldwide Forums - DataFlex 2026 Testing</title>
		<link>https://support.dataaccess.com/Forums/</link>
		<description>A forum containing messages about the pre-release testing of DataFlex 2026.</description>
		<language>en</language>
		<lastBuildDate>Fri, 17 Jul 2026 04:42:19 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>https://support.dataaccess.com/Forums/images/misc/rss.png</url>
			<title>Data Access Worldwide Forums - DataFlex 2026 Testing</title>
			<link>https://support.dataaccess.com/Forums/</link>
		</image>
		<item>
			<title>Libraries.................</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73391-Libraries&amp;goto=newpost</link>
			<pubDate>Sat, 11 Jul 2026 14:14:14 GMT</pubDate>
			<description><![CDATA[I have build up over the years a fairly extensive library "construction". Many over the time released in public domain from other dataflex...]]></description>
			<content:encoded><![CDATA[<div>I have build up over the years a fairly extensive library &quot;construction&quot;. Many over the time released in public domain from other dataflex developers. Snippets from the forum, conferences exchanges. <br />
I build extension on and created my own frame work. Well multiple ones.<br />
<br />
That is depending on the work I have over time. I worked for more then a few customers doing one to one work. Some of those projects ended up in a one to more customers using it. And I work on a bigger piece of software<br />
<br />
All use the my base frame work and can have there own project frame work on top on the base frame work. All good up to now. That worked from Vdf4 up to 2025.  For sure some clean up could be done. But why do that if all is working and tested.<br />
<br />
<br />
But not in 2026.<br />
<br />
Compiling since Alpha 2 is not possible. While the same sources compile without a problem in all previous versions.<br />
<br />
<br />
So the bigger project in the sws file has the following first and major dependency<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">{<br />
&nbsp; &nbsp; &quot;dependencies&quot;: [<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;../V-60-Lib/V-60-Lib - 26.0.sws&quot;,</code><hr />
</div><br />
Yes there are more but those are not important for the problem.<br />
<br />
So that is the main library of the project. That main lib has an dependency<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">{<br />
&nbsp; &nbsp; &quot;dependencies&quot;: [<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;../../Vdf12/Libraries/V-26.0/X-Framework/X-Framework.sws&quot;,</code><hr />
</div>Again there are more libs there too. But that do not matter<br />
<br />
When compiling I get the following error:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">ERROR: 4306 Forward reference not resolved&nbsp; GET_GIVEDIRECTORYEXISTS ON LINE: 840 (775835) OF FILE: C:\Data\HRp5\V-60\AppSrc\HRp_Head.vw</code><hr />
</div>So double click and go to the offending line. Now use the new Control+Mouse click and it goes to ...... Well it should not go anywhere because I have the compiler error. But it does go to the call<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; Function giveDirectoryExists String sDirectory Boolean bShowError Returns Boolean</code><hr />
</div>Ol lets check if the package is part of the view where the error was found. And yes it existing<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">Use cDirectoryLogic.pkg&nbsp; &nbsp; // &lt;&lt;&lt;&lt;&lt;==== existing</code><hr />
</div>Ok lets open this file in the studio. And yes it pere4fectly goes the file I showed you the call from.<br />
<br />
So what is the problem???<br />
<br />
The file cDirectoryLogic.pkg is part of the main lib &quot;V-60-Lib/V-60-Lib - 26.0.sws&quot; of the project.<br />
<br />
But there is also a cDirectoryLogic.pkg in base frame work used for all other customers. <br />
The base frame work pkg did not change since 2010 and the main project indeed got an different name for the same call in 2016.<br />
<br />
And for what ever reason the compiler finds that first the source in the lower base lib first and the call &quot;does&quot; exists but with a different name. Do not ask me why. If I look in configure Workspace properties at the Library paths <br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">C:\Data\HRp5\V-60-Lib\AppSrc<br />
C:\Data\Vdf12\Libraries\V-26.0\X-Framework\AppSrc</code><hr />
</div>And the MakePath<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">C:\Data\HRp5\V-60-Lib\AppSrc<br />
C:\Data\Vdf12\Libraries\V-26.0\X-Framework\AppSrc</code><hr />
</div><br />
So for me remains the question why the compiler take a pkg file from a to me lower level dependency and the studio work with the to me the proper file. <br />
<br />
Because the compiler gives a hick up I did run into this problem. But what if I changed functionality in the same call in a to me higher level and it compiles the lower, that is to me a very bad scenario. To sort that all out I will have to check the prn file for all includes and see which taken first. And check all packages. That is a not so nice scenario.<br />
<br />
Is something like I am writing here a weird thing I do, no I do think so. I do it somethings with a pkg from DAW where I make changes in to fix bugs. Sometimes that is done with a subclass. But I prefer to edit DAW with comments what I have done and why. A source compare with a new release alpha, beta, rc and final I will find the differences. With sub classes that is way harder because you forget after a few years you made &quot;upgrades&quot;<br />
<br />
But many libs I use have files included made by others. For example Wil van Antwerpen made some sources which are used by others and distributed in the history libs published. It is to me unlikely that all those are getting made ready for the package manager. <br />
<br />
Final word. Because the compiler found the coding error I am I think lucky but how can I trust all other stuff what it takes first above what I expect it to do. Will I be the only one effected. I think it is can happen to anyone without knowing it.<br />
<br />
<br />
Peter</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>phvwijk</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73391-Libraries</guid>
		</item>
		<item>
			<title>Packages.</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73390-Packages&amp;goto=newpost</link>
			<pubDate>Sat, 11 Jul 2026 13:00:41 GMT</pubDate>
			<description>How about having a setting/option to include a downloaded package into the pre-compiled part if your application. 
 
A package will be in most likely...</description>
			<content:encoded><![CDATA[<div>How about having a setting/option to include a downloaded package into the pre-compiled part if your application.<br />
<br />
A package will be in most likely seen in most cases as something you do not make changes in. so by adding it to the pre compile it saves time in compiling.<br />
<br />
<br />
Peter</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>phvwijk</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73390-Packages</guid>
		</item>
		<item>
			<title>Ppackaging a workspace with multiple .sws files</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73386-Ppackaging-a-workspace-with-multiple-sws-files&amp;goto=newpost</link>
			<pubDate>Thu, 09 Jul 2026 20:55:54 GMT</pubDate>
			<description><![CDATA[With reference to Brams' post (number 402307) 
 
 
---Quote--- 
we currently want to push an OSS community driven environment. 
---End Quote--- 
How...]]></description>
			<content:encoded><![CDATA[<div>With reference to Brams' post (number 402307)<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			we currently want to push an OSS community driven environment.
			
		<hr />
	</div>
</div>How do we package a workspace with multiple .sws files e.g.<br />
<br />
<a href="https://support.dataaccess.com/Forums/attachment.php?attachmentid=18236&amp;d=1783630507"  title="Name:  Capture.PNG
Views: 26
Size:  16.6 KB">Capture.PNG</a></div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="https://support.dataaccess.com/Forums/images/attach/png.gif" alt="File Type: png" />
	<a href="https://support.dataaccess.com/Forums/attachment.php?attachmentid=18236&amp;d=1783630507">Capture.PNG</a> 
(16.6 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>Ian Smith</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73386-Ppackaging-a-workspace-with-multiple-sws-files</guid>
		</item>
		<item>
			<title>PKG: Package manager dashboard needs more extensive filtering.</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73377-PKG-Package-manager-dashboard-needs-more-extensive-filtering&amp;goto=newpost</link>
			<pubDate>Mon, 06 Jul 2026 17:24:21 GMT</pubDate>
			<description><![CDATA[I realize the current contents of the pacage manager are "not real" but they do illustrate the need for a better search; 
 
 
 
* By Author 
* By...]]></description>
			<content:encoded><![CDATA[<div>I realize the current contents of the pacage manager are &quot;not real&quot; but they do illustrate the need for a better search;<br />
<br />
<br />
<ul><li style="">By Author</li><li style="">By Release State, Alpha, Beta, RC, Production</li><li style="">by Release Date/ last change date.</li><li style="">by full text search in the metadata.</li></ul><br />
<br />
and so on.</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>Michael Mullan</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73377-PKG-Package-manager-dashboard-needs-more-extensive-filtering</guid>
		</item>
		<item>
			<title>PKG: Can we have some or all of these workspaces in Package Manager?</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73376-PKG-Can-we-have-some-or-all-of-these-workspaces-in-Package-Manager&amp;goto=newpost</link>
			<pubDate>Mon, 06 Jul 2026 17:18:11 GMT</pubDate>
			<description>Code: 
--------- 
43  Graphics Library 2.6    C:\Dataflex\26.0\Fionaidh\libraries\Graphics Library 2.6 
   35  StureApsPublicLib      ...</description>
			<content:encoded><![CDATA[<div><div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">43&nbsp; Graphics Library 2.6&nbsp; &nbsp; C:\Dataflex\26.0\Fionaidh\libraries\Graphics Library 2.6<br />
&nbsp;  35&nbsp; StureApsPublicLib&nbsp; &nbsp; &nbsp;  C:\Dataflex\26.0\Fionaidh\libraries\StureApsPublicLib<br />
&nbsp;  21&nbsp; SigCodejock Classes v1&nbsp; C:\Dataflex\26.0\Fionaidh\libraries\SigCodejock\SigCodejock Classes v1<br />
&nbsp;  19&nbsp; VdfQuery&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C:\Dataflex\26.0\Fionaidh\libraries\VdfQuery<br />
&nbsp;  14&nbsp; SigCodejock Wrapper 17.3.0&nbsp; C:\Dataflex\26.0\Fionaidh\libraries\SigCodejock\SigCodejock Wrapper 17.3.0<br />
&nbsp;  11&nbsp; cDateTime&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  C:\Dataflex\26.0\Fionaidh\libraries\cDateTime<br />
&nbsp;  10&nbsp; Printing&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C:\Dataflex\26.0\Fionaidh\libraries\Printing<br />
&nbsp; &nbsp; 5&nbsp; TinyMceControl&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C:\Dataflex\26.0\Fionaidh\libraries\TinyMceControl<br />
&nbsp; &nbsp; 4&nbsp; AutoComplete&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C:\Dataflex\26.0\Fionaidh\libraries\AutoComplete<br />
&nbsp; &nbsp; 2&nbsp; CodeMaintenance&nbsp; &nbsp; &nbsp; &nbsp;  C:\Dataflex\26.0\Fionaidh\libraries\CodeMaintenance<br />
&nbsp; &nbsp; 2&nbsp; LibXL&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C:\Dataflex\26.0\Fionaidh\libraries\LibXL <br />
&nbsp; &nbsp; 1&nbsp; Chilkat9&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C:\Dataflex\26.0\Fionaidh\libraries\Chilkat9<br />
&nbsp; &nbsp; 1&nbsp; Example Library&nbsp; &nbsp; &nbsp; &nbsp;  C:\Dataflex\26.0\Fionaidh\libraries\Example Library</code><hr />
</div>these are my own, can I publish them? <br />
   <div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"> 2&nbsp; DBEKeyPad&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;  C:\Dataflex\26.0\Fionaidh\libraries\DBEKeyPad<br />
&nbsp; &nbsp; 4&nbsp; ReportTest&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C:\Dataflex\26.0\Fionaidh\libraries\ReportTest<br />
&nbsp; &nbsp; 2&nbsp; Dymo&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; C:\Dataflex\26.0\Fionaidh\libraries\Dymo<br />
41&nbsp; DanesBridgeBase&nbsp; &nbsp; &nbsp; &nbsp;  C:\Dataflex\26.0\Fionaidh\libraries\DanesBridgeBase</code><hr />
</div></div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>Michael Mullan</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73376-PKG-Can-we-have-some-or-all-of-these-workspaces-in-Package-Manager</guid>
		</item>
		<item>
			<title>Compiler produces a non-deterministic .prn for source containing extended (8-bit / OEM) characters</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73363-Compiler-produces-a-non-deterministic-prn-for-source-containing-extended-(8-bit-OEM)-characters&amp;goto=newpost</link>
			<pubDate>Mon, 29 Jun 2026 08:13:17 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I've run into what looks like a df-cli compiler bug. 
 
When I compile a workspace whose source contains extended / high-bit characters (this...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
<font color="#E2E1DA"><span style="font-family: &amp;amp">I've run into what looks like a df-cli compiler bug.<br />
</span></font><br />
<font color="#E2E1DA"><span style="font-family: &amp;amp">When I compile a workspace whose source contains extended / high-bit characters (this one is OEM/CP850, with Swedish å ä ö), the compiler produces a non-reproducible .prn: compiling byte-identical, unchanged source twice yields two .prn files that differ. The differences are confined to compiler messages that echo a name/symbol containing an extended character.<br />
</span></font><br />
DataFlex / Studio version : 2026-Beta 1<br />
Compiler used             : df-cli command line: &quot;C:\Program Files\DataFlex 26.0\Bin\df-cli.exe&quot; build-file &quot;C:\somepath\myprogram.sre&quot; --workspace &quot;C:\somepath\MyWS.sws&quot; --rebuild --force --write-errors --verbose<br />
Platform                  : Windows 11 x64<br />
Source encoding           : OEM / CP850<br />
<br />
<font color="#E2E1DA"><span style="font-family: &amp;amp">What I see:</span></font><br />
<font color="#E2E1DA"><span style="font-family: &amp;amp">Two compiles of the same source, no edits in between. The two </span></font>.prn<font color="#E2E1DA"><span style="font-family: &amp;amp"> files are the </span></font><font color="#E2E1DA"><span style="font-family: &amp;amp">same length</span></font><font color="#E2E1DA"><span style="font-family: &amp;amp">; </span></font>cmp<font color="#E2E1DA"><span style="font-family: &amp;amp"> reports 48 differing bytes, and every one is the </span></font><font color="#E2E1DA"><span style="font-family: &amp;amp">same pattern</span></font><font color="#E2E1DA"><span style="font-family: &amp;amp">. Example, from a </span></font>4538 Obsolete Indicator<font color="#E2E1DA"><span style="font-family: &amp;amp"> warning whose text echoes a name containing the extended byte </span></font>0x95<font color="#E2E1DA"><span style="font-family: &amp;amp">:<br />
<br />
compile A:   4C 95 C5 04   54 95 C5 04   23 50 4F 50      (...OF FILE: L?T?#POP...)<br />
compile B:   4C 95 29 01   54 95 29 01   23 50 4F 50      (...OF FILE: L?T?#POP...)<br />
                ^^ =====       ^^ =====<br />
             0x95 same      two trailing bytes differ:  C5 04   vs   29 01<br />
<br />
<font color="#E2E1DA">The extended character itself (0x95) is identical in both runs. What changes are the two bytes immediately following each extended character — and those bytes are constant within one compile but different between compiles (identical at all 24 occurrences in a given run, then a different value the next run).</font><br />
<font color="#E2E1DA">That signature — one value reused everywhere within a run, a different value the next run — points to an uninitialized buffer or an address/pointer value written after each extended character (i.e. it tracks process memory layout), rather than a character-set conversion, which would be identical every time.<br />
</font><br />
<font color="#E2E1DA">Why it matters:<br />
Any tooling that parses or diffs the .prn (compile-result analysis, CI baselines, source-modernization tools) sees phantom changes on every recompile because the echoed names aren't stable — and the apparent uninitialized read is worth chasing on its own.<br />
</font>More specifically, it is needed to make reliable analyzis's for the DFRefactor project.<br />
<font color="#E2E1DA"><br />
I can supply the two .prn files or a trimmed-down reproducer.</font><br />
</span></font></div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>Nils G. Svedmyr</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73363-Compiler-produces-a-non-deterministic-prn-for-source-containing-extended-(8-bit-OEM)-characters</guid>
		</item>
		<item>
			<title>AI generated workspace</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73349-AI-generated-workspace&amp;goto=newpost</link>
			<pubDate>Sun, 21 Jun 2026 19:36:13 GMT</pubDate>
			<description>Hi guys 
 
Just mucking around with having an AI generate a workspace by describing the functionality, pointing to webordermobile for sample and...</description>
			<content:encoded><![CDATA[<div>Hi guys<br />
<br />
Just mucking around with having an AI generate a workspace by describing the functionality, pointing to webordermobile for sample and .\pkg for packages.<br />
<br />
Couple of things that a beginner would not necessarily pickup:<br />
<br />
1. Workspace in use (due to IdeSrc) missing - possibly studio could create this folder when missing<br />
2. SQL connect wizard fails as no filelist.cfg  in later step of the wizard - possibly studio could detect in wizard and copy from ‘new’ workspace with or without confirmation (and add to workspace path if missing)<br />
3. Webapp* tables missing. - possibly studio could have an option for ‘add webapp framework tables’<br />
<br />
Cheers<br />
Marco</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>Marco</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73349-AI-generated-workspace</guid>
		</item>
		<item>
			<title>Beta 1: Invalid Message RegisterPublishedProperty</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73348-Beta-1-Invalid-Message-RegisterPublishedProperty&amp;goto=newpost</link>
			<pubDate>Sun, 21 Jun 2026 17:06:25 GMT</pubDate>
			<description>Converted WebApp from 25. This not-found procedure seems to belong to cWebObject_Mixin, under 25.0 I had server properties in the Application Object....</description>
			<content:encoded><![CDATA[<div>Converted WebApp from 25. This not-found procedure seems to belong to cWebObject_Mixin, under 25.0 I had server properties in the Application Object. Do I assume that's now wrong?</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>DaveR</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73348-Beta-1-Invalid-Message-RegisterPublishedProperty</guid>
		</item>
		<item>
			<title>B1 latest Toast missing property?</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73347-B1-latest-Toast-missing-property&amp;goto=newpost</link>
			<pubDate>Sat, 20 Jun 2026 17:24:16 GMT</pubDate>
			<description><![CDATA[Beta 1: Compiling the toastdemo.src seems to have a missing property 
 
Set pbServerOnToastClick to True 
 
I'm still plugging away at setting up...]]></description>
			<content:encoded><![CDATA[<div>Beta 1: Compiling the toastdemo.src seems to have a missing property<br />
<br />
Set pbServerOnToastClick to True<br />
<br />
I'm still plugging away at setting up rules for conversions from  25 to 26, and though I would replace my 'showtimedmsg' from our windows precompile with  something that called toast<br />
<br />
Is the toast object allowed to be directly under the application or webapplication objects or must it be in each webobject?</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>DaveR</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73347-B1-latest-Toast-missing-property</guid>
		</item>
		<item>
			<title>Brealpunt</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73346-Brealpunt&amp;goto=newpost</link>
			<pubDate>Sat, 20 Jun 2026 15:02:56 GMT</pubDate>
			<description>Although noted in 2025 pretty sure it will be the 2026 version. 
 
It is maybe not something you very quickly experience. 
 
Create a break punt with...</description>
			<content:encoded><![CDATA[<div>Although noted in 2025 pretty sure it will be the 2026 version.<br />
<br />
It is maybe not something you very quickly experience.<br />
<br />
Create a break punt with a Condition.,<br />
Then disable the breakpont<br />
Enable again an your condition is gone.<br />
<br />
Peter</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>phvwijk</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73346-Brealpunt</guid>
		</item>
		<item>
			<title>Horizontal mouse scrolling</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73343-Horizontal-mouse-scrolling&amp;goto=newpost</link>
			<pubDate>Fri, 19 Jun 2026 10:22:45 GMT</pubDate>
			<description><![CDATA[I have noticed that DF26 (and indeed DF27 ;)), unlike any previous version, supports horizontal mouse/trackpad scrolling.  I'm not totally convinced...]]></description>
			<content:encoded><![CDATA[<div>I have noticed that DF26 (and indeed DF27 ;)), unlike any previous version, supports horizontal mouse/trackpad scrolling.  I'm not totally convinced that this new feature is a good thing.<br />
<br />
Obviously the ideal is to keep your methods short enough that the whole thing can be seen on one screen (at a comfortable font size), although I confess I'm not at all good at keeping to this.  However what I <i>am</i> pretty good at is ensuring that my code very rarely requires horizontal scrolling to be read; I generally keep my lines of code to &lt;= 80 characters wide (yes, I still think I'm using IBM 80-column punch cards; I've been set in my ways longer than most of you have been alive ;)), because I feel that if you can't see a whole line on-screen things get very hard to understand, thus I don't feel any need for horizontal mouse/trackpad scrolling.<br />
<br />
In addition, I generally set things up with what Apple call &quot;<i>Natural scrolling</i>&quot; switched <b>off</b>, so when vertical scrolling, a &quot;down&quot; movement takes me &quot;down&quot; the text.  In DF26, in the new hozizontal scrolling, a &quot;left&quot; action (on my mouse or trackpad) takes me <u>right</u> in the text and vise versa, which feels (to me anyway) disconcertingly wrong - it is the reverse of what happens in, for instance, Visual Studio Code - in my set up at least, with &quot;<i>Natural scrolling</i>&quot; switched off.<br />
<br />
Is there any way of:<br />
<ol class="decimal"><li style="">Changing the direction of horizontal scrolling</li><li style="">Turning this behaviour off (my preferred option)</li></ol><br />
<br />
Looking through settings on my Mac, my Windows VM and in the Studio, I can't find any way to do these things, but maybe I'm simply missing it.  :(<br />
<br />
Mike</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>Mike Peat</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73343-Horizontal-mouse-scrolling</guid>
		</item>
		<item>
			<title>Beta 1</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73342-Beta-1&amp;goto=newpost</link>
			<pubDate>Thu, 18 Jun 2026 13:06:40 GMT</pubDate>
			<description>Beta 1: Precompiles must be it the first folder on the AppSrcPath? 
 
Beta1: With 7 folders in the AppSrc list - one error for each entry 
 
...</description>
			<content:encoded><![CDATA[<div>Beta 1: Precompiles must be it the first folder on the AppSrcPath?<br />
<br />
Beta1: With 7 folders in the AppSrc list - one error for each entry<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Quote:</div>
	<div class="bbcode_quote printable">
		<hr />
		
			C:\Program Files\DataFlex 26.0\Bin64\Studio.exe<br />
Referenced Array Index Out of Bounds<br />
<br />
<br />
Error: 4509<br />
<br />
<br />
Please report this error to Data Access Corporation<br />
<br />
<br />
MSG_SAVEWORKSPACEPROPERTIES (17634) - oConfigureWorkspace (1577) - at address 207136<br />
MSG_SAVEWORKSPACEPROPERTIES (17634) - oOK_btn (2000) - in native code<br />
MSG_ONCLICK (4692) - oOK_btn (2000) - at address 206858<br />
MSG_COMMAND (648) - oOK_btn (2000) - in native code<br />
MSG_CREATE_DIALOG (711) - oConfigureWorkspace (1577) - in native code<br />
MSG_CREATE_DIALOG (711) - oConfigureWorkspace (1577) - at address 2217<br />
MSG_ACTIVATE (117) - oConfigureWorkspace (1577) - in native code<br />
MSG_ACTIVATE (117) - oConfigureWorkspace (1577) - at address 3033<br />
MSG_POPUP (290) - oConfigureWorkspace (1577) - in native code<br />
MSG_LOADWORKSPACEPROPERTIES (17633) - oConfigureWorkspace (1577) - at address 207114<br />
GET_EXECUTE@0 (13497) - oStudioCommand (773) - at address 166003<br />
MSG_ONCOMMAND@1 (13516) - oActionManager (655) - at address 105538<br />
MSG_REQUESTCOMMAND (17188) - oConfigureWorkspace (1082) - at address 190716<br />
[start] - at address 291135
			
		<hr />
	</div>
</div></div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>DaveR</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73342-Beta-1</guid>
		</item>
		<item>
			<title>SQL drivers</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73339-SQL-drivers&amp;goto=newpost</link>
			<pubDate>Wed, 17 Jun 2026 12:31:40 GMT</pubDate>
			<description>At FlexRoads something was mentioned about new SQL drivers. I always thought this was the TechStack stream of the product, but some remarks seem to...</description>
			<content:encoded><![CDATA[<div>At FlexRoads something was mentioned about new SQL drivers. I always thought this was the TechStack stream of the product, but some remarks seem to indicate otherwise.<br />
<br />
Could this be clarified?<br />
<br />
Cheers<br />
Marco</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>Marco</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73339-SQL-drivers</guid>
		</item>
		<item>
			<title>Studio 2026 compiling older code</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73338-Studio-2026-compiling-older-code&amp;goto=newpost</link>
			<pubDate>Wed, 17 Jun 2026 12:29:26 GMT</pubDate>
			<description>Hi, I think I heard at FlexRoads that the new studio can compile older code (as far back as 19.1). 
A quick check shows I might have misheard and...</description>
			<content:encoded><![CDATA[<div>Hi, I think I heard at FlexRoads that the new studio can compile older code (as far back as 19.1).<br />
A quick check shows I might have misheard and it’s only the df-cli that can compile older projects.<br />
<br />
So did I look not far enough and this could be done?<br />
<br />
At several or our customers we have a large varieties of runtime versions. Being able to code any of these in the same studio would be awesome.<br />
<br />
Please advise if there is a way<br />
<br />
Kind regards<br />
Marco</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing">DataFlex 2026 Testing</category>
			<dc:creator>Marco</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73338-Studio-2026-compiling-older-code</guid>
		</item>
	</channel>
</rss>
