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!

Search results for query: *

  1. Walkinman17

    Label change color after field update?

    right ... label name and textbox name If you have only 2 or 3 labels, write a line for each; if many, you could use TAG property and write a little SUB to change all those with a given TAG Bob
  2. Walkinman17

    Label change color after field update?

    I do this ... In the OnCurrent event of the form and in the AfterUpdate event of the textbox, put Me![Label].BackColor = IIf(IsNull(Me![textbox]), 255, 16777215) Bob
  3. Walkinman17

    Tabbed form and Got Focus

    I think this is what you are looking for-- In form Design View, click on the tab with the listbox (it should show up in the property sheet as a 'Page'). In its OnClick event procedure, put me!WhateverIsTheListboxName.SetFocus me!WhateverIsTheListboxName.Requery Bob
  4. Walkinman17

    combo box problems

    ...and what I'm trying to do is post in my sleep. Here's the rest of it. Put combo270 in the header of the form that you want to use to edit your data. Click on its EVENTS tab and put [Event Procedure] on the AfterUpdate line and click the button with 3 dots. Paste in the sample code that...
  5. Walkinman17

    combo box problems

    I think you are trying to do this -- Private Sub combo270_AfterUpdate() Dim rs As Object Set rs = Me.Recordset.Clone rs.FindFirst "[propertyNo] = " & Chr(34) & Me![combo270] & Chr(34) Me.Bookmark = rs.Bookmark Set rs = Nothing End Sub Bob
  6. Walkinman17

    Option Group Report VBA

    try it with an apostrophe (') before me.visible =false in SeeThru's code Bob
  7. Walkinman17

    Print one page sub report from subform

    Quotation marks (single and double) are tricky. You have Me.Filter = "Project = "" & Forms!ProjectSub!Project & """ Try Me.Filter = "Project = " & "'" & Forms!ProjectSub!Project & "'" w17
  8. Walkinman17

    Parameter Problem

    Mailing labels will likely use Trim()... each line would be a TextBox with a Control Source like: =Trim([Firstname] & " " & [Lastname]) If you are missing the arguments -- the stuff in () --it would be treated as a Parameter... walkinman17
  9. Walkinman17

    Suppress Property Sheet in Form View

    This drove me crazy when I was just starting to build apps. The property sheets kept opening up while I (or my humorless Users) was using the app. You stop this by setting ALLOW DESIGN CHANGES to "Design View Only". walkinman17

Part and Inventory Search

Back
Top