This question is really around how to set a collection member to an empty 
string without destroying it.


I've noticed (forever) that this code

textbox1 = "" when one accidentally forgot to write 

textbox1.text ="", actually sets the control to null.

But I've also I just noticed this:


Lets say you have a collection

dim aCollection  as new collection

aCollection!value = "hi there"  

is a valid statement

aCollection.Remove("value") -  removes the item

aCollecton!value = ""  actually works like  aCollection.Remove("value")

which is sort of inconvenient if you want the collection member to be an empty 
string

Am I wrong ?any suggestions/observations.

regards

richard




------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to