Recent content by chanchal

  1. C

    Generate Html page from access

    I have made an application which can generate html page from access. The html codes are stored in table import and field name like L1,L2,L3......... these field keep the html code. i have made a form called export which has a button name cmdExport. Export button can generate html page but the...
  2. C

    Export shtml page from access

    I want to export a shtml page from access but access added some double qoute in it but i want to remove this. is it possible. my code is DoCmd.TransferText acExportDelim, "c:\file\test.htm", _ "Export", True how can i remove this double qoute from the exported htm file can any one know...
  3. C

    concatenate ""(double quote) with any other string

    I want to concatenate ""(double quote) like any other string how can i do it like this:"<html>" & """ & "<html>" but it will just create a blank space. I need to print "" as a string how can i do it. i have some shtml page. The codes are the same except for <img> tag i have to insert...
  4. C

    how to import doc file into access table

    how can i insert .doc file text into the access table i have created a from and placed a button on to it. in buttons click event i have wrote this: DoCmd.TransferText acExportDelim, ".doc", _ "import", "C:\44\April.doc" but it does not work. so what will i have to do to make it work...
  5. C

    numbering sequence

    I have to insert number sequentially in the sequence table. i don't want to use auto number instead of i want to use query to insert number. In the serial no field number should be inserted sequentially like 1,2,3,4,5 and also it should go to frist record then inserted number sequencially...
Back
Top Bottom