Search found 93 matches

by Redlion
Sat Sep 23, 2023 1:24 pm
Forum: Hollywood bugs
Topic: RndStrong() causes DOS Error
Replies: 6
Views: 2997

Re: RndStrong() causes DOS Error

@ airsoftsoftwair

I have had a look and there is a L:random-handler size:8580, dated 23-Nov-14 Ver52.1(10-12-2006)
I think that is the original install version.

RNDStrong() did work with Hollywood 7

Using just RND() for the moment.
Cheers
Leo
by Redlion
Sat Sep 16, 2023 2:07 am
Forum: Hollywood bugs
Topic: RndStrong() causes DOS Error
Replies: 6
Views: 2997

Re: RndStrong() causes DOS Error

@ airsoftsoftwair Its a standard AmigaOS 4.1 with update 2 and the free Enhancher software Core Edition 1.1 . Normal RND() works, just not RNDStrong() It used to work when I first installed Hollywood 9.1, even the compiled version crashes with the same error. I have checked there are no assigns of d...
by Redlion
Wed Sep 06, 2023 2:39 pm
Forum: Hollywood bugs
Topic: RndStrong() causes DOS Error
Replies: 6
Views: 2997

RndStrong() causes DOS Error

Hello, I have been doing some programming with random numbers and have been using result = RndStrong(#Integer, 8) I get an Amiga Dos Error Please insert Volume RANDOM: in any drive Process: XXX "Hollywood" If I press Cancel, I get a Hollywood Error Error generating Random Number File: HWTe...
by Redlion
Fri Mar 24, 2023 7:46 am
Forum: General programming
Topic: How to display progress of a for-next loop
Replies: 8
Views: 1761

Re: How to display progress of a for-next loop

@ amyren I had a few issue getting the progress bar to work in a dialog window, so I just did it at the bottom of the screen. in your xml code <progressbar id="progress"/> moai.Set("progress", "Max", Record -1) db = sqlite3.open(DB$) For r = 1 To Record db:exec("UP...
by Redlion
Mon Mar 20, 2023 12:44 am
Forum: RapaGUI
Topic: how do I Dynamicaly adding textboxes
Replies: 7
Views: 2011

Re: how do I Dynamicaly adding textboxes

@ airsoftsoftwair

Thanks for looking into to it for me, I was not sure I was doing something stupid and could not see it.

Thanks
Leo
by Redlion
Thu Mar 16, 2023 2:01 am
Forum: RapaGUI
Topic: how do I Dynamicaly adding textboxes
Replies: 7
Views: 2011

Re: how do I Dynamicaly adding textboxes

Hi plouf, I think you have missed the point, I am not wanting to use a Listview on the second page I want to use Text and textentry. I want to be able to display a record on the second page and able to see all the info from all columns at once. The number of text and textentry objects are determined...
by Redlion
Wed Mar 15, 2023 3:27 pm
Forum: RapaGUI
Topic: how do I Dynamicaly adding textboxes
Replies: 7
Views: 2011

Re: how do I Dynamicaly adding textboxes

Hi , Oops, line 39 was a cut and paste error, trying to get the minimal amount of code that shows the problem. if you change line 38 to, For t = 0 To 45 The text objects are displayed as expected, if i go below 45 it does not display properly only one text object is displayed and I have to adjust th...
by Redlion
Tue Mar 14, 2023 8:18 am
Forum: RapaGUI
Topic: how do I Dynamicaly adding textboxes
Replies: 7
Views: 2011

how do I Dynamicaly adding textboxes

HI All, I am trying to write a program to maintain several SQLite3 databases, I have come across an issue that i can not solve. /*** This script requires the RapaGUI plugin*/ @REQUIRE "RapaGUI" /*** Setup GUI *********************************************************************************...
by Redlion
Sat Mar 11, 2023 10:47 am
Forum: General plugin questions
Topic: How do I get Column Name from SQLite3 database
Replies: 2
Views: 1684

Re: How do I get Column Name from SQLite3 database

@plouf

Thanks, that works great.

Cheers
Leo
by Redlion
Wed Mar 08, 2023 12:04 pm
Forum: General plugin questions
Topic: How do I get Column Name from SQLite3 database
Replies: 2
Views: 1684

How do I get Column Name from SQLite3 database

Hello all, I am trying to update some code because it fails on some databases, I have narrowed it down to extra spaces in the column name, here is how I was doing it. OpenFile(1, DB$) info$ = ReadString(1, 4000, #ENCODING_ISO8859_1) CloseFile(1) info$ = ReplaceStr(info$, ", ", ","...