Search results

  1. L

    Help wanted

    Livmanto@yahoo.com
  2. L

    Text Box Control Source???

    Try using the name of your textbox like me.textbox1.value
  3. L

    global change for end users

    I think thats outside Access capability, more of Windows... You can just replace the existing database instead with the new one, move the old one to another place.
  4. L

    Get name of control that initiates an action

    Control Tip Text Property? in properties?--ALL
  5. L

    Link tables

    Set up empty tables but are pre-linked... Go to tools, relationships.. Then feed those tables from your outside tables. You have to create delete all, then insert into sqls.
  6. L

    Age Calculations Help DEADLINE TODAY

    round = rounds it up to 2 decimal places. Now() = todays date. "d" = days so divided by 364 (or +.25) for every day in a year.. Expr1: round((DateDiff("d",[Contacts]![bday],Now())/364),2)
  7. L

    Finding duplicate records

    Union SQL all client fields plus the table where they come from: For example: Select client_name, '1996 Table' as OrigTable from Table1996 union ALL Select client_name, '1997 Table' as OrigTable from Table1997 union ALL Select client_name, '1998 Table' as OrigTable from Table1998 union ALL...
  8. L

    Finding duplicate records

    Design query, find duplicates
  9. L

    Remove rows with all zeros

    Change the recordset of the subform to a query instead. Design form of the form, click on the left corner box, click on record Source, create a query filtering out the zeros.
  10. L

    Galactic Delivery Services

    Go to the end of the book, Index, Galactic download, page 116. http://books.mcgraw-hill.com/getpage.php?page=osborne_downloads_centercontent.php&template=osborne
  11. L

    SQL Query Help

    Create an IF then else if all then Select * From Records
  12. L

    Not able to append.

    Yes Paul, it occured to me that it was based on a query but you did say it was based on a table. So check your recordset, open it as a query dataset, if the navigation button below hides the new record, then your query is not updateable. you can take out the appended table and just create a...
  13. L

    Not able to append.

    Check the properties - Data Entry, should be yes
  14. L

    Sub Reports and #errors

    Is the report's recordsource based on a query? where are you putting the formula?
  15. L

    Sub Reports and #errors

    IS this how you did it? IIF(nz([Ship],0) <>0, nz([order], 0) -nz([ship], 0) ,nz([order],0))
  16. L

    Check if Textbox Text in a ComboBox

    If the user enters data, you have the Before Update Event/After Update event. After update, put the value of the text box in a variable, compare it in the combo box, etc. Start testing it. After Update event msgbox me.textbox.value. ------------ then create a variable Its a whole...
  17. L

    Copy query, report, etc. to another database

    if both are access databases, just drag the object to the next database.
  18. L

    Sub Reports and #errors

    nz function.
  19. L

    Access 2003 security warning

    I would guess its your network security / firewall? Check with your network admin. If its a personal computer, check your security settings.
  20. L

    Setting field widths in an export

    Try exporting it to a ready made empty table where the field is set to field type "memo" or whatever your software use for text data that has more than 255 chars.
Back
Top Bottom