<?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>Sun, 07 Jun 2026 10:13:34 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>cDBCJGridColumn Alignment</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73314-cDBCJGridColumn-Alignment&amp;goto=newpost</link>
			<pubDate>Wed, 03 Jun 2026 12:29:05 GMT</pubDate>
			<description>Hi - 
 
DF 25  
 
I have code in my subclass that sets the text/header alignment based on field type.  This is in End_Construct_Object: 
 
 
Code:...</description>
			<content:encoded><![CDATA[<div>Hi -<br />
<br />
DF 25 <br />
<br />
I have code in my subclass that sets the text/header alignment based on field type.  This is in End_Construct_Object:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get piBindingTable to iFileNumber&nbsp; &nbsp; &nbsp;  //Table<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If (iFileNumber&lt;&gt;0) Begin<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get piBindingColumn to iFieldNumber //Column<br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get_Attribute DF_FIELD_TYPE of iFileNumber iFieldNumber to iType&nbsp;  <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If ((iType = DF_DATE) or (iType = DF_DATETIME)) Begin&nbsp; &nbsp; &nbsp;  //Date/DateTime<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set peHeaderAlignment&nbsp; &nbsp; to xtpAlignmentCenter<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set peTextAlignment&nbsp; &nbsp; &nbsp; to xtpAlignmentCenter<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set Prompt_Button_Bitmap to &quot;CalendarButton.bmp&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Else If (iType = DF_BCD) Begin&nbsp; //Numeric<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set peHeaderAlignment to xtpAlignmentRight<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set peTextAlignment&nbsp;  to xtpAlignmentRight<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Else Begin&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //Everything else - ASCII, Text, etc.<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set peHeaderAlignment&nbsp; &nbsp; to xtpAlignmentLeft<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set peTextAlignment&nbsp; &nbsp; &nbsp; to xtpAlignmentLeft<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set Prompt_Button_Bitmap to (Prompt_Button_Bitmap(Self))&nbsp; &nbsp; &nbsp; &nbsp; //&quot;FindButton.BMP&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End</code><hr />
</div>This works just fine - except for a condition I just ran into.  I'm showing a column that is an integer, but it has a Code Validation Table that &quot;translates&quot; it to text.<br />
<br />
The subclass sets alignment to xtpAlignmentRight because it's an integer, however I added code to the column object to set it to xtpAlignmentLeft:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; Object oSecGroup_Rights is a cDANADbCJGridColumn<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Entry_Item SecGroup.Rights<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set piWidth to 232<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set psCaption to &quot;Rights&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set pbComboButton to True<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set peFooterAlignment to xtpAlignmentLeft<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set peHeaderAlignment to xtpAlignmentLeft<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set peIconAlignment to xtpAlignmentIconLeft<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set peTextAlignment to xtpAlignmentLeft<br />
&nbsp; &nbsp; &nbsp; &nbsp; End_Object</code><hr />
</div>Even though the code in the column is called after the subclass code, it does not reset the alignment - it stays aligned right.  Because of the issues with the combo button and right alignment + it being crammed up against the right side of the column I'd really like it aligned left.<br />
<br />
Is there a reason why the object code doesn't &quot;replace&quot; the subclass code?<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?73314-cDBCJGridColumn-Alignment</guid>
		</item>
		<item>
			<title>Problem with cache cJSONHttpTransfer tested in DF 20.1 and 25.0</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73311-Problem-with-cache-cJSONHttpTransfer-tested-in-DF-20-1-and-25-0&amp;goto=newpost</link>
			<pubDate>Wed, 03 Jun 2026 09:34:18 GMT</pubDate>
			<description>Hi! 
 
I have the simple object 
 
 
Code: 
--------- 
        Object oTexiHttp is a cJsonHttpTransfer 
            Set piRemotePort to rpHttpSSL 
  ...</description>
			<content:encoded><![CDATA[<div>Hi!<br />
<br />
I have the simple object<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; Object oTexiHttp is a cJsonHttpTransfer<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set piRemotePort to rpHttpSSL<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set peTransferFlags to (ifSecure+ifPragmaNocache+ifNoCacheWrite)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set psContentTypeSent to &quot;application/json&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; End_Object</code><hr />
</div>When sending a request i first do a Send ClearHeaders of oTexiHttp<br />
Then  do Get AddHeader &quot;Cookie&quot; &quot;myCookie&quot; to iVoid<br />
<br />
Then we do a HttpPutJson with all the parameters.<br />
<br />
When the first transfter is done the header &quot;Cookie&quot; is sent to the server.<br />
When i do a new request, and set a new cookie, the old cookie is stil sent.<br />
<br />
How is this possible?<br />
<br />
<br />
Here is the full code. (The cookie is set with a string containing the value in my program, i have made sure that the string contains a value)<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"><br />
&nbsp; &nbsp; &nbsp; &nbsp; Object oTexiHttp is a cJsonHttpTransfer<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set piRemotePort to rpHttpSSL<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set peTransferFlags to (ifSecure+ifPragmaNocache+ifNoCacheWrite)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set psContentTypeSent to &quot;application/json&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; End_Object<br />
<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get Create (RefClass(cJsonObject)) to hoJson<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get ParseString of hoJson '{ &quot;destinationDomain&quot;: &quot;vgr&quot;, &quot;destinationContainer&quot;: &quot;laundry&quot;, &quot;timestamp&quot;: 1779182207000, &quot;transactionType&quot;: &quot;LAUNDRY&quot;, &quot;tagStatus&quot;: &quot;DIRTY&quot;, &quot;tags&quot;: [ &quot;AB1111111111111111111129&quot; ] }' to iVoid<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Send ClearHeaders of oTexiHttp<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get AddHeader of oTexiHttp &quot;Cookie&quot;&nbsp; &quot;JSESSIONID=node01amgpnpbqkcqq1nkst7nzywgob17.node0&quot; to iVoid&nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get AddHeader of oTexiHttp &quot;Content-Type&quot; &quot;application/json&quot; to iVoid<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get AddHeader of oTexiHttp &quot;Accept&quot; &quot;*/*&quot; to iVoid<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Get HttpPutJson of oTexiHttp &quot;test.secretdomain.com&quot; &quot;/api/operation/tag/movement&quot; hoJson (&amp;iVoid) to hoRcvJson</code><hr />
</div></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?73311-Problem-with-cache-cJSONHttpTransfer-tested-in-DF-20-1-and-25-0</guid>
		</item>
		<item>
			<title>How to specify timeout</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73309-How-to-specify-timeout&amp;goto=newpost</link>
			<pubDate>Tue, 02 Jun 2026 22:59:36 GMT</pubDate>
			<description>Hi there, 
 
Anyone knows of a way to set the timeout for a request made via a cHttpTransfer object? 
 
-Sture</description>
			<content:encoded><![CDATA[<div>Hi there,<br />
<br />
Anyone knows of a way to set the timeout for a request made via a cHttpTransfer object?<br />
<br />
-Sture</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>Sture</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73309-How-to-specify-timeout</guid>
		</item>
		<item>
			<title>DD: Field_Current_Value returns wrong Time value</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73301-DD-Field_Current_Value-returns-wrong-Time-value&amp;goto=newpost</link>
			<pubDate>Tue, 02 Jun 2026 00:14:32 GMT</pubDate>
			<description>Hi DAW 
 
Using cWebService Object  
 
 
Code: 
--------- 
Time Activated_Time 
Get Field_Current_Value Field STMAS.AVAIL_TIME   to Activated_Time...</description>
			<content:encoded><![CDATA[<div>Hi DAW<br />
<br />
Using cWebService Object <br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">Time Activated_Time<br />
Get Field_Current_Value Field STMAS.AVAIL_TIME&nbsp;  to Activated_Time<br />
Move STMAS.AVAIL_TIME to Activated_Time</code><hr />
</div>The value of STMAS.AVAIL_TIME is '00:00:00' within the database<br />
<br />
If I use the DD buffer it returns a time value of 12:00:00 - wrong<br />
If I use the File buffer it returns a time value of 00:00:00 - correct<br />
<br />
On DF25 using DB2 CK</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>raveens</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73301-DD-Field_Current_Value-returns-wrong-Time-value</guid>
		</item>
		<item>
			<title>Studio Editor @SQL MultilineStrings  coloring issues</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73295-Studio-Editor-SQL-MultilineStrings-coloring-issues&amp;goto=newpost</link>
			<pubDate>Fri, 29 May 2026 19:25:35 GMT</pubDate>
			<description>If you have an open , unclosed ( parenthesis inside a multiline-string.    
 
things goes off, and coloring of df code gets affected.  
 
Attachment...</description>
			<content:encoded><![CDATA[<div>If you have an open , unclosed ( parenthesis inside a multiline-string.   <br />
<br />
things goes off, and coloring of df code gets affected. <br />
<br />
<a href="https://support.dataaccess.com/Forums/attachment.php?attachmentid=18199&amp;d=1780082652"  title="Name:  SQL_Multiline_String_Coloring_01.png
Views: 27
Size:  136.3 KB">SQL_Multiline_String_Coloring_01.png</a><br />
up to this point, everything is fine. <br />
<br />
now type &quot;(&quot;  and you get. <br />
<br />
<a href="https://support.dataaccess.com/Forums/attachment.php?attachmentid=18200&amp;d=1780082694"  title="Name:  SQL_Multiline_String_Coloring_02.png
Views: 23
Size:  193.6 KB">SQL_Multiline_String_Coloring_02.png</a><br />
<br />
SQL Coloring should not go outside the  multiline &quot;&quot;&quot; delimeters ..</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=18199&amp;d=1780082652">SQL_Multiline_String_Coloring_01.png</a> 
(136.3 KB)
</li><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=18200&amp;d=1780082694">SQL_Multiline_String_Coloring_02.png</a> 
(193.6 KB)
</li>
			</ul>
			</fieldset>
	

	

	</div>
]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>Samuel Pizarro</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73295-Studio-Editor-SQL-MultilineStrings-coloring-issues</guid>
		</item>
		<item>
			<title>DataFlex 2026 Beta 1 is now available!</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73277-DataFlex-2026-Beta-1-is-now-available!&amp;goto=newpost</link>
			<pubDate>Wed, 27 May 2026 13:02:31 GMT</pubDate>
			<description>We are pleased to announce the release of DataFlex 2026 Beta 1. Besides many bug fixes and improvements this incremental release features the...</description>
			<content:encoded><![CDATA[<div>We are pleased to announce the release of DataFlex 2026 Beta 1. Besides many bug fixes and improvements this incremental release features the following highlights:<br />
<ul><li style="">Improved export / import studio settings</li><li style="">Hybrid list</li><li style="">Packages info on the studio dashboard</li><li style="">New help system</li></ul><br />
<br />
The Major Features of DataFlex 2026 are:<br />
<ul><li style="">Package Manager</li><li style="">Redesigned Create New in the Studio</li><li style="">Dark Mode for Web Controls</li><li style="">Drill-down support for Web Modal Dialogs</li><li style="">Faster loading of Web Controls</li><li style="">Hardening of DataFlex Executables</li><li style="">Extended Dashboard Sample</li></ul><br />
<br />
Help us to improve our product by downloading &amp; testing this build and providing your feedback here on the forums!<br />
<ul><li style="">Check the What’s New course in the <a href="https://learning.dataflex.dev/courses/whats-new-in-dataflex-2026-pre-release/" target="_blank">DataFlex Learning Center</a> for a show and tell of these new features</li><li style="">Check the full list of changes in the What’s new section of the <a href="https://docs.dataaccess.com/dataflexhelp/#t=mergedProjects%2FWelcome%2FWhats_New_in_DataFlex_2026.htm" target="_blank">online help</a></li><li style="">Download DataFlex 2026 from the <a href="https://www.dataflex.dev/dataflexprerelease" target="_blank">Download Center<br />
</a></li><li style="">Provide your feedback on the <a href="https://support.dataaccess.com/Forums/forumdisplay.php?100-DataFlex-2026-Testing" target="_blank">DataFlex 2026 Testing Forum<br />
</a></li></ul><br />
<br />
Note that we plan to reset the package manager repository on <a href="https://packages.dataflex.dev/" target="_blank">https://packages.dataflex.dev/</a> later in this release cycle. This will allow everyone to test publishing of packages without these tests staying out there forever.<br />
<br />
Best regards,<br />
<br />
Your 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?73277-DataFlex-2026-Beta-1-is-now-available!</guid>
		</item>
		<item>
			<title>Dynamically Create a Struct Variable</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73265-Dynamically-Create-a-Struct-Variable&amp;goto=newpost</link>
			<pubDate>Thu, 21 May 2026 16:19:39 GMT</pubDate>
			<description>Hi All, 
Is there a way to create a Struct variable based on the struct type I might need while in a Procedure?   I get data into the procedure as...</description>
			<content:encoded><![CDATA[<div>Hi All,<br />
Is there a way to create a Struct variable based on the struct type I might need while in a Procedure?   I get data into the procedure as json but the data tells me what kind of struct I need to store it in.  I can't predict what json data I'm going to get, it could fit into 1 of many Struct types.  I want to then dynamically create the struct.  Is there a way to do this?<br />
<br />
It's easy to make a class such as an array <div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">Get Create (RefClass(Array)) to hoArray</code><hr />
</div>I would like to do this with a Struct.  This is just pseudo code to show what I'm trying to do:  <div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">Get CreateVariable (Type(&quot;tStructName&quot;)) to newVariable</code><hr />
</div>Thanks for any help.<br />
<br />
Henry</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>hsheldon</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73265-Dynamically-Create-a-Struct-Variable</guid>
		</item>
		<item>
			<title>Variant to Struct without knowing the Struct</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73260-Variant-to-Struct-without-knowing-the-Struct&amp;goto=newpost</link>
			<pubDate>Wed, 20 May 2026 02:58:56 GMT</pubDate>
			<description><![CDATA[Hi All, 
I have some JSON data that I want to pass to a function.  However, from within the program I don't know what exact struct type is in the...]]></description>
			<content:encoded><![CDATA[<div>Hi All,<br />
I have some JSON data that I want to pass to a function.  However, from within the program I don't know what exact struct type is in the function; I know the JSON will fit into the struct but not the parameter type.  <br />
<br />
I tried putting the JSON data into a Variant using JsonToDataType.  It didn't error out but when I pass the Variant as a parameter to the function with type of Struct, it loads more like a string than a struct.  <br />
<br />
I figure I could approach this problem one of two ways.  I can try to figure out the type of the parameter I'm passing to or I can go with a Variant and hope it would convert to the type it's being passed to.  Trying to go down the passing Variant route doesn't seem to be working when passing to a Struct.  It doesn't automatically convert it.<br />
<br />
Any suggestions?<br />
<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">{ &quot;name&quot;: &quot;John&quot;, &quot;details&quot;: { &quot;age&quot;: 31, &quot;female&quot;: false, &quot;male&quot;: true }, &quot;ratings&quot;: [ 8, 7.5, 8, 5.5 ] } in sParamJson<br />
<br />
Variant student<br />
Get ParseString of hoJson sParamJson to bSuccess<br />
If (bSuccess) Begin<br />
&nbsp; &nbsp; Get JsonToDataType of hoJson to student<br />
End<br />
<br />
Get TestFunc student to bSuccess<br />
<br />
Locals shows student json instead of struct&nbsp; in the function { &quot;name&quot;: &quot;John&quot;, &quot;details&quot;: { &quot;age&quot;: 31, &quot;female&quot;: false, &quot;male&quot;: true }, &quot;ratings&quot;: [ 8, 7.5, 8, 5.5 ] }</code><hr />
</div>Thank you for any help.<br />
<br />
Henry</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>hsheldon</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73260-Variant-to-Struct-without-knowing-the-Struct</guid>
		</item>
		<item>
			<title>Upgrading License Count 19.1 and 25.0</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73257-Upgrading-License-Count-19-1-and-25-0&amp;goto=newpost</link>
			<pubDate>Sun, 17 May 2026 11:51:14 GMT</pubDate>
			<description>I requested an upgraded client license count for our existing 19.1 programs from 35 users to 55 users. 
 
I asked the sales rep if the registration...</description>
			<content:encoded><![CDATA[<div>I requested an upgraded client license count for our existing 19.1 programs from 35 users to 55 users.<br />
<br />
I asked the sales rep if the registration codes will work for both 19.1 and 25.0. She said &quot;It should be backwards compatible to 19.1. If you have any issues, I can request a prior version code.&quot;<br />
<br />
I'm worried if I put the license codes on and there is an issue, my 19.1 systems will be inaccessible, which is not an option.<br />
<br />
Should I just copy the existing DFR file, and if the new registration codes don't work, copy the old DFR file back? Or, would it make sense to get &quot;the prior version code&quot; before attempting?<br />
<br />
Sorry if this is such a basic question, but I haven't messed with client registration in years, so I'm a little concerned I may break the system. <br />
<br />
Anyone with experience on licensing different versions with the same registration codes?<br />
<br />
Thanks,<br />
Leslie</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>Leslie L. Brennan</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73257-Upgrading-License-Count-19-1-and-25-0</guid>
		</item>
		<item>
			<title>cCjGrid  - Prevent dupplicate values being added/saved !?</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73254-cCjGrid-Prevent-dupplicate-values-being-added-saved-!&amp;goto=newpost</link>
			<pubDate>Fri, 15 May 2026 18:58:02 GMT</pubDate>
			<description>Manual, non-db-aware regular cjGrid 
 
Before I get deep on it..   
 
Anyone ever had to implement such validation in a cCjGrid ?   based in a single...</description>
			<content:encoded><![CDATA[<div>Manual, non-db-aware regular cjGrid<br />
<br />
Before I get deep on it..  <br />
<br />
Anyone ever had to implement such validation in a cCjGrid ?   based in a single key column.  <br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>Samuel Pizarro</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73254-cCjGrid-Prevent-dupplicate-values-being-added-saved-!</guid>
		</item>
		<item>
			<title>clear cookies after a Post request</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73244-clear-cookies-after-a-Post-request&amp;goto=newpost</link>
			<pubDate>Wed, 13 May 2026 07:41:23 GMT</pubDate>
			<description><![CDATA[Hi! 
 
We are login on to a service, that gives us a cookie with validation in it "Set-Cookie" JSESSION=.... 
 
When we are trying for the second...]]></description>
			<content:encoded><![CDATA[<div>Hi!<br />
<br />
We are login on to a service, that gives us a cookie with validation in it &quot;Set-Cookie&quot; JSESSION=....<br />
<br />
When we are trying for the second time, we do not get the &quot;Set-Cookie&quot;.<br />
<br />
I have tried to disable the cache of the http client.<br />
<br />
If i do this in postman i get a new Set-Cookie each time.<br />
<br />
Can you clear the cookies in someway before a new post?</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?73244-clear-cookies-after-a-Post-request</guid>
		</item>
		<item>
			<title>Get all responseheaders from a cHTTP</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73238-Get-all-responseheaders-from-a-cHTTP&amp;goto=newpost</link>
			<pubDate>Tue, 12 May 2026 14:27:00 GMT</pubDate>
			<description>Hi! 
 
Is it possible to get all the headers that is returned with a result in DF 25.0 
 
I am trying to trouble-shoot if and what headers that are...</description>
			<content:encoded><![CDATA[<div>Hi!<br />
<br />
Is it possible to get all the headers that is returned with a result in DF 25.0<br />
<br />
I am trying to trouble-shoot if and what headers that are sent back from the server.</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?73238-Get-all-responseheaders-from-a-cHTTP</guid>
		</item>
		<item>
			<title>Minor: 25, dbCheckBox doesnt take a label_textcolor</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73235-Minor-25-dbCheckBox-doesnt-take-a-label_textcolor&amp;goto=newpost</link>
			<pubDate>Sun, 10 May 2026 21:14:14 GMT</pubDate>
			<description>dbCheckBox doesnt take a label_textcolor 
 
 
Code: 
--------- 
                        Object Emprec1_Func_cashier is a dbCheckBox 
                ...</description>
			<content:encoded><![CDATA[<div>dbCheckBox doesnt take a label_textcolor<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Object Emprec1_Func_cashier is a dbCheckBox<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Entry_Item Emprec1.Func_cashier<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set Label_TextColor to clRed<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set Label to &quot;*Cashier (30,129)&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set size to 12 80<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Set Location to 62 95<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; End_Object</code><hr />
</div>it's within a dbgroup on a dbTabpage if that matters.<br />
<br />
At home so untested on other versions</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>DaveR</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73235-Minor-25-dbCheckBox-doesnt-take-a-label_textcolor</guid>
		</item>
		<item>
			<title>ccjGrid,  Force enter in EditMode in a given column</title>
			<link>https://support.dataaccess.com/Forums/showthread.php?73234-ccjGrid-Force-enter-in-EditMode-in-a-given-column&amp;goto=newpost</link>
			<pubDate>Fri, 08 May 2026 21:36:42 GMT</pubDate>
			<description>Adding rows to a cjGrid , programmatically.  after it has been initialized (load with initial data)  
 
The grid has only 1 column editable.  
 
I...</description>
			<content:encoded><![CDATA[<div>Adding rows to a cjGrid , programmatically.  after it has been initialized (load with initial data) <br />
<br />
The grid has only 1 column editable. <br />
<br />
I want the focus to be in that row, and column and the grid enters in editMode,  so the user just need to start typing.   <br />
<br />
I Tried this, but it doesn't work <br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; Send RequestFindColumnValue of oCountedGaylordsGrid iCol iGaylord False 0 <br />
&nbsp; &nbsp; Get MoveToColumnObject (oRMC_CountedGlrd_GaylordID) to bRet<br />
&nbsp; &nbsp; Send BeginEdit of oCountedGaylordsGrid</code><hr />
</div>the 2 previous methods works just fine.   <br />
<br />
after the RequestFind,  the SelectedRow is the desired one (checked in whatches) <br />
and<br />
the MoveToColumn  returns False (the good value, which means the move was not canceled )<br />
<br />
but beginEdit has no effect  !?  <br />
<br />
The focus remains in the object that initiates all of this,  (a button or another grid ).  <br />
<br />
What is missing ?</div>

]]></content:encoded>
			<category domain="https://support.dataaccess.com/Forums/forumdisplay.php?26-Windows-Applications">Windows Applications</category>
			<dc:creator>Samuel Pizarro</dc:creator>
			<guid isPermaLink="true">https://support.dataaccess.com/Forums/showthread.php?73234-ccjGrid-Force-enter-in-EditMode-in-a-given-column</guid>
		</item>
	</channel>
</rss>
