Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Juanjogomez

Pages: 1 [2]
16
InForm Discussion / child forms
« on: December 24, 2018, 11:08:11 am »
Hello,
I am passing a warehouse management program from QB45 to QB64 and, for example, 7 help windows are opened in the billing program to find customers, items, stocks, etc. I would like to use Inform to give it a more current look and feel, but now it is not possible.
Is work being done so that the new version can use child forms?

17
QB64 Discussion / Issue _PRINTIMAGE (Resolved)
« on: December 05, 2018, 11:32:16 am »
Hello
I'm programming on a computer with windows 10 64 bits and I'm doing a program that should print a document in the printer. I am using the _PRINTIMAGE example of Qb64 wiki and the document is printed perfectly with the printer and with PDF Creator.
I have tried the program in another computer that I have with Windows 7 sp1 and the page is white, both in the printer and in PDF Creator. In contrast, the preview comes out perfectly.
Could it be a _PRINTIMAGE error?
Thanks

18
QB64 Discussion / Turn page 90 degrees
« on: November 19, 2018, 01:28:28 pm »
Hi guys,
I want to print a page in landscape format but I do not know how to turn the page 90 degrees.
What I do is create a page with the width of the A4 length and the width of the A4 length. I write the corresponding text, but to send it to the printer I have to rotate it.
With _PUTIMAGE I can reverse it, but I do not think I can rotate it. Could someone tell me how to do it?
Thank you

19
InForm Discussion / Focus to InForm
« on: August 01, 2018, 12:22:09 pm »
Hello,
How could I change the focus of a texbox to another control?
I want to change from one texbox to the next texbox by pressing the Enter key.
I know that the code would be like that:
           
SUB __UI_KeyPress (id AS LONG)
       SELECT CASE id
            CASE Texbox1TB
                    IF __UI_KeyHit = 13 THEN
             
                       ?????????????
                   
                    END IF
...

Thanks

20
QB64 Discussion / SQL client
« on: July 15, 2018, 08:05:35 am »
Hello,
I have tried the example to work with SQL client, but it does not work with tables of more than 1 field. Only display the first. Can someone pass me the code to work with tables of several fields (the usual)?
Regards

Pages: 1 [2]