1 (edited by foevil 2023-10-26 16:36:19)

Topic: Error

Some times this error showinghttps://myvisualdatabase.com/forum/misc.php?action=pun_attachment&item=10005&download=0

Post's attachments

Attachment icon photo_2023-10-26_22-03-10.jpg 113.75 kb, 20 downloads since 2023-10-26 

Re: Error

https://i.imgur.com/cu0mDwp.png

Re: Error

Hello Foevil

Systematically occurs when you handle more items than you have available (for example, you work with more columns in a grid than it contains or more items than a ComboBox contains) .
Check the loops that manipulate these objects.
For example: Form1.Tablegrid1.Columns[9].Width := 50; while your grid only contains 8 columns
J.B.

Re: Error

jean.brezhonek wrote:

Hello Foevil

Systematically occurs when you handle more items than you have available (for example, you work with more columns in a grid than it contains or more items than a ComboBox contains) .
Check the loops that manipulate these objects.
For example: Form1.Tablegrid1.Columns[9].Width := 50; while your grid only contains 8 columns
J.B.




thanks bro