[Gambas-user] COBOL and how great it was!

gian bagoneo at libero.it
Mon Nov 21 15:42:38 CET 2022


Il 21/11/22 09:42, BB ha scritto:
> Inline
> 
> On 21/11/22 7:01 pm, gian via User wrote:
>> Mine was just a suggestion.
>> I am convinced that it is easily improved, such as in the case you 
>> posted (aSpace As Integer[] = [6, 44, 15, 12, 20, 17]):
>>
>> ... 8<
> I have taken a couple of things from your ideas and incorporated them. 
> So you are in the authors list, so there 😛.
>>

:-D

>> If you messed up the numbers in your code what would happen?
>>
> In general, or in what I have tested with mine so far, it doesn't matter 
> as it either elides any item or tells me I have an underflow (-ve 
> padding) problem by printing an upside down "?".
> 
> Anyway, never mind. I have now a gridview problem to solve. 🙁
> 
> regards
> 
> b
> 
> 
> ----[ http://gambaswiki.org/wiki/doc/netiquette ]----

I didn't mean to be pushy, just that the idea of a very light report is 
intriguing and interests me.

I just got back from a dentist's office and now I am more serene even 
though I have less money and more pain. :-(

I saw that earlier in the submitted code I managed to insert a new bug ;-D
If Len(aField[i]) > iSpaceOne Then aField[i] = String.Left(aField[i], 
iSpaceOne) & "..."
I think it should be
If Len(aField[i]) > iSpaceOne Then aField[i] = String.Left(aField[i], 
iSpaceOne - 1) & "..."
I used your font :-)

Best wishes for the gidview

Regards

Gianluigi

P.S. gb.report2 is fabulous and I really like it !




More information about the User mailing list