<?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 - Windows Applications</title>
		<link>https://support.dataaccess.com/Forums/</link>
		<description>Building and deploying business applications for the Windows desktop with DataFlex.</description>
		<language>en</language>
		<lastBuildDate>Fri, 07 Aug 2026 22:11:05 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 - Windows Applications</title>
			<link>https://support.dataaccess.com/Forums/</link>
		</image>
		<item>
			<title>Whine for breakfast</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73465-Whine-for-breakfast&amp;goto=newpost</link>
			<pubDate>Fri, 07 Aug 2026 10:12:08 GMT</pubDate>
			<description><![CDATA[25.0 
 
I just used the view wizard to create a new entry view.  There are about 30 forms & a grid. 
 
I had to search & replace "topleftright" &...]]></description>
			<content:encoded><![CDATA[<div>25.0<br />
<br />
I just used the view wizard to create a new entry view.  There are about 30 forms &amp; a grid.<br />
<br />
I had to search &amp; replace &quot;topleftright&quot; &amp; &quot;bottomleftright&quot; on all of them.  Is there some way we could get an option to not have anchors set this way?  I don't know a developer who uses the stretch functionality.  I'd prefer no anchors to the current method.<br />
<br />
Yes I know it's Windows &amp; therefore less likely to be looked at.<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>Garret Mott</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73465-Whine-for-breakfast</guid>
		</item>
		<item>
			<title>dfComp from command prompt with compiler directives</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73452-dfComp-from-command-prompt-with-compiler-directives&amp;goto=newpost</link>
			<pubDate>Tue, 04 Aug 2026 11:49:26 GMT</pubDate>
			<description>Hi! 
 
I have a source file that i want to compile several times, but with different #IFDEF to turn on and off misc functions for each version. 
 
I...</description>
			<content:encoded><![CDATA[<div>Hi!<br />
<br />
I have a source file that i want to compile several times, but with different #IFDEF to turn on and off misc functions for each version.<br />
<br />
I have tried to use different SWS file with a and IFDEF set there, but it doesn't work.<br />
<br />
Any ideas?<br />
<br />
Regards<br />
Martin</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>MrHalland</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73452-dfComp-from-command-prompt-with-compiler-directives</guid>
		</item>
		<item>
			<title><![CDATA[Should_Save & Prompt Lists]]></title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73451-Should_Save-amp-Prompt-Lists&amp;goto=newpost</link>
			<pubDate>Mon, 03 Aug 2026 20:29:09 GMT</pubDate>
			<description><![CDATA[DF 25  I've brought this up under different titles, but am looking for ideas. 
 
In my DD subclass I have the following code: 
 
 
Code: 
--------- 
...]]></description>
			<content:encoded><![CDATA[<div>DF 25  I've brought this up under different titles, but am looking for ideas.<br />
<br />
In my DD subclass I have the following code:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; Procedure Request_Find Integer eFindMode Integer iFile Integer iIndex<br />
&nbsp; &nbsp; &nbsp; &nbsp; Integer eResponse <br />
&nbsp; &nbsp; &nbsp; &nbsp; Handle&nbsp; hoDD<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; Get Data_Set iFile to hoDD<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; //If finding another record - verify abandon changes like closing the view<br />
&nbsp; &nbsp; &nbsp; &nbsp; If (HasRecord(hoDD)) Begin<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (Should_Save(hoDD)) Begin<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Move (YesNo_Box(&quot;Changes Exist. Abandon changes and continue with the find?&quot;, &quot;Confirm&quot;, MBR_No)) to eResponse<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (eResponse &lt;&gt; MBR_Yes) Procedure_Return<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End<br />
&nbsp; &nbsp; &nbsp; &nbsp; End<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; Forward Send Request_Find eFindMode iFile iIndex<br />
&nbsp; &nbsp; End_Procedure</code><hr />
</div>It's there because finding a different record will lose any changes without warning &amp; it seemed &quot;sensible&quot; to have a warning similar to closing a view or the app.  It works exactly as I'd like, with one glaring exception:<br />
<br />
In Prompt lists (actually cDBCJGrid.pkg), searching runs the following:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; Procedure RequestColumnSearch Handle hoCol&nbsp; Integer iKeyCode Integer iKeyShift<br />
&nbsp; &nbsp; &nbsp; &nbsp; Handle hoSearchDialog hoDataSource<br />
&nbsp; &nbsp; &nbsp; &nbsp; Integer iCol<br />
&nbsp; &nbsp; &nbsp; &nbsp; Boolean bOk bStatic<br />
&nbsp; &nbsp; &nbsp; &nbsp; String sValue<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; Get piColumnId of hoCol to iCol<br />
&nbsp; &nbsp; &nbsp; &nbsp; Get CreateGridSearchDialogObject to hoSearchDialog<br />
&nbsp; &nbsp; &nbsp; &nbsp; Get RequestGridSearch of hoSearchDialog iKeyCode iKeyShift hoCol (&amp;sValue) to bOk<br />
&nbsp; &nbsp; &nbsp; &nbsp; If bOk Begin<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get phoDataSource to hoDataSource<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get DataIsStatic of hoDatasource to bStatic<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If bStatic Begin<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Send RequestFindColumnValue iCol sValue True 0<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Else Begin<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <font color="#ff0000"><b>Send UpdateCurrentValue of hoCol sValue</b></font><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Send RequestColumnLookup iCol<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End<br />
&nbsp; &nbsp; &nbsp; &nbsp; End<br />
&nbsp; &nbsp; &nbsp; &nbsp; Send Destroy of hoSearchDialog<br />
&nbsp; &nbsp; End_Procedure</code><hr />
</div>If the grid is static, UpdateCurrentValue is not called.  Why is this done for non-static?  It's causing my code to get called because it's setting the value (search for &quot;smi&quot; to find &quot;smith&quot; for example) &amp; therefore request_find thinks it's changed.  The grid's pbReadOnly is True.<br />
<br />
Anyone have a bright idea on how to work around this?  <br />
<br />
TIA</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>Garret Mott</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73451-Should_Save-amp-Prompt-Lists</guid>
		</item>
		<item>
			<title>Ad Hoc Query tool.</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73434-Ad-Hoc-Query-tool&amp;goto=newpost</link>
			<pubDate>Tue, 28 Jul 2026 18:15:03 GMT</pubDate>
			<description><![CDATA[Hi,  
 
In a regular windows application, for DF25, what is the current best choice for a "Quick and easy" query tool for the end user?  I've been...]]></description>
			<content:encoded><![CDATA[<div>Hi, <br />
<br />
In a regular windows application, for DF25, what is the current best choice for a &quot;Quick and easy&quot; query tool for the end user?  I've been using VDFQuery, but it has not been simple to upgrade to DF25 without loads of compiler errors and warnings.   Are there other options, or is there a proper current, maintained version of VDFQuery hidden somewhere? <br />
<br />
/mm</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>Michael Mullan</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73434-Ad-Hoc-Query-tool</guid>
		</item>
		<item>
			<title>Master table for Alias table (Friday brain fog)</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73420-Master-table-for-Alias-table-(Friday-brain-fog)&amp;goto=newpost</link>
			<pubDate>Fri, 24 Jul 2026 10:11:27 GMT</pubDate>
			<description>I know that the function MasterForAlias for a DDO will return the master table for an alias table. But if not using a DDO is there a way to get the...</description>
			<content:encoded><![CDATA[<div>I know that the function MasterForAlias for a DDO will return the master table for an alias table. But if not using a DDO is there a way to get the master for an alias? This is an MSSQL database so I'm thinking I could possible get the DF_FILE_ROOT_NAME and go from there. But is there already an out-the-box way that I just haven't found?</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>Peter Bragg</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73420-Master-table-for-Alias-table-(Friday-brain-fog)</guid>
		</item>
		<item>
			<title>DataFlex 2026 Release Candidate 1 is now available!</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73410-DataFlex-2026-Release-Candidate-1-is-now-available!&amp;goto=newpost</link>
			<pubDate>Wed, 22 Jul 2026 13:03:29 GMT</pubDate>
			<description>We are pleased to announce the availability of DataFlex 2026 Release Candidate 1. Since Beta 1, we have made many bug fixes and improvements. The...</description>
			<content:encoded><![CDATA[<div>We are pleased to announce the availability of DataFlex 2026 Release Candidate 1. Since Beta 1, we have made many bug fixes and improvements. The major new features in DataFlex 2026 include:<br />
<br />
<ul><li style="">Package Manager</li><li style="">Revamped Studio Create New dialog</li><li style="">Web UI Framework<br />
<ul><li style="">Now deployed as a package</li><li style="">Designer support for Web Modal Dialog navigation</li><li style="">Web Selection Form</li><li style="">WebList filters and enhanced lookups</li><li style="">Extended dashboard sample</li><li style="">Dark mode for web controls and themes</li></ul></li><li style="">Hardening of DataFlex executables</li><li style="">Excel Import Wizard</li><li style="">Improved Documentation System</li></ul><br />
<br />
New for this release candidate is a guide that explains how to migrate your workspaces from previous versions. You can find it in the <a href="https://docs.dataflex.dev/Welcome/Migrating_Existing_Workspaces_to_DataFlex_2026/" target="_blank">documentation</a>.<br />
<br />
Please help us improve DataFlex 2026 by downloading and testing this build, then sharing your feedback here on the forums.<br />
<ul><li style="">Watch the <a href="https://learning.dataflex.dev/courses/whats-new-in-dataflex-2026-pre-release/" target="_blank">What&#8217;s New course</a> in the DataFlex Learning Center for a show-and-tell overview of these new features.</li><li style="">Review the full list of changes in the <a href="https://docs.dataflex.dev/Welcome/Whats_New_in_DataFlex_2026/" target="_blank">What&#8217;s New section</a> of the online help.</li><li style="">Download DataFlex 2026 from the <a href="http://www.dataflex.dev/dataflexprerelease" target="_blank">Download Center.</a></li></ul><br />
Share your feedback on the DataFlex 2026 Testing Forum.<br />
<br />
Note that the package manager server has been reset and from now on uploaded packages will stay permanently. <br />
<br />
Best regards,<br />
<br />
The Development Team</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>Harm Wibier</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73410-DataFlex-2026-Release-Candidate-1-is-now-available!</guid>
		</item>
		<item>
			<title>CheckBox</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73383-CheckBox&amp;goto=newpost</link>
			<pubDate>Thu, 09 Jul 2026 00:32:46 GMT</pubDate>
			<description>Hi all 
 
I have a CheckBox in my DEO. 
How do I read the CheckBox state from the dictionary? 
 
Edgar</description>
			<content:encoded><![CDATA[<div>Hi all<br />
<br />
I have a CheckBox in my DEO.<br />
How do I read the CheckBox state from the dictionary?<br />
<br />
Edgar</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>Edgar H. Peņa C.</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73383-CheckBox</guid>
		</item>
	</channel>
</rss>
