<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/win32libex/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/win32libex/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Tue, 28 Jul 2009 20:45:05 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/win32libex/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>deleteItem ( list, position ) reports false failure</title><link>https://sourceforge.net/p/win32libex/bugs/14/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;When a sorted list contains only one item, deleteItem(list, 1) does delete the item, but returns 0 (failure).&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Louis Puster</dc:creator><pubDate>Tue, 28 Jul 2009 20:45:05 -0000</pubDate><guid>https://sourceforge.nete09e5ee198f8f05e57d50baf3902e1d7cc1f4dc5</guid></item><item><title>w32forms include missing</title><link>https://sourceforge.net/p/win32libex/bugs/13/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;w32forms should include win32lib.ew.  In eu4, missing this can cause issues when users have globals that have the same name as a win32lib global, resulting in unresolved symbols in w32forms (other files in win32lib may have this same problem).&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;See Andrew Katz' "Magic Designer" in the rapideuphoria archives for an example: &lt;a href="http://www.rapideuphoria.com/magicdesigner_v0950.zip" rel="nofollow"&gt;http://www.rapideuphoria.com/magicdesigner_v0950.zip&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Matt Lewis</dc:creator><pubDate>Thu, 29 Jan 2009 12:54:01 -0000</pubDate><guid>https://sourceforge.net4fe34757456bb46ba71508a9b4f25b59be789812</guid></item><item><title>getPrinter () stopped working in 70</title><link>https://sourceforge.net/p/win32libex/bugs/12/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;getPrinter() works fine in win32lib 60, but no longer works in win32lib 70.  Variable not set.  Went back to 60.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 19 Feb 2008 05:58:07 -0000</pubDate><guid>https://sourceforge.net6008ebc97baa8095920470778306fe4bb228e4bc</guid></item><item><title>cut/paste doesn\'t support large files</title><link>https://sourceforge.net/p/win32libex/bugs/11/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;include Win32lib.ew&lt;br /&gt;
without warning&lt;/p&gt;
&lt;p&gt;constant win = createEx(Window, "Demo", 0, 20, 20, 400, 280, 0, 0)&lt;br /&gt;
constant edit = createEx(RichEdit, "", win, 0, 0, w32Edge, w32Edge, 0, 0)&lt;br /&gt;
constant Menu_Edit           = createEx(Menu,     "Menu",        win,       0, 1, 0, 0, 0, 0)&lt;br /&gt;
constant MenuItem_Cut        = createEx(MenuItem, "Cu&amp;amp;t",        Menu_Edit, 0, 2, 0, 0, 0, 0)&lt;br /&gt;
constant MenuItem_Paste      = createEx(MenuItem, "&amp;amp;Paste",      Menu_Edit, 0, 3, 0, 0, 0, 0)&lt;br /&gt;
constant MenuItem_Delete     = createEx(MenuItem, "&amp;amp;Delete",     Menu_Edit, 0, 4, 0, 0, 0, 0)&lt;br /&gt;
constant MenuItem_Select_All = createEx(MenuItem, "Select&amp;amp;All",  Menu_Edit, 0, 5, 0, 0, 0, 0)&lt;br /&gt;
--===================================&lt;br /&gt;
--Cut&lt;br /&gt;
procedure Cut(atom self, atom event, sequence params)&lt;br /&gt;
cut(edit)&lt;br /&gt;
end procedure&lt;br /&gt;
setHandler(MenuItem_Cut, w32HClick, routine_id("Cut"))&lt;br /&gt;
--===================================&lt;br /&gt;
--Paste&lt;br /&gt;
procedure Paste(atom self, atom event, sequence params)&lt;br /&gt;
paste(edit)&lt;br /&gt;
end procedure&lt;br /&gt;
setHandler(MenuItem_Paste, w32HClick, routine_id("Paste"))&lt;br /&gt;
--===================================&lt;br /&gt;
--Delete&lt;br /&gt;
procedure Delete(atom self, atom event, sequence params)&lt;br /&gt;
clear(edit)&lt;br /&gt;
end procedure&lt;br /&gt;
setHandler(MenuItem_Delete, w32HClick, routine_id("Delete"))&lt;br /&gt;
--===================================&lt;br /&gt;
--Select All&lt;br /&gt;
procedure Select_All(atom self, atom event, sequence params)&lt;br /&gt;
setIndex(edit, {1, 0})&lt;br /&gt;
end procedure&lt;br /&gt;
setHandler(MenuItem_Select_All, w32HClick, routine_id("Select_All"))&lt;br /&gt;
--===================================&lt;br /&gt;
--constant n = 32766--upper limit for successful&lt;br /&gt;
--select all, cut and paste ((2^15)-2)&lt;br /&gt;
constant n = 32767--crashes on XP&lt;br /&gt;
--constant n = 10000000--no limit where&lt;br /&gt;
--first character is deleted before each&lt;br /&gt;
--(select all, cut and paste) event&lt;br /&gt;
--Wasn't a problem with v60.6&lt;br /&gt;
sequence buffer&lt;br /&gt;
buffer = repeat('a', n)&lt;br /&gt;
setText(edit, buffer)&lt;/p&gt;
&lt;p&gt;WinMain(win, Normal)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 24 Oct 2007 21:50:14 -0000</pubDate><guid>https://sourceforge.netc17d9f2ffe203e8f5692620b522bb1d2d29b0ca2</guid></item><item><title>getFontDialog/Richedit</title><link>https://sourceforge.net/p/win32libex/bugs/10/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;"neither the underline nor strikeout options work from the font dialog windows"  Test with demo RichEdit.exw.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 09 Oct 2007 12:57:03 -0000</pubDate><guid>https://sourceforge.netd9204740d661bf43f0b1a2322df8fe0327efdd14</guid></item><item><title>Latest Win32Lib+IDE Not Declaring a Button</title><link>https://sourceforge.net/p/win32libex/bugs/9/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I've got a prj file that runs fine with IDE 0.19.1 and Win32Lib 0.60.6, but the IDE 1.0.0 and Win32Lib 0.70.1 combo does not declare a button variable.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Derek Parnell</dc:creator><pubDate>Wed, 12 Sep 2007 22:26:30 -0000</pubDate><guid>https://sourceforge.netd9dd995b5b8493e1bf3f37991c6cdbe3ffe4fd33</guid></item><item><title>using a font with Printer </title><link>https://sourceforge.net/p/win32libex/bugs/8/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;If a font is not entered printing is in a default font and is OK but not when entering a font. The output uses HUGE characters.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Derek Parnell</dc:creator><pubDate>Wed, 12 Sep 2007 22:25:04 -0000</pubDate><guid>https://sourceforge.netb23abe419271f8ef3716016f6097c1b5c8b47bb2</guid></item><item><title>Error with setBackColor / drawRectangle</title><link>https://sourceforge.net/p/win32libex/bugs/7/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I have found a problem in win32lib 0.55.1, the &lt;br /&gt;
attached code will cause an error.&lt;br /&gt;
This did not happen with win32lib 0.53.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Sun, 04 Mar 2001 01:57:12 -0000</pubDate><guid>https://sourceforge.net6b02cee4bebf96357e7a89bb7ce1d89d21830fa9</guid></item><item><title>create( Window) style bug</title><link>https://sourceforge.net/p/win32libex/bugs/6/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;This is an apparent bug in the 0.54 &amp;amp;quot;Bleeding Edge&amp;amp;quot; version.&lt;/p&gt;
&lt;p&gt;The follow code:&lt;br /&gt;
--------------------------------------------------------&lt;br /&gt;
include Win32Lib.ew&lt;br /&gt;
atom wdwStyle&lt;br /&gt;
wdwStyle = or_all( { WS_OVERLAPPED, WS_CAPTION,&lt;br /&gt;
WS_SYSMENU, WS_THICKFRAME } )   &lt;br /&gt;
constant Window1 = create( Window, &amp;amp;quot;MyWin&amp;amp;quot;, 0, &lt;br /&gt;
Default, Default, 300, 150, wdwStyle)&lt;br /&gt;
WinMain( Window1, Normal)&lt;br /&gt;
--------------------------------------------------------&lt;br /&gt;
does not create a window without a Maximize and Minimize button, as expected; it is a &amp;amp;quot;regular&amp;amp;quot; window.  Confirmed that this code does remove those two controls under version 0.50.&lt;/p&gt;
&lt;p&gt;Cool product, though!&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 26 Jan 2001 21:59:32 -0000</pubDate><guid>https://sourceforge.netba65fffa676349c86cd06a514a34d256c649a9a3</guid></item><item><title>Combobox Tab Stop</title><link>https://sourceforge.net/p/win32libex/bugs/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;After attempts,&lt;/p&gt;
&lt;p&gt;I've found that, in a childwindow after calling&lt;br /&gt;
isVisible to display several Combobox's that&lt;br /&gt;
tab stop does not work.....&lt;/p&gt;
&lt;p&gt;Under any Version of win32lib....&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">HWO</dc:creator><pubDate>Sat, 30 Sep 2000 18:44:34 -0000</pubDate><guid>https://sourceforge.net341f4c630cdccaccd920f6853d01119fa6ab9fa8</guid></item></channel></rss>