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 strongm 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. KENTOY

    Calculating the first/last day of the week for the month

    Hi, I have a report that has a parameter which ask for the YEAR and PERIOD (month), can i ask [COLOR=red]how to the get the starting/ending coverage of the day in terms of weeks for that particular month?[/color red] ex. User enter 2006 (year) and 8 (period), the report would generate data...
  2. KENTOY

    Repetitive code...how to create into a global module

    Thanks CaptainD and Eupher, it worked... maybe its too much caffeine.
  3. KENTOY

    Repetitive code...how to create into a global module

    Hi guys, i created my module using the code below Sub ActiveControl_Enter(frm As Form) On Error GoTo Err_ActiveControl_Enter With frm.ActiveControl .Properties("BorderStyle") = 1 .Properties("BorderWidth") = 2 .Properties("BorderColor") = vbRed End With...
  4. KENTOY

    Repetitive code...how to create into a global module

    Hi, I'm quite a beginner in access/vba/vb code, so please bear with me... Anyways i have forms that have this repeating code Sub ActiveControl_Enter() With Me.ActiveControl .Properties("BorderStyle") = 1 .Properties("BorderWidth") = 2 .Properties("BorderColor") =...
  5. KENTOY

    Sending/Receiving mails from 2 servers and different domains.

    a simple dns setting did the trick, talking about secure and unsecure mode. ciao
  6. KENTOY

    Sending/Receiving mails from 2 servers and different domains.

    Hi guys, I have two servers running merak mail server having this configuration: Server 1: users@domain1.com able to send/receive mails within this domain... Server 2: users@domain2.com able to send/receive mails within this domain... I would like users@domain1.com be able to send/receive...
  7. KENTOY

    using MSHFlexgrid control in parent/child

    zyrag, you can use the vb data form wizard and then you can look the code snippet with comments. open vb, if you cant find the "vb data form wizard" create a stand-alone exe, then add form the wizard will pop-up...just the follow the instructions. hope this helps... kentoy
  8. KENTOY

    How to increment a calculated field?

    Can anybody show me how to increment a calculated field based on a continous subform. I want to display the line number for every order he makes. thanks kentoy
  9. KENTOY

    Need help displaying a record in a form...

    These are the table i have: Customer - fields (Id, CustName,... RepName) SaleRep - field (Id, RepName) Orders - field (Id, CustName, OrderNo, OrderDate) I have a Orders Form (control source Orders table) containing a combo box for customer name, when the user selects a particular customer, i...

Part and Inventory Search

Back
Top