Page 1 of 2

print > screen

PostPosted: Tue Apr 19, 2011 7:48 pm
by Slowdown
Is it possible to allow more output to be sent with the Print statement ?
I think the screen is somewhat limited on this moment.

Re: print > screen

PostPosted: Tue Apr 19, 2011 10:54 pm
by Henning
Hi,

Just curious of what and why you print to the screen ;)

/Henning

Re: print > screen

PostPosted: Wed Apr 20, 2011 5:40 am
by Slowdown
Hi Henning,

Been busy with writing a Findfirst & Findnext but something is
going wrong and can't find it so i need the screen for debugging.
But the screen is showing the last 20 or 25 lines and i have an output of at leat 100 or 200 lines.
I started using the MsgBox but that is also running out of my screen :)

Re: print > screen

PostPosted: Wed Apr 20, 2011 6:32 am
by berndnoetscher
Slowdown wrote:Is it possible to allow more output to be sent with the Print statement ?
I think the screen is somewhat limited on this moment.


You may use the stdout command instead. It shows its output in the q7basic ide.

Re: print > screen

PostPosted: Wed Apr 20, 2011 10:19 am
by Henning
Or an extra Form with just a ListBox for debugging.

/Henning

Re: print > screen

PostPosted: Thu Apr 21, 2011 7:15 pm
by Slowdown
You may use the stdout command instead. It shows its output in the q7basic ide.

Nice, thought my code crashed but i can see now (time stamp) that the code is still
running but i have created a loop which will never end :D
@Henning,
Must be honest but don't know how create a second form (at this moment). :oops:
totally off topic: http://www.google.nl/search?hl=nl&biw=1 ... =&aql=&oq=

Re: print > screen

PostPosted: Fri Apr 22, 2011 11:26 am
by Henning
Create a new Form in Qt Creator
Add controls and name them
Save As to your project directory as ex. Form2.ui
Start Q7B
In the Project menu, "New File With Super Class"
Select QWidget and name it Form2 as your new .ui Form.

To add a Module:
Project menu, "New File With Super Class"
Select QObject and name it as ex. Module1

/Henning

Re: print > screen

PostPosted: Fri Apr 22, 2011 1:47 pm
by Slowdown
Henning thanx.
I was looking from within Q7B to create a new form.

Re: print > screen

PostPosted: Fri Apr 22, 2011 9:17 pm
by Henning
IMO there is no need for a Q7B Form designer. Qt Designer gives all needed and more. And once created, there is a direct access from Q7B. The only thing missing (or I haven't found it) is way to start Qt Designer from Q7B to create a new Form.

/Henning

Re: print > screen

PostPosted: Sat Apr 23, 2011 4:37 am
by Slowdown
Hi,
MO there is no need for a Q7B Form designer. Qt Designer gives all needed and more. And once created, there is a direct access from Q7B.

There is indeed no need for a build-in form designer but if i'm right Bernd was planning for a build-in designer but he may
have left that thought.
The only thing missing (or I haven't found it) is way to start Qt Designer from Q7B to create a new Form.

In fact you can.
In the IDE first,
In the Project menu, "New File With Super Class"
Select QWidget and name it Form2 as your new .ui Form.

After that hit ctrl+return (Qt Designer for the Current file) and you have what you want :-)