Until now I can create libraries of functions that don't use GUI grids. Actually many of those functions are similar in different programs and I'd like to...
... Certainly, but you don't export the CreateWindows function. You have an init function in your library, whatever an appropriate name would be, and either...
Seen. The trouble isn't using .dll, I do it without troubles. The trouble is, p.e. showing a window whose code is in library. I created a test program named...
... The InitGui and CreateWindows should be called in the entry function before you send a XuiMessage to #Hola but before the XgrProcessMessages is being...
Thank you and sorry to answer so late. Thanks to Vincent for pointing the Wine environment. I think that it would be too heavy tool for the small things that I...
Hi, Having a program working like 'acgibin.x' from the demo folder, I observed that a rather large file cannot be sent from a form and received by the standard...
On Mon, 05 Nov 2007 07:50:21 -0500, Julien Rouiller ... XBasic assumes that it has access to its own memory allocation functions. But XBasic's allcation...
... As long as you add XB.DLL along with it or if you embed the XB library into the DLL. Embedding the library code into your own is not done in a few steps...
(skiped) ... (strings ... in ... functions. ... before ... assume is ... string or ... why ... environment that ... segfault or ... size of a ... Not sure I...
... it ... The ... Windows ... the ... this is ... library into the DLL. ... manually, if XCompiler works, it can do this for you automatically ... Thanks. I...
... You could run a Linux distribution (like Ubuntu) inside a virtual machine like VirtualBox (VirtualBox is the most close encountering free and open source...
My Entry function in library says: SHARED terminateProgram STATIC entry ' IF entry THEN RETURN ' enter once entry = $$TRUE ' enter occured ' InitGui () '...
... Is #Hola assigned a value in the main program? The routine above looks fine, as it should, but realize that shared variables that begin with "#" are only...
... the ... myself ... on ... machine like VirtualBox (VirtualBox is the most close encountering free and open source equivalent ... Yes, or install Linux on...
I've tested it, and my program calls without any trouble to the function ShowHola(), but the window referenced doesn't appear. So, it identifies the function...
It is what Steve also said, the grid-number of the window created should be known. If you uncommented the #Hola = Hola line in the Create Windows it should...
I do it, but it doesn't work. The file jck.x contains the source code of the library. When executed from PDE, in Console window appear two lines. In second we...
I only try to draw a window function from the library, getting information from jck will come later, but I suppose to do it using function arguments (FUNCTION...
Vince has it. Like I said previously, if you are exporting Boton then the answer is to add it to the CreateWindows function of your main program. Otherwise as...
I'd like to use less code as possible of library in main programs. So, I prefer to modify CreateWindows in library. Perhaps I didn't understand well (my...
I suppose it is a simple error, but I didn't. I've just removed that line and... It works!!!!!!!!!!!!! Thanks a lot. I'll include it in my "trucos para Xbasic"...
... Thanks for that - my mistake when I changed webhosts. It is now here: http://www.xbasic.org/download/xbhtml.zip <http://www.xbasic.org/xbhtml.zip> Go to...
Hi Vic, You know, I just figured that out, and came back here and saw your message. It's actually very nice that you can get the language and the docs on the...
Here I go again... (Whitesnake, a lot of years ago...) I've created this function to get a value from a window named Mensaje and MensajeCode. The function...
... Does your Entry function include a message processing loop? If you use PRINT instead of XuiMessage, is the message displayed in the Console window? -- ...