Search found 1588 matches

by BruceSteers
Monday 31st August 2020 4:06pm
Forum: General
Topic: What's going on with increasing exe filesize?
Replies: 4
Views: 4251

Re: What's going on with increasing exe filesize?

Answering my own question here.

Just read this in the Gambas beginers guide...

"The Gambas
archiver transforms the entire project directory structure into a standalone
executable."

Now i did not know that , better clear everything out of the folder that's not code i guess :-\
by BruceSteers
Monday 31st August 2020 12:32pm
Forum: General
Topic: What's going on with increasing exe filesize?
Replies: 4
Views: 4251

What's going on with increasing exe filesize?

So here's me scenario... That GForm app i've made i didn't want/need the cumbersome .gambas on the end of it so i rename it to just GForm. Then... When i recompile the GForm.gambas exe while the GForm exe exists in the folder my new exe becomes larger ??? When i say larger it got up to 26mb , just t...
by BruceSteers
Monday 31st August 2020 6:32am
Forum: Project showcase
Topic: GForm , zenity like gui maker for shell scripts using pipe to talk to script.
Replies: 10
Views: 26745

Re: GForm , zenity like gui maker for shell scripts using pipe to talk to script.

Stock Icons anyone? So i found my large file size issue was not because of the stock icons component added. Then removed. So I've added it again :) Now if you type GForm geticons you get this... GForm-geticons.png That shows all the available stock icons and their names. then knowing the name you ca...
by BruceSteers
Sunday 30th August 2020 2:58pm
Forum: Project showcase
Topic: GForm , zenity like gui maker for shell scripts using pipe to talk to script.
Replies: 10
Views: 26745

Re: GForm , zenity like gui maker for shell scripts using pipe to talk to script.

I could be showing my age here but i used to do AREXX scripting on an Amiga1200 , waaay back in the day lol. one day i discovered a tool called the AWNPipe.handler This was a simple tool made by Bill Parker one of the co-writers of AWeb a popular browser that he made to be able to easily knock toget...
by BruceSteers
Sunday 30th August 2020 2:41pm
Forum: General
Topic: Terminal with Shell
Replies: 7
Views: 6701

Re: Terminal with Shell

Just a thought m8 I dunno if it will help but i did think of you with the GForm app i've made. Mostly my thinking was some problems i've had using the terminal view, for some shell stuff i need a proper terminal lol. I wondered if the app might help as your program could be shell based to solve issu...
by BruceSteers
Sunday 30th August 2020 12:00pm
Forum: Project showcase
Topic: GForm , zenity like gui maker for shell scripts using pipe to talk to script.
Replies: 10
Views: 26745

Re: GForm , zenity like gui maker for shell scripts using pipe to talk to script.

I need to get a life and stop working on this lol :) major bugfix. I found a bug in the listening pipe routine where multiple lines of text were not being processed correctly. Trying to get my head around how to access the Eof(hFile) call or the hFile.EndOffile without locking up the app was driving...
by BruceSteers
Wednesday 26th August 2020 11:01pm
Forum: Project showcase
Topic: GForm , zenity like gui maker for shell scripts using pipe to talk to script.
Replies: 10
Views: 26745

Re: GForm , zenity like gui maker for shell scripts using pipe to talk to script.

Further Updated now... Lots of tweaking , more options added. Big change in the pipe reading routine. I found using the timer method to echo the pipe was occasionally missing messages somehow so was looking into it. then finally i figured out the pipes 'Watch' option and using the File_Read() event ...
by BruceSteers
Saturday 22nd August 2020 7:26pm
Forum: Project showcase
Topic: GForm , zenity like gui maker for shell scripts using pipe to talk to script.
Replies: 10
Views: 26745

Re: GForm , zenity like gui maker for shell scripts using pipe to talk to script.

Source code is getting more complex now. :roll: Added lots of new features. Gave it a home on git. https://github.com/BruceSteers/GForm Here's the current arg list , my how it's grown..... currently supported objects are... Button, ToggleButton, TextBox (InputBox), CheckBox, ListBox, DirBox, FontBox...
by BruceSteers
Thursday 20th August 2020 4:16pm
Forum: Project showcase
Topic: GForm , zenity like gui maker for shell scripts using pipe to talk to script.
Replies: 10
Views: 26745

Re: GForm , zenity like gui maker for shell scripts using pipe to talk to script.

Here's an update... Arguments are.... (Runtime args when launching GForm) title="Title for window top" width=<n> , manually define a window width box , makes a Horizontal box, subsequent objects go in the box until unboxed unbox , finishes the box button="name|text|close" , makes...
by BruceSteers
Thursday 20th August 2020 2:00pm
Forum: Project showcase
Topic: GForm , zenity like gui maker for shell scripts using pipe to talk to script.
Replies: 10
Views: 26745

Re: GForm , zenity like gui maker for shell scripts using pipe to talk to script.

Hi Cool. I've made some additions already like now it also has an incoming pipe. So the gui can talk to the script about events and the script can send command to the gui too. I've got a working example here that the script can change text fields and list indexes and stuff. Like I say it's a way to ...