<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
 <channel>
  <title>XBLite Programming</title>
  <link>http://www.xblite.com/forum/</link>
  <generator>http://www.eblah.com</generator>
  <description></description>
  <language>en</language>
  <item>
   <title>winx user entry, memory limit</title>
   <link>http://www.xblite.com/forum/m-1319620833/</link>
   <comments>http://www.xblite.com/forum/m-1319620833/#num1</comments>
   <description><![CDATA[I'm using Winx, very nice, but I need to be able to edit variables while the program is running. I have looked through the demos and at the Winx library VERSION &quot;0.6.0.12&quot; but don't see a function that pops up a dialog box or dropdown menu where the user can edit variables (enter new values etc). Anyone point me to the right function?<br /><br />A second question - if I dim an array that uses more than 500MB it compiles but crashes on execution. Seems to be a limit to program size rather than a limit on a single array. Is there a way around this limit? I need an array of 1 or 2 GB.<br /><br />Thanks for any help.<br />]]></description>
   <pubDate>Wed, 26 Oct 2011 04:20:33</pubDate>
   <dc:creator>xor0</dc:creator>
  </item>
  <item>
   <title>problem with ReadConsoleOutputA</title>
   <link>http://www.xblite.com/forum/m-1311078509/</link>
   <comments>http://www.xblite.com/forum/m-1311078509/#num1</comments>
   <description><![CDATA[Hi,<br /><br />Iam new in xblie, i have problem when Compiling it always give the message &quot;type mismatch at (50)&quot;. The problem is in the last line.<br /><br />Here is the code<br /><br />' #####&nbsp;&nbsp;PROLOG&nbsp;&nbsp;#####<br />' ####################<br />'<br />PROGRAM&nbsp; &nbsp; &nbsp;&quot;buffertest&quot;<br />VERSION&nbsp; &nbsp; &nbsp;&quot;0.0001&quot;<br />CONSOLE<br />'<br />&nbsp; &nbsp; &nbsp;IMPORT&nbsp; &nbsp; &nbsp;&quot;xst&quot;&nbsp;&nbsp; ' Standard library : required by most programs<br />&nbsp; &nbsp; &nbsp;IMPORT&nbsp; &nbsp; &nbsp;&quot;kernel32&quot;<br />&nbsp; &nbsp; &nbsp;IMPORT&nbsp; &nbsp; &nbsp;&quot;xio&quot;<br />'<br /><br />DECLARE FUNCTION&nbsp;&nbsp;Entry ()<br />'<br />'<br />' ######################<br />' #####&nbsp;&nbsp;Entry ()&nbsp;&nbsp;#####<br />' ######################<br />'<br />FUNCTION&nbsp;&nbsp;Entry ()<br /><br />&nbsp; &nbsp; &nbsp;SMALL_RECT srctReadRect,srctWriteRect <br />&nbsp;&nbsp;CHAR_INFO chiBuffer[160]&nbsp;&nbsp;<br />&nbsp;&nbsp;COORD coordBufSize,coordBufCoord <br /><br />&nbsp; &nbsp; &nbsp;hStdout = GetStdHandle(STD_OUTPUT_HANDLE) <br />&nbsp; &nbsp; &nbsp;hNewScreenBuffer = CreateConsoleScreenBuffer($$GENERIC_READ&#124;$$GENERIC_WRITE,$$FILE_SHARE_READ&#124;$$FILE_SHARE_WRITE,NULL,$$CONSOLE_TEXTMODE_BUFFER,NULL)&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp; &nbsp; &nbsp;SetConsoleActiveScreenBuffer(hNewScreenBuffer)<br />&nbsp; &nbsp; &nbsp;srctReadRect.Top = 0<br />&nbsp; &nbsp; &nbsp;srctReadRect.Left = 0<br />&nbsp; &nbsp; &nbsp;srctReadRect.Bottom = 1<br />&nbsp; &nbsp; &nbsp;srctReadRect.Right = 79<br />&nbsp; &nbsp; &nbsp;coordBufSize.x = 2 <br />&nbsp; &nbsp; &nbsp;coordBufSize.x = 80<br />&nbsp; &nbsp; &nbsp;coordBufCoord.x = 0<br />&nbsp; &nbsp; &nbsp;coordBufCoord.y = 0<br />&nbsp; &nbsp; &nbsp;ReadConsoleOutputA(hStdout,chiBuffer,coordBufSize,coordBufCoord,&amp;srctReadRect)<br /><br /><br />END FUNCTION<br />END PROGRAM<br /><br />Can someone help me ?<br /><br />Regards<br /><br />patrick]]></description>
   <pubDate>Tue, 19 Jul 2011 07:28:29</pubDate>
   <dc:creator>stapper</dc:creator>
  </item>
  <item>
   <title>XstSetProgramName? Vixen problem perhaps?</title>
   <link>http://www.xblite.com/forum/m-1299093072/</link>
   <comments>http://www.xblite.com/forum/m-1299093072/#num1</comments>
   <description><![CDATA[I am using Windows XP Pro SP3. I recently have been trying XBLite with Vixen.&nbsp;&nbsp;I was trying to use the WIN API but I have become lost in the layers and layers of calls to functions and pre-defined variables.&nbsp;&nbsp;So I thought why not try the Vixen option of using XBasic's Xui?&nbsp;&nbsp;I hoped the documentation would be less deep and many-layered.<br /><br />I tried that and when I compile using XBLite I get two different error message.&nbsp;&nbsp;One occurs only once - it says that in <br />&nbsp; &nbsp; &nbsp;program$ = PROGRAM$(0)<br />&nbsp; &nbsp; &nbsp;XstSetProgramName (@program$)<br />the XstSetProgramName is undeclared.&nbsp;&nbsp;I cannot find documentation on XstSetProgramName.&nbsp;&nbsp;I would assume it is in the xst standard library, which is INCLUDEd in my code.&nbsp;&nbsp;There is a file xst.dec but no file xst.lib or xst.dll<br /><br />The other error occurs for every instance of a line like:<br />XuiSendMessage ( g, #SetColor, $$BrightGrey, $$Black, $$Grey, $$White, 0, 0)<br />xui is INCLUDEd in the source code.&nbsp;&nbsp;There is a file xui.dec but no xui.lib or xui.dll<br /><br />The error message says #SetColor is undefined.&nbsp;&nbsp;Yet elsewhere in the code from Vixen is a line:<br />&nbsp; &nbsp; &nbsp;XgrRegisterMessage (@&quot;SetColor&quot;, @#SetColor)<br /><br />There is an xgr.dec file in the c:/xblite/include directory, but there is no xgr.lib file in c:/xblite/lib.<br />There are many other XuiSendMessage calls without error, just the SetColor ones have an error.<br />There are many XgrRegisterMessage calls - none give an error - for SetColor or for other parameters.<br /><br />Argh!&nbsp;&nbsp;I suppose I am missing something, probably something real basic (hah!)<br />Thank you for any help you can give me.<br />Al Taylor.<br />]]></description>
   <pubDate>Wed, 2 Mar 2011 13:11:12</pubDate>
   <dc:creator>engineeral</dc:creator>
  </item>
  <item>
   <title>Creating ,dec</title>
   <link>http://www.xblite.com/forum/m-1295136106/</link>
   <comments>http://www.xblite.com/forum/m-1295136106/#num1</comments>
   <description><![CDATA[Hi, Im new to XBLite but have used vb within MS Access. Ive wriiten a program successfully using XBLite but have a problem incorporating an external DLL. I previously used inpout32.dll in vb wich was great (Writing to Parallel Port). Can i use it here and if i do what does the .DEC file require in it. Please dont be too technical, in fact a copy of such code would be great. If you have another DLL which will do the job, please let me know, and if possible send me he DEC file to use with it. Thanks.]]></description>
   <pubDate>Sat, 15 Jan 2011 18:01:46</pubDate>
   <dc:creator>Peters</dc:creator>
  </item>
  <item>
   <title>services written in Xblite?</title>
   <link>http://www.xblite.com/forum/m-1294869392/</link>
   <comments>http://www.xblite.com/forum/m-1294869392/#num1</comments>
   <description><![CDATA[Has anyone written an NT service in Xblite?&nbsp;&nbsp;Would there be anything that would prevent that from being possible?]]></description>
   <pubDate>Wed, 12 Jan 2011 15:56:32</pubDate>
   <dc:creator>Bill</dc:creator>
  </item>
 </channel>
</rss>
