Recent content by wcrc

  1. W

    spell check on form causes access to hang

    I had that problem once and fixed it by using the on exit property instead of after update. HTH
  2. W

    populate new record with info from previous record !

    Just so I'm clear on this: You have a set of numbers in a batch (example 1-100), and if the user needs 30 items then you want to give the user item number 1-30. If that is the case how do you track each batch of items? Is this an open ended system that will never restart or will it restart...
  3. W

    help! plz

    you might want to add a YES/NO field to your main table. Then use a comand button to run a query on the subform that looks for items with Yes in that field.
  4. W

    populate new record with info from previous record !

    Is this for keeping a running total number of items ordered? If so, then would an autonumber work here?
  5. W

    mystery error message

    Help? Is there any help for me? I am still lost here.
  6. W

    need a bit of code figured out

    Sorry so long on the reply, but I realized after your post that I was trying to effect a table property (Required) in a form field. Once I changed the target to the table, it worked. Thanks for the help.
  7. W

    mystery error message

    I presently have snapshot viewer 9.0 on top of the fact that I am running Access2k. The weird thing is that there are 4 reports that should save into snapshot format, but 3 of them have this problem. The code is identical except for the file naming tags. Does this help?
  8. W

    mystery error message

    I get the following error when I try to automatically save my report in .snp format. "The formats that enable you to output data as a Microsoft Excel, rich-text-format, MS-DOS test, or HTML file are missing from the Windows registry" This is the command button code: ------ Private Sub...
  9. W

    need a bit of code figured out

    This code doesn't work! That shouldn't suprise you supercoders, but I don't know how else to write this statement. Any help? Code: Private Sub Equipment_Status_AfterUpdate() If Equipment_Status = "AWP" Then Me!subJob_Desc.Parts_Date.Required = True End If End Sub Effectively, I would like...
  10. W

    I have to retype the same thing twice!

    As I said it was easy. I found that Autocorrect was on and that was causing the problem.
  11. W

    I have to retype the same thing twice!

    I am pretty sure that this is going to be simple, but I can't figure it out. I have a datasheet subform that will highlight all of the text entered in a field after a short pause in typing. i.e. I type "ABC{pause}D". I will always end up typing over "ABC", ending up with just "D". I had...
  12. W

    Null Criteria

    You could try to use the Query builder and use the IS null property on the second line . In essence saying betweeen date1 and date2 OR Is Null Try this: Criteria Between [Forms]![Find_Record_Form]![Purchased_From2] And [Forms]![Find_Record_Form]![Purchased_To2] Second line Is Null
  13. W

    Inefficient way to update table

    I want to scream over this one, but please bear with me. I have a field in form that concatenates 2 fields from a table, the powers that be, want to store this calculated value as a joined field with another table. (bang head here) I presently use a make table query to concatenate the field...
  14. W

    Set savename of report.snp

    That worked like a charm Thanks again
  15. W

    Set savename of report.snp

    Sorry for the delay in the reply but the boss needed me for super important *mundane* server tasks. Is there a way have this output to a snapshot vs a report format? This is about as good as I have been able to get. DoCmd.OpenReport stDocName, acPreview DoCmd.OutputTo.acOutputReport ...
Back
Top Bottom