Change control's source based on value of other control(s)


/ Published in: Visual Basic
Save to your folder(s)



Copy this code and paste it in your HTML
  1. ' Based on value of check boxes
  2.  
  3. '=IIf(Abs([ChkBox1])+Abs([ChkBox2])+Abs([ChkBox3])=0,"Eligible","Not Eligible")
  4.  
  5. ' Based on value of textboxes
  6.  
  7. '=IIf((ElgStatus.Value="Eligible" And ConStatus.Value="Yes"),"Enrolled","Not Enrolled")

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.