Talking about Berndt, he has been off the board for a long time now. Hope nothing serious is up.
Might as well keep it in this thread..
Started my "big" project by creating two of the Forms in QtDesigner. frm_Main w. some 150 Controls on it and frm_Setup with about the same.
Get nothing but errors when Building, so I decided to start small. Created a new proj. one Form, two PushButtons and a TextEdit control.
---------------------------
Error
---------------------------
) expected in line 10 in file MainWindow.QMainWindow
....Text)
Display.Text = String(tmp + 1)
End Signal
- Code: Select all
' this is the mainwindow scope
Outlet pbCountDn As QPushButton
Outlet pbCountUp As QPushButton
Outlet Display As QTextEdit
Signal on_pbCountUp_clicked(Checked As Boolean)
Dim tmp As Integer
tmp = Integer(Display.Text) 'This is line 10
Display.Text = String(tmp + 1)
End Signal
Signal on_pbCountDn_clicked(Checked As Boolean)
Dim tmp As Integer
tmp = Integer(Display.Text)
If tmp > 0 Then
Display.Text = String(tmp - 1)
End If
End Signal
And the Tab [Outlet (2)], I can clearly see 3...
I feel like beeing on square one *again*
/Henning