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 strongm 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. LDeMaio

    Microsoft Access to AS/400 Link Table Error!!!

    I upgraded to Access 2000 and I'm getting the same error. I use both IBM Client Access and HiT Software to connect to the data on the AS400. Both give me that error. If I run the application it crashes with the message: The instruction at "0x65009f45" referenced memory at...
  2. LDeMaio

    ODBC link between AS/400 and MS Access

    You can not control it from Access but you can on the AS/400. Have the AS/400 administrator create a logical file (view) with only the 5 fields you need from the physical file. Then just connect to the logical file.
  3. LDeMaio

    E-mail address lookup probs

    The code I gave you works also. You just forgot the single quotes that need to surround the variable. One goes after the equals (=) sign and before the second double quotes ("). The other one goes between the ending pair of double quotes. Look at my example again. Larry SDC
  4. LDeMaio

    E-mail address lookup probs

    Where is the email address kept? If it is in the same table as the personnel data you can just save it with the project data. If it is in a different table you need to know and save the key field data that relates the email address to the employee saved with the project. Then you can use the...
  5. LDeMaio

    FORM GOES BLANK WHEN OPENED

    So what caused the problem? What is the fix? Share please! Larry SDC
  6. LDeMaio

    Access 97 - Convert to MDE

    You could have a compiling error. Open any window containing text like a module or form event. Go to Debug on the toolbar. Click Compile All Modules. If an error ocurrs fix it and repeat the process until there are none. Now try creating the MDE. Hope this helps. Larry SDC
  7. LDeMaio

    Dim Statment (Global VS. Public or standard)

    By definition GLOBAL variables are available throughout the application or database, in this case. Every variable takes up memory. While it does not hurt to have some GLOBAL variables, it has been my experience and understanding that if you can get the job done with standard (PUBLIC and PRIVATE)...
  8. LDeMaio

    Change field to lookup without losing info???

    Beth, If I understand your question, you can just change the field names with no problem. The lookups will still remain with those fields no matter their names. Make a copy of the table and test it. If you want, you can create a copy of the table, delete all the records in the original, change...
  9. LDeMaio

    Add more conditions to DCount textbox

    =DCount("*","tbl","[columnX] = 'A'") To add more conditions: =DCount("*","tbl","[columnX] = 'A' and [columnY] = 'B'") if using variables: =DCount("*","tbl","[columnX] = '" & VarA & "' and [columnY]...
  10. LDeMaio

    Changing "Allow Edits" on a form containing a subform

    I believe that the parent's properties supercede the child's. So, when you created and set the parent form's properties to FALSE, the child inherited them. When you code the parent to all the changes, the child still has the inherited properties. The key words here are 'created' and 'code'. I'm...
  11. LDeMaio

    year-to-date totals in query or report

    Use the DSUM function. Place it in the Control Source property. Here is an example. =DSum("[Hours]","tHistorySummary","[year] = " & [iYear] & " and [CustNo] ='" & [CustomerNo] & "'") This example sums up the hours for a customer in a year...

Part and Inventory Search

Back
Top