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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Mostafavi

    Field Properties

    Use this code: Set td = daoDB36.TableDefs("Table") Set f = td.CreateField("end", dbText) f.Properties("Required") = True f.Properties("AllowZeroLength") = True td.Fields.Append f
  2. Mostafavi

    Controlling objects using a loop?

    You can use this code to disable all of the Command Buttons: Private Sub Form_Load() Dim ctl As Control For Each ctl In Me.Controls If TypeOf ctl Is CommandButton Then ctl.Visible = False End If Next End Sub

Part and Inventory Search

Back
Top