Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form Event Wizard

Status
Not open for further replies.

postmanplod

Programmer
Aug 18, 2008
47
0
0
GB
Hello,

In the Part screen I need to create an event where by when Part.Checkbox10 = TRUE, Part.Netweight becomes disabled.

I've tried the following to no avail:

Select Case args.Column.ColumnName
Dim CheckBox10 AS String
Dim NetWeight as String

Case "True"
IF TRUE THEN
NetWeight.disabled
else
NetWeight.enabled
end if
Case Else

End Select

End Sub

Does anyone have any suggestions?

Regards,

Michael
 
Try a valuechange event on the check box, and notify
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top