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. CharmCityRob

    INSERT statement problem

    Works like a champ
  2. CharmCityRob

    INSERT statement problem

    I was able to fix it in the function by changing GetFileNameBrowse = Trim(OpenFile.lpstrFile) To GetFileNameBrowse = left(OpenFile.lpstrFile, InStr(1, OpenFile.lpstrFile, vbNullChar) - 1)
  3. CharmCityRob

    INSERT statement problem

    I did a Len(txtFileName) and it is returning 257. It is not doing the Trim in the function properly and I can't see to trim it properly using any method. Ideas?
  4. CharmCityRob

    INSERT statement problem

    And here is the debug lines that you asked for ***Rob Test 9*** ***C:\Error.log
  5. CharmCityRob

    INSERT statement problem

    Ok, I think i have isolated the problem but not sure how to resolve it. For the OnClick event for the command button which allows the user to browse, i am using this function which is from an O'Reilly access book. The code is doing something to the textbox, just not sure what because if I just...
  6. CharmCityRob

    INSERT statement problem

    Yup, thats the problem. Any ideas on how to get it to include that in the SQL statement? As you can see my INSERT statement has that but is not being added. I believe it has to do with the slashes in the path... \ is an escape character is it not?
  7. CharmCityRob

    INSERT statement problem

    Debug Output of strSQL: INSERT INTO tblSiteFileAttachments(siteID, faFileDescription, faFileName) VALUES (1006, '4-13 Error Log', 'C:\Error.log and the Error is: Error Number: 3075 Error Description: Syntax error in string in query expression ''C:\Error.log'.
  8. CharmCityRob

    INSERT statement problem

    I have a form where users can add file links to supporting documentation. I am storing the SiteID, along with the file description and file path of the file they browse to. The problem is the path contains \ in the UNC path and I am getting an error on the INSERT statement. Can someone please...
  9. CharmCityRob

    HELP --- structure for project management db

    I am trying to wrap my head around an idea we are throwing around at work. Our team is responsible for the project management of multiple types of IT projects. Historically, we have restarted each project with the same list of our sites and contacts (which remain relatively constant for all...
  10. CharmCityRob

    Table structure to handle Bill of Materials

    I am working on a project in which we receive and track Bill of Materials for a network project we are doing. The bill of material is layed out as so: Header Bill of Material number Bill of Material date site id where it will be installed engineer responsbile for installation Details product...

Part and Inventory Search

Back
Top