RQWORK7 (KOGAION) RAD-IDE http://www.rqwork.de/zips/rqwork7.zip was updated to version BETA
SHRIMP http://www.rqwork.de/zips/shrimp.zip was updated to version 1.9
RqWork7 and Shrimp
-
- Posts: 131
- Joined: Dec 18, 2018 16:37
- Location: Germany, Hessdorf
- Contact:
-
- Posts: 131
- Joined: Dec 18, 2018 16:37
- Location: Germany, Hessdorf
- Contact:
Re: RqWork7 and Shrimp
virtual classes designtime and runtime, it created from dll (delphi one)
design time
runtime
design time

runtime

-
- Posts: 131
- Joined: Dec 18, 2018 16:37
- Location: Germany, Hessdorf
- Contact:
-
- Posts: 131
- Joined: Dec 18, 2018 16:37
- Location: Germany, Hessdorf
- Contact:
-
- Posts: 131
- Joined: Dec 18, 2018 16:37
- Location: Germany, Hessdorf
- Contact:
Re: RqWork7 and Shrimp
shrimp was updated to version 3.5 get it from here http://rqwork.de/forum/Upload/showthread.php?tid=14
also a code sample for gui wrapper who come with shrimp
as you can see never was more easy to build a gui interfaces with FreeBasic...

also a code sample for gui wrapper who come with shrimp
Code: Select all
#include once "C:\Users\eodor\Desktop\IDE7_1\IDE7\gui\kogaion_gui_standards.bas"
dim shared as QForm Form1
dim shared as QButton QButton2
dim shared as QLabel QLabel3
sub Click(sender as QObject)
QLabel3.Text=sender.ClassName
end sub
sub formClose(sender as QObject,byref cla as integer)
select case messageDlg("Close?","Application",mb_iconquestion or mb_yesno)
case idno :cla=0
case idyes:ExitProcess(0)
end select
end sub
QButton2.Parent=Form1
QButton2.SetBounds(12,78,180,30)
QButton2.onClick=@Click
QLabel3.Parent=Form1
QLabel3.SetBounds(18,24,174,42)
QLabel3.Text="that is an test..."
Form1.SetBounds(0,0,400,250)
Form1.Parent=0
Form1.onclose=@formClose
application.run
as you can see never was more easy to build a gui interfaces with FreeBasic...
Who is online
Users browsing this forum: No registered users and 6 guests