<?xml version='1.0' encoding='ISO-8859-1'?>
     <rss version='2.0'>
      <channel>
       <title>largefile.lha utility/text - Comments</title>
       <link>https://os4depot.net/?function=comments&amp;file=utility/text/largefile.lha</link>
       <description>A text viewer for LARGE files (500MB+)</description>
       <language>en-gb</language>
       <lastBuildDate>Wed, 29 Apr 2026 13:47:28 +0200</lastBuildDate>
       <image>
        <title>OS4Depot.net</title>
        <url>https://os4depot.net/images/rss.gif</url>
        <link>https://os4depot.net</link>
       </image><item> <title>alfkil (93.160.247.156) @ 23 Dec 2012, 12:08.49</title> <link>https://os4depot.net/?function=comments&amp;file=utility/text/largefile.lha</link> <description>&lt;STRONG&gt;By:&lt;/STRONG&gt;&amp;nbsp;alfkil (93.160.247.156)&lt;BR /&gt;&lt;pre&gt;@samo 
The scrollbar thing you mention is not a bug. What the scrollbar does is it tells you which block you are currently in. If you have a blocksize of 4096 (the default), the block will most likely be larger than the window. The mousewheel will scroll inside the block, but will not change the block position (no new data is loaded). 
@xenic 
Thanks for testing, and yes you are right I should use DOS to convert paths. I will make an update after Christmas. 
&lt;/pre&gt;</description> <guid isPermaLink='false'>1356217729</guid> <pubDate>Sun, 23 Dec 2012 00:08:49 +0100</pubDate></item><item> <title>alfkil (93.160.247.156) @ 23 Dec 2012, 12:08.22</title> <link>https://os4depot.net/?function=comments&amp;file=utility/text/largefile.lha</link> <description>&lt;STRONG&gt;By:&lt;/STRONG&gt;&amp;nbsp;alfkil (93.160.247.156)&lt;BR /&gt;&lt;pre&gt;@samo 
The scrollbar thing you mention is not a bug. What the scrollbar does is it tells you which block you are currently in. If you have a blocksize of 4096 (the default), the block will most likely be larger than the window. The mousewheel will scroll inside the block, but will not change the block position (no new data is loaded). 
@xenic 
Thanks for testing, and yes you are right I should use DOS to convert paths. I will make an update after Christmas. 
&lt;/pre&gt;</description> <guid isPermaLink='false'>1356217702</guid> <pubDate>Sun, 23 Dec 2012 00:08:22 +0100</pubDate></item><item> <title>samo79 (93.144.66.179) @ 16 Dec 2012, 07:59.41</title> <link>https://os4depot.net/?function=comments&amp;file=utility/text/largefile.lha</link> <description>&lt;STRONG&gt;By:&lt;/STRONG&gt;&amp;nbsp;samo79 (93.144.66.179)&lt;BR /&gt;&lt;pre&gt;It seems that the scrollbar will not follow the &quot;real&quot; scroll, expecially if you use the mouse whell 
 
Also would be good to add a sort of drag&amp;drop feature --&gt; drop text file into the program to open it automatically :-) 
&lt;/pre&gt;</description> <guid isPermaLink='false'>1355684381</guid> <pubDate>Sun, 16 Dec 2012 19:59:41 +0100</pubDate></item><item> <title>xenic (71.58.155.85) @ 16 Dec 2012, 05:37.25</title> <link>https://os4depot.net/?function=comments&amp;file=utility/text/largefile.lha</link> <description>&lt;STRONG&gt;By:&lt;/STRONG&gt;&amp;nbsp;xenic (71.58.155.85)&lt;BR /&gt;&lt;pre&gt;v0.2: I am busy with my own projects and don't really have time for beta testing. However, I did D/L you new version and here is what I noticed: 
 
Your file loading still doesn't work in all cases but at least now it does 
not crash the program. If you select &quot;parent&quot; in the filerequester and then 
attempt to open a file, the program will fail to open the file. For example, 
I extracted LargeFile to RAM:, started the program, selected the &quot;Open&quot; 
button, selected &quot;Parent&quot; in the ASL requester, clicked on a file and 
selected &quot;OK&quot; in the ASL requester. LargeFile attempted to load a file 
that didn't exist ( //myfile.txt ). 
 
Just let AmigaDOS combine the path and file for you. It's more or less the 
standard method for combining the results of an ASL requester and will 
always work. 
 
Replace this: 
 
if(req-&gt;fr_Drawer[strlen(req-&gt;fr_Drawer)-1] == ':') 
sprintf(ret, &quot;%s%s&quot;, req-&gt;fr_Drawer, req-&gt;fr_File); 
else 
sprintf (ret, &quot;%s/%s&quot;, req-&gt;fr_Drawer, req-&gt;fr_File); 
 
with something like this: 
 
sprintf (ret, &quot;%s&quot;, req-&gt;fr_Drawer); 
IDOS-&gt;AddPart(ret, req-&gt;fr_File, 1024); 
 
I didn't find any crashes. 
 
&lt;/pre&gt;</description> <guid isPermaLink='false'>1355675845</guid> <pubDate>Sun, 16 Dec 2012 17:37:25 +0100</pubDate></item><item> <title>alfkil (89.150.118.165) @ 14 Dec 2012, 11:55.07</title> <link>https://os4depot.net/?function=comments&amp;file=utility/text/largefile.lha</link> <description>&lt;STRONG&gt;By:&lt;/STRONG&gt;&amp;nbsp;alfkil (89.150.118.165)&lt;BR /&gt;&lt;pre&gt;@xenic 
Yes I know, and I fixed it already. I am just waiting for someone to do the final test before uploading, would you be interested? Find my email in the readme. 
&lt;/pre&gt;</description> <guid isPermaLink='false'>1355525707</guid> <pubDate>Fri, 14 Dec 2012 23:55:07 +0100</pubDate></item><item> <title>xenic (71.58.155.85) @ 14 Dec 2012, 09:00.41</title> <link>https://os4depot.net/?function=comments&amp;file=utility/text/largefile.lha</link> <description>&lt;STRONG&gt;By:&lt;/STRONG&gt;&amp;nbsp;xenic (71.58.155.85)&lt;BR /&gt;&lt;pre&gt;I would be surprised if it works well there if you select a different volume and directory to open the file from. I looked at the code and can tell you what is wrong. When the user selects a different location to open the file from, your code concatenates the pathname &amp; filename incorrectly. This following line doesn't work properly: 
 
sprintf (ret, &quot;%s/%s&quot;, req-&gt;fr_Drawer, req-&gt;fr_File); 
 
If req-&gt;fr_Drawer is &quot;RAM:&quot; and req-&gt;fr_File is &quot;myfile&quot; the above line of code concatenates it to &quot;RAM:/myfile&quot; which isn't right. Then you open the file with that bogus path and don't bother to check if the file was opened successfully; you just attemt to use a NULL filehandle. 
Overall the program needs more error checking but fixing the above errors will eliminate the crash that we are getting. 
&lt;/pre&gt;</description> <guid isPermaLink='false'>1355515241</guid> <pubDate>Fri, 14 Dec 2012 21:00:41 +0100</pubDate></item><item> <title>alfkil (89.150.118.165) @ 12 Dec 2012, 06:44.24</title> <link>https://os4depot.net/?function=comments&amp;file=utility/text/largefile.lha</link> <description>&lt;STRONG&gt;By:&lt;/STRONG&gt;&amp;nbsp;alfkil (89.150.118.165)&lt;BR /&gt;&lt;pre&gt;@xenic 
Well, obviously everything works perfectly well here. Are you interested in getting a debugging version of it to test what is wrong? And by the way: Which os version and filesystem are you using? 
@kas1e 
I think the problem is, that both db101 and LargeFile fails to find courier font (size 15) on your system. Do you have it installed? 
&lt;/pre&gt;</description> <guid isPermaLink='false'>1355334264</guid> <pubDate>Wed, 12 Dec 2012 18:44:24 +0100</pubDate></item><item> <title>xenic (71.58.155.85) @ 12 Dec 2012, 06:00.10</title> <link>https://os4depot.net/?function=comments&amp;file=utility/text/largefile.lha</link> <description>&lt;STRONG&gt;By:&lt;/STRONG&gt;&amp;nbsp;xenic (71.58.155.85)&lt;BR /&gt;&lt;pre&gt;Version 0.1 opens a window but when I select the &quot;Open&quot; gadget the program attempts to use &quot;qt:src/gui&quot; as the opening directory for the ASL requester which produces ascreen flash. If there is a default opening directory it should be one that's guaranteed to exist like RAM: or SYS: or PROGDIR:. The program crashes with a GR when I select a file and close the ASL requester. Even if I select &quot;Kill&quot; in GR my system freezes and I need a hard reboot. I don't think this program is ready for public release. 
&lt;/pre&gt;</description> <guid isPermaLink='false'>1355331610</guid> <pubDate>Wed, 12 Dec 2012 18:00:10 +0100</pubDate></item><item> <title>kas1e (78.36.143.146) @ 12 Dec 2012, 04:07.33</title> <link>https://os4depot.net/?function=comments&amp;file=utility/text/largefile.lha</link> <description>&lt;STRONG&gt;By:&lt;/STRONG&gt;&amp;nbsp;kas1e (78.36.143.146)&lt;BR /&gt;&lt;pre&gt;Tryed 0.1 version, and if i run it from the wb/icon or from shell, i all the time have a GR with crash in init(). Increasing of stack size not helps, but i can do &quot;ignore DSIS&quot; and editor runs.  Trying to open any file in it produce nothing as well (because of those DSI's imho). 
&lt;/pre&gt;</description> <guid isPermaLink='false'>1355324853</guid> <pubDate>Wed, 12 Dec 2012 16:07:33 +0100</pubDate></item></channel> </rss>