Recent content by reedhillltd

  1. R

    create a forum that changes values in a HTML Template

    I Am working on a Access database that will build a excel spread sheet, that will be uploaded to Ebay via file exchange. I am looking to build a forum that will edit parts of a Html text in a column, such as the size and color. I have very little vba coding experience
  2. R

    VBA code to replace chr10 and chr13 to space

    is there any way I can make a button in my form that when clicked will run both queries automatically
  3. R

    VBA code to replace chr10 and chr13 to space

    thankyou for the reply in need to replace both chr10 and chr13 at the same time is there any way to run two replace functions within one field
  4. R

    VBA code to replace chr10 and chr13 to space

    Hello I'm working on an eBay uploader access program for Ebay's File Manager Our description contains line feeds and carriage returns. I have very little knowledge of Vba, and I can t find any tutorials on how to replace the characters with spaces on how to program this. The table is called...
  5. R

    Code to remove line breaks in table

    When I enter the data into the query Update table Set field = replace(*description, Chr(10), "Chr(32)") WHERE field LIKE "Chr(32)" & Chr(10) & "Chr(32)" I get a invalid syntax error You may have entered an operand without an operator What Am I doing wrong?
  6. R

    Code to remove line breaks in table

    Hello I programming a eBay upholder, and having an issue with the description, as there cant be any line breaks in the column. I have little knowledge of Vba programming. I think I can use the replace command to change the line breaks to spaces. But I cannot figure out how to implement it.
Back
Top Bottom