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 derfloh 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. dab3141592

    Need some help!!!!!!!!!!!!!

    I've noticed a couple of things with your code. First of all, Date_Closed.Visible = Now() doesn't seem like an appropriate line. Try using True instead. Secondly, Tab Controls do not have an AfterUpdate event. In your Form_Current() method try something like this Private Sub...
  2. dab3141592

    Convert number of weeks to a date

    You can try using : DateAdd( "ww", weeks, date1 )
  3. dab3141592

    Checking whether a field exists in report's recordset

    You should be able to use the RecordSource property to get the data source for the report. You can open a new Recordset based on the report source, then use the method that you used on the form. I've written the example below using an ADO Recordset, but you should get the idea. Dim rst...

Part and Inventory Search

Back
Top