Search results

  1. wazz

    link

    i recently discovered this sub-site of tech republic. in case you need a diversion: http://blogs.techrepublic.com.com/itdojo/
  2. wazz

    Graduate degree worth it?

    a blogger's rant (with discussion afterward): http://blogs.techrepublic.com.com/programming-and-development/?p=368
  3. wazz

    Form Not Opening To DblClick Event Filter

    some more ideas in sample. i moved contact data to a new table plus some other things.
  4. wazz

    Tip 10+ things that are broken in Access 2007

    that's interesting. i haven't touched 2007 yet either. [btw: i just posted the articles for interest's sake (and i think TR is a good website). i don't take them to mean '07 suxorz and i won't go near it - every version has its issues.] bob, (or anyone), don't you run into "compatibility"...
  5. wazz

    Tip 10+ things that are broken in Access 2007

    update: http://blogs.techrepublic.com.com/10things/?p=1040&tag=nl.e056
  6. wazz

    Question MS Access Templates and Understanding them

    right, i wasn't really complete there. you can let the Nz function return a default automatically if you want, but you can also supply a value if Null is about to be returned.
  7. wazz

    Tabbing between controls (subforms)

    er, not really sure what the problem is. what is or isn't happening?
  8. wazz

    Question MS Access Templates and Understanding them

    Nz (short for Nulls) will return a default value if the item you are looking for, or calculating doesn't return anything. if you're looking up a number and the number isn't found, Nz will return zero. if you're looking for a string and don't get one, Nz will return and empty string (""). so, you...
  9. wazz

    Tabbing between controls (subforms)

    is the subform's Tab Stop property set to Yes?
  10. wazz

    VBA and SQL

    you don't need any of the parentheses. but i think the problem is at the ends of your statements: & "'" ) " should be & " ' ) "
  11. wazz

    Iif Statement reading as text not expression - PLEASE HELP!

    your second IIf statement doesn't make sense. IIf([forms]![Main]![DistrictList]="View all Districts",>0,[forms]![Main]![DistrictList]) >0 by itself doesn't mean anything. with quotes it might - ">0" - but i don't think that's what you're after.
  12. wazz

    Checkboxes to change date fields

    there must be a "reference" error, meaning the name of something is wrong. maybe the code is referring to a control using the wrong name, or code in a control is referring to a field or another control using the wrong name. just check control names and field names and names used in code to make...
  13. wazz

    Validating before submission

    good idea if the person has to be changed. lol.
  14. wazz

    Checkboxes to change date fields

    try(DateAdd("m",12,[Training]) < [RetDate])
  15. wazz

    Validating before submission

    i think dcb said it, but to clarify a bit, the salesperson combo should be based on a query that selects only salespeople associated with the selected job. the job must be selected first. on the afterupdate of the job combo, requery the salesperson combo.
  16. wazz

    Checkboxes to change date fields

    IIf([Deployed] = 0, _ IIf(IsNull([OPSEC]), "Not Completed", _ IIf(DateAdd("m", 12, [OPSEC]) < Date, "Overdue", _ IIf(DateAdd("m", 12, [OPSEC]) < Date , [RetDate], DateDiff("d", [Date], [DepDate]) ), _ DateAdd("m", 12, [OPSEC]) ))) you can see the...
  17. wazz

    dlookup

    - create a query with both tables included. - join the tables on slno - add the field [WARRANTYDETAILS].[productcondition] - update (update to) the field you just added to [PRODUCTINSPECTION].[productcondition]. - use copies of the tables, not the originals, just to be safe. - delete...
  18. wazz

    Creating Problem

    and don't forget about the Access templates that are available. and please don't post the same question more than once.
  19. wazz

    Checkboxes to change date fields

    =IIf([Conference]=-1, IIf(DateAdd("m",12,[Training] ) <Date([RetDate]),DateDiff("d",1,[ConfDate]), IIf(IsNull([Training]),"Not Completed", IIf(DateAdd("m",12,[Training])<Date(),"Overdue",DateAdd("m",12,[Training]))))
  20. wazz

    Converting date format in VBA

    dates are stored as numbers. to work with dates in code you must use the m/d/y approach, presumably because Access is made in the states. you can display dates however you like by formatting.
Back
Top Bottom