Link to home
Start Free TrialLog in
Avatar of regsamp
regsamp

asked on

VB.NET question

In VB.NET what does the following script mean?  Is it saying space and if so why would it it be used this way?  Label1.Text = " "
Any assistance offered would be greatly apreciated.  
ASKER CERTIFIED SOLUTION
Avatar of sirbounty
sirbounty
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
"why would it it be used this way"

Hard to say based upon just that single line of code.
If you're wanting the control to simply be 'blank' then you could just as easily do it using

Label1.Text=""
Happy to help - thanx for the grade. :^)