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 Chris Miller 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. mkrauss

    Enter key moves to next record

    Perfect - everything is working as planned. I only had to make a small change to the code entered in the subform. It was easy to fix thanks to all your examples. Private Sub Form_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then Call Form_frmTimeCard.Form_KeyPress(13) End If End Sub...
  2. mkrauss

    Enter key moves to next record

    Thanks for your help, this works great when the current focus is in the main form. What I would like to happen is that even if the current focus is in the subform and I press enter, the next main form is selected. I tried to get the code you gave me to work in the subform, but to no avail...
  3. mkrauss

    Enter key moves to next record

    I have a simple time entry form with a subform that I use to enter the number of hours spent on a project each day of the week. Each new record on the main form is a new work week. Currently, everytime I press the tab key it moves to the next field. The tab key is working as I would like...
  4. mkrauss

    Conditionally Shrink Footer/Header

    Thanks Duane. This worked perfectly. Mike
  5. mkrauss

    Conditionally Shrink Footer/Header

    I have three groupings each with a header and two footers. The footers and headers contain text boxes that will never be null. For example, the footers contain sumations. The problem is that I want the headers and footers to not print and shrink to zero for two of the three groupings. I've...
  6. mkrauss

    Custom Number Format

    Exactly what I meant! Thanks, Mike
  7. mkrauss

    Custom Number Format

    Is it possible to create a custom number format so that negative numbers will be displayed in parenthesis on reports? I basically would like the numbers on my reports to look as if the "Accounting" format found in Excel had been used. Currently, all my numbers are formatted as "Standard"...
  8. mkrauss

    Header Centering

    Never mind! I was able to figure it out so that it looks the way I want. Thanks, Mike
  9. mkrauss

    Header Centering

    Is there a way to have the text/control boxes in the header center horizontally on the report each time it is run. Depending on the month of the report, the text becomes longer or shorter (May being short, September being long). Thus, the text appears skewed when the month changes. For...

Part and Inventory Search

Back
Top