RqWork7 and Shrimp

User projects written in or related to FreeBASIC.
Post Reply
nastasa eodor
Posts: 182
Joined: Dec 18, 2018 16:37
Location: Germany, Hessdorf
Contact:

RqWork7 and Shrimp

Post by nastasa eodor »

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
nastasa eodor
Posts: 182
Joined: Dec 18, 2018 16:37
Location: Germany, Hessdorf
Contact:

Re: RqWork7 and Shrimp

Post by nastasa eodor »

virtual classes designtime and runtime, it created from dll (delphi one)
design timeImage
runtimeImage
nastasa eodor
Posts: 182
Joined: Dec 18, 2018 16:37
Location: Germany, Hessdorf
Contact:

Re: RqWork7 and Shrimp

Post by nastasa eodor »

QRichEdit class and highlight example , here http://rqwork.de/zips/richedit_highlight.zip

Image
Image
nastasa eodor
Posts: 182
Joined: Dec 18, 2018 16:37
Location: Germany, Hessdorf
Contact:

Re: RqWork7 and Shrimp

Post by nastasa eodor »

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

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...
Image
diakin
Posts: 97
Joined: May 28, 2005 6:06
Location: Russia, St-Petersburg
Contact:

Re: RqWork7 and Shrimp

Post by diakin »

[quote="nastasa eodor"]RQWORK7 (KOGAION) RAD-IDE http://www.rqwork.de/zips/rqwork7.zip was updated to version BETA

When click on Project->Option - Access violation appears
File-Open - not works, dialog not opened
Click on Icon File Open - dialog works, but then "Can't focus a disabled or invisible window". bas file not opened.

Windows7 64bit

ps. How can I attach screenshot?
paul doe
Moderator
Posts: 1730
Joined: Jul 25, 2017 17:22
Location: Argentina

Re: RqWork7 and Shrimp

Post by paul doe »

diakin wrote:...
ps. How can I attach screenshot?
You can't. But you can use an external hosting service. I use imgbox; works pretty well so far.
hungnguyengia
Posts: 65
Joined: Jul 01, 2021 7:53

Re: RqWork7 and Shrimp

Post by hungnguyengia »

paul doe wrote:
diakin wrote:...
ps. How can I attach screenshot?
You can't. But you can use an external hosting service. I use imgbox; works pretty well so far.
Sorry but the interface of imgbox confusing like hell. This is a much simpler solution: https://imgbb.com/
nastasa eodor
Posts: 182
Joined: Dec 18, 2018 16:37
Location: Germany, Hessdorf
Contact:

Re: RqWork7 and Shrimp

Post by nastasa eodor »

diakin wrote: May 18, 2021 7:13
nastasa eodor wrote:RQWORK7 (KOGAION) RAD-IDE http://www.rqwork.de/zips/rqwork7.zip was updated to version BETA

When click on Project->Option - Access violation appears
File-Open - not works, dialog not opened
Click on Icon File Open - dialog works, but then "Can't focus a disabled or invisible window". bas file not opened.

Windows7 64bit

ps. How can I attach screenshot?
okay, try to download now again, was totaly rebuilded
diakin
Posts: 97
Joined: May 28, 2005 6:06
Location: Russia, St-Petersburg
Contact:

Re: RqWork7 and Shrimp

Post by diakin »

Glad to see you )
nastasa eodor
Posts: 182
Joined: Dec 18, 2018 16:37
Location: Germany, Hessdorf
Contact:

Re: RqWork7 and Shrimp

Post by nastasa eodor »

diakin wrote: Jul 30, 2022 8:24 Glad to see you )
thanks russian
nastasa eodor
Posts: 182
Joined: Dec 18, 2018 16:37
Location: Germany, Hessdorf
Contact:

Re: RqWork7 and Shrimp

Post by nastasa eodor »

That powerfoull ide was written in pascal with Delphi. So source code is for pascal knowers. t is a very strong solution between that tow languages,pascal and basic,also use dynamic linking with new coponents via dll technologies. Also the gui wrapper is capable to create a class from the fly, via windows fuction "createwindowex".SO CREATION OF ACTIVEX IS ONLY A JOKE.
diakin
Posts: 97
Joined: May 28, 2005 6:06
Location: Russia, St-Petersburg
Contact:

Re: RqWork7 and Shrimp

Post by diakin »

It works now, thanks! )
RNBW
Posts: 267
Joined: Apr 11, 2015 11:06
Location: UK

Re: RqWork7 and Shrimp

Post by RNBW »

Where can I download RqWork7 and Shrimp? The links don't appear to work.
diakin
Posts: 97
Joined: May 28, 2005 6:06
Location: Russia, St-Petersburg
Contact:

Re: RqWork7 and Shrimp

Post by diakin »

Post Reply