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 IamaSherpa 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. jacquid

    datatype error when converting database to prior access version

    I am on access 2000 and I need to convert the database to a prior version to send the database to my client. But when I run the convert database to prior access version (tools->database utilities) I get the following error: "Invalid field data type" , "some errors happend during...
  2. jacquid

    Export fixed width file with schema.ini

    Shep, I am aware of the description in Access 2000) help re TransferText Specification Name but it states "you must either specify an argument or use a schema.ini file" - which does not help if you do not know how to create a schema.ini. The agrument I managed to create using the...
  3. jacquid

    Export fixed width file with schema.ini

    I have been using a macro with the Transfer text action to export data. I had a problem with my machine and it got formatted. Now when I attempt to run the macro I get the following error :"The data being formated does not match the described in the schema.ini file." As far as I...
  4. jacquid

    Export fixed width file with schema.ini

    I have been using a macro with the Transfer text action to export data. I had a problem with my machine and it got formatted. Now when I attempt to run the macro I get the following error :"The data being formated does not match the described in the schema.ini file." As far as I...
  5. jacquid

    ODBC with multiple databases

    According to the MS access Help the System DSN or Machine data sources, has the following attributes: "Machine data sources store connection information in the Windows Registry on a specific computer with a user-defined name. You can use machine data sources only on the computer they are...
  6. jacquid

    ODBC with multiple databases

    I have set-up one System-DSN with a generic data source name. I hoped to just override the database name to point to the database I would like to access at that point in time. But I now discovered that when you link the table, the table properties store the database in the description...
  7. jacquid

    Parameter Query with defaults

    The code did not work but I found an alternative - place a default on the input box.
  8. jacquid

    ODBC with multiple databases

    I have set-up one System-DSN with a generic data source name. I hoped to just override the database name to point to the database I would like to access at that point in time. But I now discovered that when you link the table, the table properties store the database in the description...
  9. jacquid

    Parameter Query with defaults

    I got the idea to call the query from a form from "SAMs Teach Yourself MS access 2000 in 21 days" pg. 448 Thanx for the VB - I will try it.
  10. jacquid

    How do I write a function to return Initials from a Name string

    After removing the "AS string" I get the following error message: "complie error: expected variable or procedure, not module"
  11. jacquid

    How do I write a function to return Initials from a Name string

    When I try the debug I get the following error on the first line of code - "complie error: Expected: expression" line of code highlighted - "Public Function MyInitials(strName As String) As String"
  12. jacquid

    How do I write a function to return Initials from a Name string

    What is the difference between Left$() and Left()?
  13. jacquid

    Parameter Query with defaults

    Button code: Private Sub cmdOpen_Click() On Error GoTo Err_cmdOpen_Click Dim stDocName As String stDocName = "SwitchConfL-0-1-MainExtract-Qry" DoCmd.OpenQuery stDocName, acNormal, acEdit Exit_cmdOpen_Click: Exit Sub Err_cmdOpen_Click: MsgBox Err.Description...
  14. jacquid

    How do I write a function to return Initials from a Name string

    SQL : SELECT DISTINCT [SwitchConfL-00-MainExtract-Tbl].cl_number, [SwitchConfL-03-AgentInfo-Tbl].given_names, Initials([given_names]) AS Test FROM ... MODULE CODE: Public Function Initials(strName As String) As String Dim strInitials As String 'do the left$, instr$ stuff here and put...
  15. jacquid

    How do I write a function to return Initials from a Name string

    Thanx, I created the function but now when I try use it in Query I get the following error: &quot;Undefined function <name> in expression. (Error 3085)&quot; - Help! I added the function to the query using the build wizard.
  16. jacquid

    Parameter Query with defaults

    My VB is limited how would I achive this?
  17. jacquid

    How do I write a function to return Initials from a Name string

    I have never used modules before and my VB is extremely limited. Could you give an example of how to achieve this?
  18. jacquid

    How do I write a function to return Initials from a Name string

    What I wanted to do was write one &quot;re-useable&quot; function in VB! Currently I am using Instr, left & mid - this works fine. I want to do something a little more involved that I can re-use with little effort.

Part and Inventory Search

Back
Top