[Gambas-user] Column View

mikeB mb at code-it.com
Fri Oct 20 15:50:42 CEST 2017


Thank you very much for your fast reply - it is more
detailed then I expected;-)
mikeB


On 10/20/2017 03:19 AM, Fabien Bodard wrote:
> 2017-10-20 6:36 GMT+02:00 mikeB <mb at code-it.com>:
>> Greetings,
>> ListView/ ColumnView
>> Is there anyone could point me in the right direction where
>> I could read detailed info to find out about either masking
>> a column "***" instead of the text(password) being exposed
>> OR setting the color, of a particular column, to black so
>> that the text can't be seen?
> 
> 
> Well just store the value in a collection and display "***"
> 
> 
> when you add the value to the Column view :
> 'on top of your form code
> 
> Private  $colMyPassWords as New Collection
> 
> 
> MyColumnView.add(key, text,picturebox,etc
> 'Add this
> colMyPasswords[key]=sPassword
> 
> MyColumnView[key][n] = "***"
> 
> 
> So the paswords are stored for next use in the collection with the
> same key as the columnView.
> 
> And the columnView just show what you want. All the needs of all the
> developpers can't be added to each widget becaus we all have specific
> needs.
> 
> Gambas standard widget are drawn to have the less properties as
> possible but the most flexibilities to allow users to make them self
> particularities.
> 
> Just imagine that ColumnView is done with GridView... so yes if you
> want you can even change the color of the wanted cell :-). But I
> prefers to not lost you already.
> 
> 
> If you have questions don't take so many days to query them.
> 
> Regards,
> 
> Fabien Bodard
> 
> 
>>
>> Been searching for days and can't seem to find if this is even
>> possible.
>>
>> Thanks for any/ all help - have a GREAT day,
>> mikeB
>>
>> --------------------------------------------------
>>
>> This is the Gambas Mailing List
>> https://lists.gambas-basic.org/listinfo/user
>>
>> Hosted by https://www.hostsharing.net
> 
> 
> 



More information about the User mailing list