Search:

Type: Posts; User: THWatson; Keyword(s):

Page 1 of 19 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    596

    Thanks, Cronk. Yes, I see what you mean by the...

    Thanks, Cronk. Yes, I see what you mean by the misplacement of the "2"

    Tom
  2. Replies
    4
    Views
    596

    RG Thanks for the input. To clarify, here are...

    RG
    Thanks for the input.

    To clarify, here are the steps.
    1. The user input the varied Materials in fsubMaterials
    2. The text box in the footer of fsubMaterials sums the cost of those Materials....
  3. Replies
    4
    Views
    596

    Proper use of Round function

    Using Access 2007

    On a form, I have a text box that pulls the total of Materials ordered from a subform fsubMaterials. The Materials are then marked up by the contractor, with a default of 20% but...
  4. Replies
    8
    Views
    1,435

    In Windows Media Player I clicked on Help and...

    In Windows Media Player I clicked on Help and then Technical Information. Here is the video part of what shows:
    Video Codecs

    TypeNameFormatBinaryVersion

    ICM
    Microsoft RLE
    MRLE
    msrle32.dll...
  5. Replies
    8
    Views
    1,435

    Zig Could be. How do I check...or...

    Zig
    Could be. How do I check...or correct...that?

    Tom
  6. Replies
    8
    Views
    1,435

    Windows Media Player

    Subject: Using Windows Media Player in Windows 7
    I wonder if anyone else has noted a problem with Windows Media Player. About 3 weeks ago WMP started acting up. It won't recognize a CD or DVD with...
  7. Hi John Right you are. I'm still working on...

    Hi John
    Right you are.

    I'm still working on that aspect. The user goes to an unbound form that only has two List Boxes. One is a List Box which is a Value List of months January through December....
  8. Tom Wickerath's "rounding" of the Wedding...

    Tom Wickerath's "rounding" of the Wedding Anniversary date fixed that part.

    I changed "Month" to "TheMonth" and "Day" to "TheDay" in the query so as not to use reserved words.

    The entire query...
  9. Incorrect query results when calling for report

    Using Access 2007

    A members' database. On a form the user selects the month for which a report is desired. This calls for a report of members' wedding anniversaries occurring in the month selected...
  10. Thread: Date function

    by THWatson
    Replies
    1
    Views
    311

    Using Access 2000 A table has a Date field...

    Using Access 2000

    A table has a Date field called CurDate, set to the default date of new record entered.

    On a form, I would like shown:
    If CurDate is between January 1 and June 30 of a given...
  11. Replies
    4
    Views
    1,409

    That's got it. Thanks so much. I looked long and...

    That's got it. Thanks so much. I looked long and hard trying to figure that out.

    Greatly appreciated.

    Tom
  12. Replies
    4
    Views
    1,409

    Here's the entire Before Update code. I didn't...

    Here's the entire Before Update code. I didn't include the first part in order to simplify.

    You will note that the test for a new record is included in the code. The piece I posted was in an...
  13. Replies
    4
    Views
    1,409

    Using Access 2003 (2000 format) I have custom...

    Using Access 2003 (2000 format)

    I have custom navigation buttons on a form. The BeforeUpdate for the form includes the following code:

    If IsNull(Me.Status) Then
    Me.Status = "Active"

    Select...
  14. Replies
    2
    Views
    267

    Actually, the following works... Like "*[#]*" ...

    Actually, the following works...
    Like "*[#]*"

    Tom
  15. Replies
    2
    Views
    267

    Using Access 2003(2000 format) I want to be...

    Using Access 2003(2000 format)

    I want to be able to find records with a # sign in an Address2 field.

    Entries in the field are like
    RR 7
    R.R. #22
    RR #4

    Seems as if Access treats numbers as...
  16. Replies
    57
    Views
    2,096

    The other thing I can do, I suppose, is to put a...

    The other thing I can do, I suppose, is to put a label on the bottom of frmTrinity, indicating Canada Post guidelines for entering Streets and Street Directions

    Tom
  17. Replies
    57
    Views
    2,096

    I have used a modification of PeterN's...

    I have used a modification of PeterN's suggestion.

    1. Created a new field in tblTrinity for the Apartment/Suite/Unit/Room number
    2. Linked tblTrinity with tblRetirementHome by RetHomeID (one to...
  18. Replies
    12
    Views
    697

    Stephane You have captured the picture...

    Stephane
    You have captured the picture correctly. And there is no simple solution. But since these particular collection of streets (Wellington Rd. 22, 29 and 39) is the only anomaly, I'm going to...
  19. Replies
    12
    Views
    697

    mbarron Thanks for the offer of uploading a...

    mbarron
    Thanks for the offer of uploading a scaled down database, but it's not the easiest thing to do.

    Actually, since it's only this one page of streets that prints out this way, I am deciding...
  20. Replies
    12
    Views
    697

    I also tried this padding... Right("000" &...

    I also tried this padding...
    Right("000" & [HouseNbr],10)

    Same result.

    Tom
  21. Replies
    12
    Views
    697

    In the query I plugged in this column...

    In the query I plugged in this column
    SortHouseNbr: Format([HouseNbr],"0000")

    That does the padding, but it makes no difference in the situation
    5434 Wellington Rd. 39
    7748 Wellington Rd. 22...
  22. Replies
    12
    Views
    697

    The HouseNbr and Street are 2 separate fields to...

    The HouseNbr and Street are 2 separate fields to begin with.

    I'll have to figure out how to pad the HouseNbr. in the query, in order that the sorting comes out properly in the report. Without the...
  23. Replies
    12
    Views
    697

    Re... 5434 Wellington Rd. 39 7748 Wellington...

    Re...
    5434 Wellington Rd. 39
    7748 Wellington Rd. 22
    then 2 addresses on Wellington Rd. 29

    The issue isn't an incorrect sorting. The issue is that Wellington Rd. 39, Wellington Rd. 22 and...
  24. Replies
    12
    Views
    697

    Works perfectly! I am using SortColumn:...

    Works perfectly!
    I am using SortColumn: Right("00000" & Left([FullAddress],InStr([FullAddress]," ")-1),5) & Mid([FullAddress],InStr([FullAddress]," "),99)

    Here's an anomaly.

    The report sort...
  25. Replies
    12
    Views
    697

    Using Access 2003 (2000 format) The field is...

    Using Access 2003 (2000 format)

    The field is text data type. It stores a street number. I can't make it a numeric field because the street number could be something such as 5D or 12C rather than...
Results 1 to 25 of 456
Page 1 of 19 1 2 3 4