<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Windev Forum - WX-Products: Reports of malfunctions &amp; bugs</title>
        <description>Report malfunctions &amp; bugs in WinDev, WebDev and WinDev mobile</description>
        <link>https://www.wxforum.info/list.php?27593</link>
        <lastBuildDate>Tue, 14 Apr 2026 14:47:38 +0200</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,798342,798342#msg-798342</guid>
            <title>APOLLO skin Wx2025 (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,798342,798342#msg-798342</link>
            <description><![CDATA[ New Apollo skin template from 925 novities is not presented in Templates folder in 45g finall version.<br />
It can not be implemented because it does not exist :D<br />
<br />
And where are these .wdpalette files to change color palette in application ?]]></description>
            <dc:creator>IsmirB</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Sat, 07 Dec 2024 10:03:17 +0100</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,798098,798098#msg-798098</guid>
            <title>100% Height anchor not working in WinDev report (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,798098,798098#msg-798098</link>
            <description><![CDATA[ Hello everyone,<br />
<br />
I&#039;ve been having a bit of trouble aligning my &quot;END_BREAK1&quot; block to the bottom of my report, and am unsure if I&#039;m doing something wrong. In the attachments, you can see the signature area is far too high up on the page, and despite trying to set the entire block&#039;s height to 100% via the anchor property and anchor its sub-elements to the bottom of said block, this approach does not seem to have any effect whatsoever.<br />
<br />
I&#039;ve tried this without and without the page break after the block with no luck. The page footer and End of document elements are invisible if that would make any difference. Originally, I was conditionally toggling the visibility of the page footer element and using it to contain the signature area, but this had some strange effects of its own and it&#039;s much easier to separate elements with a break element.<br />
<br />
Does anyone have any suggestions, or is this just a legitimate bug?<br />
<br />
Thank you,<br />
Blake]]></description>
            <dc:creator>will</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Mon, 01 Jul 2024 15:01:40 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,797760,797760#msg-797760</guid>
            <title>Wx2024 class date problem (1 reply)</title>
            <link>https://www.wxforum.info/read.php?27593,797760,797760#msg-797760</link>
            <description><![CDATA[ Hello.<br />
If you define class and have member type date, you have a problem !!!!<br />
Example:<br />
<br />
cCustomerPaymet is a Class<br />
	m_nLineID		 is 8-byte int	&lt;MAPPING=LineID&gt;<br />
	m_dPaymentDate 	 is date		&lt;MAPPING=PaymentDate&gt;<br />
	m_cyAmount		 is currency	&lt;MAPPING=Amount&gt;<br />
        m_sCustomerName is string           &lt;MAPPING=CustomerName&gt;<br />
END<br />
<br />
Then you create instance of class<br />
<br />
clCustomerPayment is cCustomerPayment<br />
Info(clCustomerPayment.m_dPaymentDate)<br />
<br />
You will get today date. ex. 20240128<br />
If you define member date as string: m_dPaymentDate  is string	&lt;MAPPING=PaymentDate&gt;<br />
Then your class will be ok and your: m_dPaymentDate wil get empty string<br />
This is big problem if you use DataBinding over class members becaouse , instaed empty field you will get todays date(). :)]]></description>
            <dc:creator>IsmirB</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Mon, 27 May 2024 22:33:29 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,797749,797749#msg-797749</guid>
            <title>WX2024 on Window 11 Clipboard problem (1 reply)</title>
            <link>https://www.wxforum.info/read.php?27593,797749,797749#msg-797749</link>
            <description><![CDATA[ Do you have same problem?<br />
my OS: Windows 11. <br />
Notepad, Word,.. work normaly<br />
<br />
To Copy code: Ctrl+C, Ctr+Insert<br />
To Paste: Ctrl+V<br />
<br />
In Windev 2024 it does not work. In WebDev 2024 it work. :D<br />
Is there any new option for Clipboard or it is just another BUG. ?<br />
<br />
Link: <a href="https://streamable.com/69q1tb"  rel="nofollow">Video</a>]]></description>
            <dc:creator>IsmirB</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Thu, 25 Jan 2024 11:53:36 +0100</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,790762,790762#msg-790762</guid>
            <title>Rest service in  mobile 23 fault?? (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,790762,790762#msg-790762</link>
            <description><![CDATA[ If I try to get  a value from a website through a service I getr this Faoult on the content:type<br />
<br />
<br />
Code<br />
<br />
cMyRequest is httpRequest<br />
cMyResponse is httpResponse<br />
sL is string<br />
<br />
<br />
HTTPTimeOut( 1000 )		<br />
//IF HTTPRequest( &quot;[<a href="http://wdsoft.nl&quot"  rel="nofollow">wdsoft.nl&quot</a>]; ) THEN	<br />
	cMyRequest..URL = &quot;[<a href="http://google.nl&quot"  rel="nofollow">google.nl&quot</a>];<br />
	cMyResponse = HTTPSend( cMyRequest )<br />
	IF not ErrorOccurred THEN 			<br />
//		IF cMyResponse..ContentType = &quot;text/xml&quot; THEN<br />
			Trace(cMyResponse..Content,)<br />
			//				sL = texttoxml(cMyResponse..Content)<br />
			//				Trace( sL)<br />
	//		gsIPbyThread += sIP + TAB<br />
	////	END<br />
	END<br />
//END<br />
<br />
SL is ok <br />
Trace on that gives lotts of stange things <br />
<br />
<br />
Regards<br />
Allard]]></description>
            <dc:creator>Allard</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Sun, 16 Dec 2018 16:16:28 +0100</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,636684,636684#msg-636684</guid>
            <title>InfoWithTimeout() does not work properly in Fedora 18 (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,636684,636684#msg-636684</link>
            <description><![CDATA[ When InfoWithTimeout is Run, the first instance does not have thetimer running and it never times out.  You get the error in the debug window of:<br />
QTimer can only be used with threads started with QThread<br />
So it looks like a kde error.<br />
<br />
Once you press ENTER, the next instance works great.]]></description>
            <dc:creator>Peter Hite</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Fri, 01 Jul 2016 22:27:16 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,172913,172913#msg-172913</guid>
            <title>[WD18] &#039;store the column configuration&#039; not working and workaround (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,172913,172913#msg-172913</link>
            <description><![CDATA[ Hi.<br />
<br />
The option &#039;store the column configuration&#039; aviable on tables (inside description window), will not work.<br />
<br />
To make it work, you must also enable the window option &quot;store the size and position of the window&quot;.<br />
<br />
Well, to be more specific, its only required that you activate &quot;store the size and position of the window&quot; at least one time and execute the application. After that you can uncheck &quot;store the size and position of the window&quot; and the table store the column configuration correctly.<br />
<br />
Regards,<br />
José Antonio.]]></description>
            <dc:creator>Jose Antonio Garrido</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Tue, 10 Sep 2013 09:58:42 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,172909,172909#msg-172909</guid>
            <title>[WD18] Browsing Table &quot;Programmed browse&quot; same as &quot;automatic browse&quot; and workaround (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,172909,172909#msg-172909</link>
            <description><![CDATA[ Hi. I will explain it with a example. On a browsing table based on a query wich has a order by date clausule:<br />
<br />
---the bug---<br />
<br />
1. You check &quot;automatic browse&quot; search item is &quot;name&quot;<br />
test: the table is sorted by name<br />
<br />
1.test. Now you check &quot;programmed browse&quot;<br />
test: the table is sorted by name<br />
<br />
---the bug confirmed---<br />
<br />
2. You check &quot;automatic browse&quot; search item is &quot;surname&quot;<br />
test: the table is sorted by surname<br />
<br />
2.test. Now you check &quot;programmed browse&quot;<br />
test: the table is sorted by surname<br />
<br />
---workaround---<br />
<br />
3. Now you go to the &quot;modifier&quot; pane (on the optional panes), and just delete the value of &quot;browsed item&quot;<br />
<br />
3.test the table is sorted by date, as defined in the query.<br />
<br />
---<br />
<br />
Regards,<br />
José Antonio.]]></description>
            <dc:creator>Jose Antonio Garrido</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Tue, 10 Sep 2013 09:47:16 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,164920,164920#msg-164920</guid>
            <title>[WD18] PopupMenu problem (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,164920,164920#msg-164920</link>
            <description><![CDATA[ Hello All<br />
<br />
I have a habit of creating new windows by using SaveAs on an existing window.  This causes problems in V18 if the window has a popupmenu.<br />
<br />
The new window has the popup menus from the original window and in this case I modified two of them - I changed the menu name in the description panel and created new sub menu options.<br />
The problem is that when I first open the popup menu screen in the window it shows the orignal menu names and I can no longer access the third menu option to change it or delete it.<br />
Even though the window shows the wrong menu names, everythings works as expected and clicking on the wrong menu name brings up the correct menu.<br />
<br />
I gues the best thing to do if you have popup menus in a saveas window would be to try and delete them before doing anything else.<br />
<br />
Tech Support have been notified<br />
<br />
Regards<br />
Al]]></description>
            <dc:creator>Al</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Thu, 04 Jul 2013 19:06:04 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,164919,164919#msg-164919</guid>
            <title>[WD18] User Groupware not working in Manual mode (1 reply)</title>
            <link>https://www.wxforum.info/read.php?27593,164919,164919#msg-164919</link>
            <description><![CDATA[ Hello All<br />
<br />
I have an intermittent proble with the User Groupware in HF Classic<br />
If you use the new windows it seems to work ok but if you try and use the older style groupware windows then I have one project where they work fine and another where they don&#039;t.<br />
In both cases the projects have identical code in the project init leading up to the call to GPWLogin().  Both projects set the groupware to run in manual mode so it should run all the project code until it hits the gpwlogin() function.    In one project this does not happen and the groupware triggers as soon as the exe starts, so it is ignoring the setting of manual from the ide workshop section.<br />
<br />
Regards<br />
Al]]></description>
            <dc:creator>Al</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Thu, 04 Jul 2013 19:10:26 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,164506,164506#msg-164506</guid>
            <title>WD 18 container in treeviewtable() (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,164506,164506#msg-164506</link>
            <description><![CDATA[ Hi<br />
<br />
In windev version 18 it is not possible to add a container to a colum. You can add a countainer but you cannot add any controls in the container thus making is useless<br />
<br />
Regards<br />
<br />
Allard]]></description>
            <dc:creator>Allard</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Sun, 30 Jun 2013 23:29:38 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,164086,164086#msg-164086</guid>
            <title>[WD18] The filter option on Check box columns in tables does not work (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,164086,164086#msg-164086</link>
            <description><![CDATA[ Hello All<br />
<br />
Another long standing bug since tables were introduced.<br />
The check box column offers a &quot;magnify&quot; option and you can tick it.    The table ignores the setting and no filter option is offered.<br />
<br />
Reported to Tech Support years ago.<br />
<br />
Regards<br />
Al]]></description>
            <dc:creator>Al</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Thu, 27 Jun 2013 12:29:04 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,164084,164084#msg-164084</guid>
            <title>[WD18] Exit code on check box table columns does not execute (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,164084,164084#msg-164084</link>
            <description><![CDATA[ Hello All<br />
<br />
I have given up trying to get this one fixed as it has been around since the tables were introduced.<br />
Any code in the exit event of a check box column in a memory table is not executed when the user click in the column and move on.  The work around is to put the code in the modify event and it will execute.<br />
<br />
Reported to Tech Support years ago.<br />
<br />
Regards<br />
Al]]></description>
            <dc:creator>Al</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Thu, 27 Jun 2013 12:26:25 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,164082,164082#msg-164082</guid>
            <title>[WD18]  SaveAs overwrites window operating system name (2 replies)</title>
            <link>https://www.wxforum.info/read.php?27593,164082,164082#msg-164082</link>
            <description><![CDATA[ Hello All<br />
<br />
If you do &quot;SaveAs&quot; on a window there are two issues.<br />
<br />
First, the dialog refers to backing up an element.    I am not backing up an element, I am saving a copy of the existing window under another name.    The use of the term &quot;Element&quot; has been pushed into V18 and it is misleading and lazy programming by PCSoft.   It is all very well for them to code in the abstract, but when the function is called it must recognise how it is being used and show the appropriate function names.  A small point, but I believe indicative of lazy coding practices that are currently spilling over into the increased number of bugs that have plagued the last 2 versions.<br />
<br />
Second, if I change the Title of the window, this also overwrites my window name.  This is completely wrong in so many ways.   My development language has no right to change my program names.    Perhaps this is a fundamental misunderstanding between French and English languages, but the TITLE is the name displayed to the user and is is no way the same as the name I give the window in terms of my code.   I use prefixes on my window names to help me group them and for quick identification. <br />
<br />
Reported to Tech Support June 2013<br />
<br />
Regards<br />
Al]]></description>
            <dc:creator>Al</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Thu, 27 Jun 2013 16:25:06 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,164080,164080#msg-164080</guid>
            <title>[WD18] New report adds &quot;English&quot; as a language (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,164080,164080#msg-164080</link>
            <description><![CDATA[ Hello <br />
<br />
I do NOT have &quot;English&quot; as a langauge in my projects<br />
When I create a new report Windev adds &quot;English&quot; as a language which means I have to delete it.<br />
<br />
Reported to Tech Support June 2013<br />
<br />
Regards<br />
Al]]></description>
            <dc:creator>Al</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Thu, 27 Jun 2013 12:13:10 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,161532,161532#msg-161532</guid>
            <title>[WB16] - Groupware a multiple HF C/S ddbb (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,161532,161532#msg-161532</link>
            <description><![CDATA[ Hello:<br />
I am developing an application that will be sold as SaaS. At the moment I do not want to use the SaaS management system of Webdev, because I do not want to control prices, occupations, etc.. Just I want each customer be able to connect to their database where users files are for each database.<br />
<br />
The problem I have with Groupware management and database HF C / S (Client / Server) is in the login page because I must ask the customer (or database) , the user  and password .<br />
<br />
When the &quot;Login&quot; page is activated Groupware does not yet know what database  will connect. After fill the three data (customer, user and password) I find in other database the name of the database to connect and connect to it. User tables are independent for each bbdd.<br />
<br />
Well, so far the background, now explain the problem:<br />
<br />
The &quot;gpwOpen ()&quot; opens the login page and then requesting customer, user and password, but once I use it I cannot change the  database which acts groupware. According to the manual I have to use &quot;gpwOpenConnection&quot; to initialize the connection parameters and then make gpwOpen (), but if I call for the second time  gpwOpen, again requests the username and password, so that I get a loop .<br />
<br />
I have tried not to use &quot;gpwOpen&quot; and instead use &quot;gpwLogin&quot; but that function does not find the user if before I have not call gpwOpen. It&#039;s like &quot;gpwOpen&quot; were compulsory.<br />
I want ask the tree data: customer, user and password and that user groupware connect to the correct database.<br />
<br />
I do not know if I could explain properly.<br />
Did anyone have a similar experience and could help me?<br />
Thank you very much in advance.<br />
<br />
Victor Diego<br />
Santander-Spain]]></description>
            <dc:creator>Victor Diego</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Sat, 08 Jun 2013 19:22:59 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,158726,158726#msg-158726</guid>
            <title>[Wx 18 US] Online Help - Annotation Function (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,158726,158726#msg-158726</link>
            <description><![CDATA[ As of May 18th, 2013 the annotation function in the online Help system is still not working. The conditions for using the annotation system make clear that PC Soft can switch this system off at any time, delete all or single annotations at their disposal. Currently, all pages of the Help system bear a warning that Help will be updated / extended soon: <b>Warning:</b> Content of this document will be soon extended.<br />
<br />
Regards,<br />
Guenter]]></description>
            <dc:creator>GuenterP</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Sat, 18 May 2013 07:50:45 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,122872,122872#msg-122872</guid>
            <title>hReadSeekFirst bug in Webdev(16) PHP/MySQL native (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,122872,122872#msg-122872</link>
            <description><![CDATA[ Hi,<br />
<br />
When using this syntax in Webdev:<br />
<br />
IF hReadSeekFirst THEN .... ELSE ......<br />
<br />
In Webdev PHP/MySQL HreadSeekFirst acts as HreadSeek: <br />
It returns True and returns the next record if not found. <br />
However: hFound()=False<br />
<br />
Workaround: use if hFound() instead.<br />
<br />
Reply form PCsoft: the problem will be fixed in the next version. For now, use the workaround<br />
Note: the problem occurs only for PHP with MySQL native access.<br />
<br />
Regards,<br />
Piet]]></description>
            <dc:creator>Piet van Zanten</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Fri, 03 Feb 2012 11:46:19 +0100</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,122605,122605#msg-122605</guid>
            <title>Error when sending mail using variable (2 replies)</title>
            <link>https://www.wxforum.info/read.php?27593,122605,122605#msg-122605</link>
            <description><![CDATA[ Whenever I try to send an email using an email variable, I get the error  &quot;unable to send message without specifying sender&quot;.<br />
This problem does not occur when using the email structure, but I need the variable because I need to pass it further around.<br />
This is my current code, in which I clearly specify the sender.<br />
<pre class="bbcode">
PROCEDURE loc_SendMail()
LOCAL
	recipients 		is array of string
	MyEmail			is Email
	
IF NOT EmailStartSMTPSession(&quot;HelpdeskSend&quot;,&quot;&quot;,&quot;relay.skynet.be&quot;) THEN
	RESULT Null
END
EDT_Recipient=Replace(EDT_Recipient,&quot;;&quot;,&quot;,&quot;)
StringToArray(EDT_Recipient,recipients,&quot;,&quot;)
FOR EACH sRecip OF recipients
	ArrayAdd(MyEmail.Recipient,sRecip)
END
MyEmail.Subject=EDT_Subject
MyEmail.HTML=EDT_Content
FOR EACH ROW OF LOOP_Attachments
	EmailLoadAttachment(MyEmail,LOOP_Attachments.ATT_AttPath)
	Debug(&quot;Added mail attachment: &quot;+LOOP_Attachments.ATT_AttPath)
END
MyEmail..Sender=&quot;Helpdesk &lt;helpdesk@domain.com&gt;&quot;
MyEmail..SenderAddress=&quot;helpdesk@domain.com&quot;
IF ArrayCount(MyEmail.Recipient)&gt;0 THEN
	IF NOT EmailSendMessage(&quot;HelpdeskSend&quot;,MyEmail,True) THEN
		Debug(&quot;&lt;WIN_SendMail&gt;&quot;+&quot;Mail kon niet verzonden worden&quot;+ErrorInfo(errFullDetails))
	ELSE
		Debug(&quot;&lt;WIN_SendMail&gt;&quot;+&quot;Mail met succes verzonden&quot;)
	END
END
EmailCloseSession(&quot;ReportSend&quot;)
RESULT MyEmail
</pre>]]></description>
            <dc:creator>Tom Gyssels</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Sun, 30 Jun 2013 23:34:32 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,117063,117063#msg-117063</guid>
            <title>[WD12] Memory Leak (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,117063,117063#msg-117063</link>
            <description><![CDATA[ Hello guys,<br />
<br />
I&#039;ve found the following memory leak issue using Windev 12:<br />
<br />
When creating WDL which will be used in Windows Service, you have to define three functions : &quot;InitService&quot;, &quot;Service&quot;, &quot;FinService&quot;;<br />
<br />
This example produces memory leak : <br />
<br />
//------------------------------START OF EXAMPLE-------------------------<br />
<br />
PROCEDURE Service()<br />
	IF gbCurrentService THEN RETURN<br />
	gbCurrentService = True<br />
	<br />
	IF gbInitSuccess THEN<br />
		vPerformArchSearch()<br />
	END<br />
	<br />
	gbCurrentService = False<br />
	gbFirstStart = False<br />
END<br />
<br />
PROCEDURE vPerformArchSearch( )<br />
<br />
	HReadFirst(Backups)<br />
	WHILE NOT HOut(Backups)<br />
	        aaExt is associative array of string<br />
	        aaPrefixes is associative array of string<br />
	        aaFilters is associative array of string<br />
 <br />
	        aaPrefixes[Upper(&quot;DO&quot;)] = Upper(&quot;DO&quot;)<br />
                aaPrefixes[Upper(&quot;DO1&quot;)] = Upper(&quot;DO1&quot;)<br />
                aaPrefixes[Upper(&quot;DO1&quot;)] = Upper(&quot;DO1&quot;)<br />
<br />
	        aaExt[Upper(&quot;DO&quot;)] = Upper(&quot;DO&quot;)<br />
                aaExt[Upper(&quot;DO1&quot;)] = Upper(&quot;DO1&quot;)<br />
                aaExt[Upper(&quot;DO1&quot;)] = Upper(&quot;DO1&quot;)<br />
<br />
	        aaFilters[Upper(&quot;DO&quot;)] = Upper(&quot;DO&quot;)<br />
                aaFilters[Upper(&quot;DO1&quot;)] = Upper(&quot;DO1&quot;)<br />
                aaFilters[Upper(&quot;DO1&quot;)] = Upper(&quot;DO1&quot;)<br />
<br />
                ....... // Other code<br />
<br />
		HReadNext(Backups)<br />
	END<br />
END<br />
<br />
//------------------------------END OF EXAMPLE----------------------------<br />
<br />
It looks like the memory of the three associative array variables are not cleaned at the beginning of each loop!<br />
<br />
The work around is the following:<br />
<br />
//------------------------------START OF WORK AROUND EXAMPLE------<br />
<br />
PROCEDURE vPerformArchSearch( )<br />
	aaExt is associative array of string<br />
	aaPrefixes is associative array of string<br />
	aaFilters is associative array of string<br />
<br />
	HReadFirst(Backups)<br />
	WHILE NOT HOut(Backups)<br />
                ArrayDeleteAll(aaExt)<br />
                ArrayDeleteAll(aaPrefixes)<br />
                ArrayDeleteAll(aaFilters)<br />
 <br />
	        aaPrefixes[Upper(&quot;DO&quot;)] = Upper(&quot;DO&quot;)<br />
                aaPrefixes[Upper(&quot;DO1&quot;)] = Upper(&quot;DO1&quot;)<br />
                aaPrefixes[Upper(&quot;DO1&quot;)] = Upper(&quot;DO1&quot;)<br />
<br />
	        aaExt[Upper(&quot;DO&quot;)] = Upper(&quot;DO&quot;)<br />
                aaExt[Upper(&quot;DO1&quot;)] = Upper(&quot;DO1&quot;)<br />
                aaExt[Upper(&quot;DO1&quot;)] = Upper(&quot;DO1&quot;)<br />
<br />
	        aaFilters[Upper(&quot;DO&quot;)] = Upper(&quot;DO&quot;)<br />
                aaFilters[Upper(&quot;DO1&quot;)] = Upper(&quot;DO1&quot;)<br />
                aaFilters[Upper(&quot;DO1&quot;)] = Upper(&quot;DO1&quot;)<br />
<br />
                ....... // Other code<br />
<br />
		HReadNext(Backups)<br />
	END<br />
END<br />
<br />
//------------------------------END OF WORK AROUND EXAMPLE---------<br />
<br />
Please try this code in WD14, WD15, WD16 and see the results!<br />
<br />
Best regards,<br />
Hristo Dimitrov]]></description>
            <dc:creator>Hristo Dimitrov</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Tue, 29 Nov 2011 10:45:14 +0100</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,116715,116715#msg-116715</guid>
            <title>[WD12] HyperFileSQL CRASH (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,116715,116715#msg-116715</link>
            <description><![CDATA[ <br />
Hello guys,<br />
<br />
I have the following issue using HyperFileSQL ver 12 :<br />
<br />
HyperFileSQL is running on Windows Server 2008 Standard 64bit on pure Hardware (NO VMs)<br />
<br />
Once every 5-7 days HyperFileSQL crashes and restarts itself with the following message in &quot;Windows Logs View&quot; : <br />
<br />
&quot;Faulting application Manta64.exe, version 12.0.2.600, time stamp 0x4810d7fc, faulting module unknown, version 0.0.0.0, time stamp 0x00000000, exception code 0xc0000005, fault offset 0x00000000202444cd, process id 0xa50, application start time 0x01cca8216d7f34b0.&quot;<br />
<br />
Has anybody experience this ? <br />
<br />
I also notices that if you set HyperFileSQL to use only, lets say, 4GB of memory, it always discard this and continue to consume more and more memory, until it CRASH!<br />
<br />
Best regards,<br />
Hristo Dimitrov]]></description>
            <dc:creator>Hristo Dimitrov</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Fri, 25 Nov 2011 11:26:28 +0100</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,109288,109288#msg-109288</guid>
            <title>[WD16]  Disappearing scroll bars (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,109288,109288#msg-109288</link>
            <description><![CDATA[ Hello All<br />
<br />
The vertical scroll bars come and go from the project explorer pane<br />
They also do the same in the code windows.<br />
I don&#039;t believe this is a hardware or graphics card issue because it happens on a variety of work stations and has been a problem for some years now.    <br />
In the code windows you can get them back by stretching the window but the only way to get them back in the project explorer is to close and restart Windev.<br />
<br />
Regards<br />
Al]]></description>
            <dc:creator>Al</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Sun, 21 Aug 2011 04:46:25 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,108531,108531#msg-108531</guid>
            <title>WB16: Can&#039;t read TablePosition in Ajax table (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,108531,108531#msg-108531</link>
            <description><![CDATA[ Setting the TablePosition in an Ajax table works OK.<br />
But reading the TablePosition does not. <br />
This code does not work in an Ajax table.<br />
iMyTablePosition is int<br />
iMyTablePosition = TablePosition(MyTable)<br />
<br />
PCsoft&#039;s response is:<br />
&quot;I&#039;m replicating the problem here and it has been forwarded to our developers. Please use the following reference if you contact me on the same subject #72 886/442681.<br />
<br />
Strangely TablePosition() is working when the AWP mode is used. This can be a workaround for you.&quot;]]></description>
            <dc:creator>Michael Q</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Tue, 09 Aug 2011 12:24:13 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,108146,108146#msg-108146</guid>
            <title>Bug with Radiobuttons (3 replies)</title>
            <link>https://www.wxforum.info/read.php?27593,108146,108146#msg-108146</link>
            <description><![CDATA[ WinDev 16<br />
RAD generated data entry window for a non-relational database<br />
Five choices for the radio buttons<br />
Display mode = STANDARD<br />
<br />
Why won&#039;t the TAB key select the radio buttons on the data entry screen? The cursor will jump OVER the radio buttons to select the next data entry field located directly under the radio buttons. If I use the TAB key to cycle through all of the data screen elements the radio buttons are NEVER selected.]]></description>
            <dc:creator>Scott</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Tue, 09 Aug 2011 01:14:33 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,107223,107223#msg-107223</guid>
            <title>Forward Compatability (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,107223,107223#msg-107223</link>
            <description><![CDATA[ Hi,<br />
<br />
Not really a bug, but something that does need addressing, at least IMHO.<br />
<br />
Why is it that if I have an application running on WM14 framework and then build an application in WM16, I either have to update the WM14 app to WM16 or I have to have both Frameworks running on the Mobile Device? Why can&#039;t the V14 application run on the V16 Framework? <br />
<br />
Its a real pain in the backside to have to update every application, and it&#039;s not something I&#039;m very keen on doing, being somewhat cautious of PCSoft and &#039;new&#039; features !<br />
<br />
Regards<br />
<br />
John]]></description>
            <dc:creator>John</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Thu, 21 Jul 2011 23:15:25 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,107214,107214#msg-107214</guid>
            <title>Report Print Preview - one button displays French tooltip text in English language application (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,107214,107214#msg-107214</link>
            <description><![CDATA[ In my compiled WinDev 16 application, when I display one of the RAD-generated reports in the print preview screen, there is one button in the print preview screen whose mouseover tooltip displays in French instead of English (I live in the U.S., and chose English as the default language). <br />
<br />
The icon is displayed in the top row, fourth icon from the left - the icon has the letters &quot;X&quot; and &quot;Z&quot; with a smaller icon of a 1.44MB floppy disk displayed. The mouseover tooltip says: <br />
<br />
Enregister un Duplicata <br />
<br />
All the rest of the mouseover tooltips for the print preview screen displayed in English. <br />
<br />
How can I fix this English / French language problem?<br />
<br />
]]></description>
            <dc:creator>scott</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Thu, 21 Jul 2011 20:52:08 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,107209,107209#msg-107209</guid>
            <title>Debugger still stops at point where breakpoint was (1 reply)</title>
            <link>https://www.wxforum.info/read.php?27593,107209,107209#msg-107209</link>
            <description><![CDATA[ If breakpoints are set in the code and then subsequently removed, the debugger still stops at the places where the breakpoint was. Highly annoying !!]]></description>
            <dc:creator>John</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Sun, 24 Jun 2012 12:46:01 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,106725,106725#msg-106725</guid>
            <title>InSimulatorMode - WDM (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,106725,106725#msg-106725</link>
            <description><![CDATA[ If a WinDev Mobile app has InSimulatorMode commands in the code, at random intervals when running the code the Mobile will crash out with a GPF when it gets to the InSimulatorMode command. The program can run for several days without a problem but then suddenly crash out upon hitting said command. Also happens with the SIP commands too. Happens on WDM 14,15 and 16 on multiple devices.]]></description>
            <dc:creator>John</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Thu, 14 Jul 2011 19:26:18 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,106724,106724#msg-106724</guid>
            <title>WD Mobile Debug on Phone (no replies)</title>
            <link>https://www.wxforum.info/read.php?27593,106724,106724#msg-106724</link>
            <description><![CDATA[ When attempting to debug on a PDA, if the PDA has any less then 60MB free of RAM then the debugger crashes out. Tried this on about 3 different types of mobile device, using WDM 14,15 and 16. With all of them, unless the phone is practically brand new and got hardly anything installed on it, the debugger will refuse to run on the phone. ]]></description>
            <dc:creator>John</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Thu, 14 Jul 2011 19:23:30 +0200</pubDate>
        </item>
        <item>
            <guid>https://www.wxforum.info/read.php?27593,106518,106518#msg-106518</guid>
            <title>[WD16] Can&#039;t drag and drop windows in the explorer pane (2 replies)</title>
            <link>https://www.wxforum.info/read.php?27593,106518,106518#msg-106518</link>
            <description><![CDATA[ Hello All<br />
<br />
If you have a large number of folders inside the &quot;Windows&quot; folder in the Explorer Pane it is impossible to reliably move a window between folders because the target folder moves away as you move the mouse closer to it.<br />
<br />
Regards<br />
Al]]></description>
            <dc:creator>Al</dc:creator>
            <category>WX-Products: Reports of malfunctions &amp; bugs</category>
            <pubDate>Fri, 24 Feb 2012 22:54:45 +0100</pubDate>
        </item>
    </channel>
</rss>
