PDF Maker - CreatePDF Function in Microsoft Access

How can I use a function (or macro) in Access 2000 or Access 2003 to invoke the PDF Maker? There is a menu option that works fine for some things but I want to force the user to enter certain parameters before I invoke Adobe. I have found some references to a function in Access called CreatePDF but was not able to find any documentation on it. Does anybody have code that has done this in the past?
Many Thanks

Hi,
It is not a question; I just want to share something so many
people ask about.
Ever since newer versions of Acrobat came out my old code
wouldn't generate PDF files, and I spent hours to find a
solution on the Internet. I found that almost everyone wanted to
know how to stop Acrobat displaying the window which asks for
the location and file name to save.
The code I am using is still changes the registry settings, and
it is almost the same what I posted before, but this one has a
new line added:
Private Sub PrintIt_Click()
On Error GoTo Err_PrintIt_Click
Dim oReg As Object
Dim sFile As String
sFile = "C:\DEVELOPMENT\SQLPreparation\PDF_Files\" &
[Forms]![frm_TestReport].[LastName] & " - " &
[Forms]![frm_TestReport].[EntryID] & ".pdf" 'I have 2
textboxes on the form for testing
Set oReg = CreateObject("RegTool5.Registry")
Call oReg.UpdateKey(HKEY_CURRENT_USER,
"Software\Adobe\Acrobat\PDFWriter\", "bExecViewer", "0")
Call oReg.UpdateKey(HKEY_CURRENT_USER,
"Software\Adobe\Acrobat\PDFWriter\", "PDFFileName", sFile)
Call oReg.UpdateKey(HKEY_CURRENT_USER, "Software\Adobe\Acrobat
Distiller\PrinterJobControl\", "C:\Program Files\Microsoft
Office\Office\MSACCESS.EXE", sFile)
DoCmd.OpenReport "rpt_TestReport", acViewNormal
Set oReg = Nothing
MsgBox ("Done!")
Exit_PrintIt_Click:
Exit Sub
Err_PrintIt_Click:
MsgBox Err.Description
Resume Exit_PrintIt_Click
End Sub
This block of code can be used in any loop, giving the file a new
name by each new record, and if the file needs to be emailed,
that function can be added to the loop too.
There are 3 things needed: Regtool5.dll added to references
(downloadable for free from some websites, and needs to be
registered with the following line in the command prompt:
regsvr32 %SystemRoot%\System32\RegTool5.dll), and checking the
Registry if everything is the same as in the code. This applies
to checking on where Access is running from (3rd line of the
Registry update). The third thing is a manual setting in the
printer setting, PDF Writer property window, Advanced tab. There
is a button called Printig defaults, and unchecking the View
Adobe Printing Result would prevent to open the new pdf file
(which is a good thing when printing hundreds of records into
hundreds of files).
Abraham
http://www.genericsmed.com | http://www.generics.ws

Similar Messages

  • Microsoft Access report to pdf-hyperlinks don't work

    Hi,
    Does anyone have a solution to hyperlinks not working when a Microsoft Access report is converted to a pdf?  The hyperlinks work when I am in the Access report, but once I convert to a pdf (Acrobat 9), the links don' t work.
    Thanks,
    Jamie

    How did you convert? In looking at the PDF Maker options for AA8 in ACCESS 2007, there does not seem to be a link button in the preferences. That may the issue and I do not have a solution for that.

  • Microsoft Access forms to pdf with hyperlinks?

    Help needed.
    I can convert Microsoft Word files to PDF and preserve hyperlinks.
    I wrote a new application for our parts department using Microsoft Access.
    When I PDF a form with a particular part displayed, it does not preserve the hyperlinks.
    Now I am in trouble because we need this feature for the engineers to be able to access supporting information about each part (data sheets etc.)
    Since the engineers are used to the "Microsoft Word" earlier version they are not amenable in going "backwards" with the "new" system and not having active hyperlinks to the support documents.
    I have searched everywhere for a solution and so far found nothing that works.
    I am using Acrobat PRO X and Microsoft Access PRO 2010
    please help as my "neck" is on the line...
    thanks
    Richard

    In Access try File->Save as PDF.
    If it's anything like in Word, the Save as PDF function does it a different way (ie. not via Postscript) compared to Acrobat. So you might get a result that way.

  • "RUN-TIME ERROR '3078': The Microsoft Access database engine cannot find the input table or query 'name'. Make sure it exists and that its name is spelled correctly.

     When I run the code below I get the following error:"RUN-TIME ERROR '3078': The Microsoft Access database engine cannot find the input table or query 'False'. Make sure it exists and that its name is spelled correctly. Note that I do not call
    anything by the name of "false" anywhere in this code.
    The subject code (the underscored line of code is highlighted in the debugger when the error occurs):
    Option Compare Database
    Private Sub JobAssign_Click()
    MatLotListAvail_openform
    End Sub
    Function MatLotListAvail_openform()
    Dim dbsAPIShopManager2010 As DAO.Database
    Dim rstMaterialLotJobJoint As DAO.Recordset
    Dim strSQL As String
    Set dbsAPIShopManager2010 = CurrentDb
    strSQL = "SELECT * FROM MaterialLotJobJoint WHERE JobID" = "tempvars!JobID" And "MatLotID" = "tempvars!MatLotID"
    Set rstMaterialLotJobJoint = dbsAPIShopManager2010.OpenRecordset(strSQL, dbOpenDynaset)
    If rstMaterialLotJobJoint.EOF Then
    DoCmd.OpenForm "JobAssignMatConf", acNormal, "", "", acEdit, acNormal
    Forms!JobAssignMatConf!PartapiIDVH = TempVars!PartapiID
    Forms!JobAssignMatConf!JobapiIDVH = TempVars!JobapiID
    Forms!JobAssignMatConf!JobIDVH = TempVars!JobID
    Forms!JobAssignMatConf!MaterialLotIDVH = TempVars!MatLotID
    Forms!JobAssignMatConf!Desc = TempVars!MatDesc
    Forms!JobAssignMatConf!recdate = TempVars!recdate
    DoCmd.Close acForm, "MaterialLotListAvailable"
    Else: MsgBox "This material lot has already been assigned to this job."
    DoCmd.Close acForm, "MaterialLotListAvailable"
    End If
    End Function

    I think the SQL statement should be
    strSQL = "SELECT * FROM MaterialLotJobJoint WHERE JobID=" & _
    tempvars!JobID & " AND MatLotID=" & tempvars!MatLotID
    This assumes thatJobID and MatLotID are number fields.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • How do I open a pdf stored in a Microsoft Access database using Visual Basic studios 2012

    Currently I am unable to find a valid method of being able to open a pdf stored in a Microsoft Access database using Visual Basic studios 2012. I've tried displaying the entire database on a form, but when I do this all the other columns show up with
    the correct data besides the one containing the pdf's, it just displays <binary data> in each row down the column. I also tried another method with which you use the database as a dataset and can drag and drop the rows and columns into the form, which
    again works for all the other columns besides the one containing the pdf's but this time I'm unable to interact with the column  at all. 
    Not too sure if this is in the correct place, but any answers or help would be appreciated. Cheers.

    Alex,
    This forum is dedicated to Project and Project Server. You might get better response, if you post to a Visual Basic forum. Here are couple I could find. 
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral%2Cvblanguage&filter=alltypes&sort=lastpostdesc
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • What is the Oracle equivalent of the Microsoft Access FIRST function?

    Using: Oracle 10gR2 RAC on SUSE Linux 9 (10.2.0.3)
    In the process of converting a Microsoft Access database to Oracle, an Access query is using the FIRST function.
    What is the Oracle equivalent of the Microsoft Access FIRST function?
    In the attempt to convert, the Oracle FIRST_VALUE function was used. However, the same results was not achieved.
    Thanks,
    (BLL)
    Query:
    h2. ACCESS:
    SELECT
         TRE.GCUSNO,
         UCASE([DCUSNO]) AS DCUSNO_STD,
         *FIRST(UCASE([DNAME])) AS DNAME_STD*,
         *FIRST(UCASE([DADDR])) AS DADDR_STD*,
         *FIRST(UCASE([DCITY])) AS DCITY_STD*,
         TRE.DSTATE,
         FIRST(TRE.DZIP) AS DZIP,
         TRE.DREGN,
         TRE.DDIST,
         TRE.DSLSMN,
         TRE.DCHAIN,
         TRE.MARKET,
         TRE.MKTPGM,
         TRE.EUMKT
    FROM
         TRE
    GROUP BY
         TRE.GCUSNO,
         UCASE([DCUSNO]),
         TRE.DSTATE,
         TRE.DREGN,
         TRE.DDIST,
         TRE.DSLSMN,
         TRE.DCHAIN,
         TRE.MARKET,
         TRE.MKTPGM,
         TRE.EUMKT;
    h2. ORACLE:
    SELECT DISTINCT
    TRE.GCUSNO,
    UPPER(TRIM(TRE.DCUSNO)) AS DCUSNO_STD,
    UPPER(TRIM(TRE.DNAME)) AS DNAME_STD,
    UPPER(TRIM(TRE.DADDR)) AS DADDR_STD,
         FIRST_VALUE(UPPER(TRIM(TRE.DNAME)) IGNORE NULLS) OVER (ORDER BY TRE.GCUSNO) AS DNAME_STD,
         FIRST_VALUE(UPPER(TRIM(TRE.DADDR)) IGNORE NULLS) OVER (ORDER BY TRE.GCUSNO) AS DADDR_STD,
         FIRST_VALUE(UPPER(TRIM(TRE.DCITY)) IGNORE NULLS) OVER (ORDER BY TRE.GCUSNO) AS DCITY_STD,
    TRE.DSTATE,
    TRE.DZIP,
    FIRST_VALUE(UPPER(TRIM(TRE.DZIP)) IGNORE NULLS) OVER (ORDER BY TRE.DZIP ASC) AS DZIP,
    TRE.DREGN,
    TRE.DDIST,
    TRE.DSLSMN,
    TRE.DCHAIN,
    TRE.MARKET,
    TRE.MKTPGM,
    TRE.EUMKT
    FROM CRM.TREUP100R TRE
    GROUP BY
    TRE.GCUSNO,
    UPPER(TRIM(TRE.DCUSNO)),
    TRE.DNAME,
    TRE.DADDR,
    TRE.DCITY,
    TRE.DSTATE,
    TRE.DZIP,
    TRE.DREGN,
    TRE.DDIST,
    TRE.DSLSMN,
    TRE.DCHAIN,
    TRE.MARKET,
    TRE.MKTPGM,
    TRE.EUMKT;

    A slight correction to odie's post. I think you want min not max to replicate the Access first function, but see below to be sure. So:
    min(upper(trim(tre.dname))) keep (dense_rank first order by tre.gcusno) as dname_std
    user10860953 wrote:How does one ignore null values?The min and max functions will ignore nulls automatically, so if there is a null value in tre.dname, it will not be be returned, unless all of the values are null. For example:
    SQL> WITH t AS (
      2     SELECT 65 id, 'ABCD' col FROM dual UNION ALL
      3     SELECT 37, 'DEFG' FROM dual UNION ALL
      4     SELECT 65, 'DEFG' FROM dual UNION ALL
      5     SELECT 65, null FROM dual UNION ALL
      6     SELECT 70, null FROM dual UNION ALL
      7     SELECT 70, null FROM dual UNION ALL
      8     SELECT 37, 'ABC' from dual)
      9  SELECT id,
    10         MIN(col) keep (DENSE_RANK FIRST ORDER BY id) min_dname_std,
    11         MAX(col) keep (DENSE_RANK FIRST ORDER BY id) max_dname_std
    12  FROM t
    13  GROUP BY id;
            ID MIN_ MAX_
            37 ABC  DEFG
            65 ABCD DEFG
            70John

  • This database was connected to a Microsoft Access Services site that is not compatible with this version of Microsof Access. You cannot make design changes or modify data in database.

    Hello All,
    I am getting this error while I am connecting my access database website for the change
    "This database was connected to a Microsoft Access Services site that is not compatible with this version of Microsof Access. You cannot make design changes or modify data in database."
    I am using SharePoint 2010 and Microsoft Office 2010.
    I have created one Contact Database Site and now I am trying to modify the layout of the form in Access. and I am getting the error that I have mentioned.
    Please provide help on it.
    Thanks in Advance....

    Hello All,
    I got the answer, we have to enable the port 80 or where the access service is deployed and we have to change Trust setting and also, enable the macro from Access.
    Hope this will help to other....

  • Microsoft Access Reports to PDF - preserving hyperlinks

    Can someone help me figure out how to preserve hyperlinks from an Access report? I've built an application that stores project information along with embedded hyperlinks to source files on our shared server. Although I've been successful with preserving links in Word documents when converting to PDF, when I try to print or convert from the Access report, the links are no longer active in the PDF (although they show up as the familiar blue hyperlink text.)
    Thanks,
    Jeff

    Generally you would use the create PDF icon (what is called PDF Maker) on the toolbar. You can set the properties in the Acrobat (or Adobe PDF, depending on versions) menu on the Access menu bar. PDF Maker allows for adding links and such to the PDF. If you print to the Adobe PDF printer, you will simply get something that looks identical, but will have no bookmarks, links, or related items. Basically PDF Maker is a preprocessor for the printer that adds PDF Marks that are required for creating the links from ACCESS. Otherwise, the links that you see in the PDF are the best guess of Acrobat or Reader when it sees what appears to be a URL.

  • Calibre type function in organizing my scanned pdf books and make it functional for index

    After scanning books and articles into pdf digital format whats next? Need to make it functional. Index books and able to use it like a library function.
    Medical info - type in words and search the library of digital files? How is it done.

    Hi Titonull,
    You may check this video to create bookmarks: http://tv.adobe.com/watch/acrobat-x-tips-tricks/how-to-add-pdf-bookmarks-to-a-document/
    Also you may check other video tutorial for Acrobat: Acrobat X Tips & Tricks | Adobe TV
    Regards,
    Ajlan Huda.

  • Error message: Missing PDF maker files in Word 2007

    OK, I am beyond frustrated. I have had nothing but trouble with Windows Vista and Adobe Acrobat. Please help!!!
    What happens: first, the pdf addin for Word 2007 suddenly becomes disabled, for no apparent reason. Forget about trying to re-enable it through the Add-Ins menu, because Word tells me that the "connected state of Office Add-Ins registered in the HKEY_LOCAL_MACHINE cannot be changed". This is a problem for me, because I use a special font (Vietnamese) that sometimes gets corrupted when running pdf maker. The only consistent way I have found to avoid this problem is to run the pdf maker as "Quick PDF" and as far as I can see that option is only available through the pdf addin in Word, I have never been able to find it when I open the Acrobat program and create a pdf from there.
    Second problem: shortly after the pdf addin becomes disabled, my Acrobat program loses the ability to create pdfs altogether. I get the error message "Missing PDF maker files". Yes, I have tried repairing the installation and re-starting my computer per the instructions given. It doesn't fix the problem. I also tried looking in the Knowledge Database on this website, but it appears that the instructions they have to fix the problem there are for earlier versions of Word, not 2007, because my version of word does not look like the version of Word in their little videos.
    This is the second time this has happened. The first time I resolved the problem by a) re-installing Acrobat, which is a pain because it involves calling Adobe and wading through their customer service to get a new installation number, and b) paying a computer repair service to dig deep into the guts of my computer and convince it to change the Office Add-ins to allow the pdf addin again. It worked for about 6 months, and now I have the same problem again. For some reason Vista is spontaneously disabling Acrobat.
    I simply cannot deal with this every few months. We all know that Vista is a crappy program, but I run a business and I need a program that works with whatever crappy program Microsoft puts out. Please, can anyone give me suggestions about how to re-enable these functions when Vista disables them?
    Thanks in advance!
    Alycia

    for Office 2007, see if this Microsoft product will work for you
    http://www.microsoft.com/downloads/details.aspx?FamilyId=4D951911-3E7E-4AE6-B059-A2E79ED87 041&displaylang=en

  • Custom File Extension for Microsoft Access Text Driver (*.txt, *.csv)

    I'm trying to use a custom file extension for the Microsoft Access Text Driver (*.txt, *.csv) driver.
    I have updated the FileExtns registry to have my new extension.
    When I issue the following it does not work.
    select [NoName] 
    from openrowset('MSDASQL'
               ,'Driver={Microsoft Access Text Driver (*.txt, *.csv)};
                    DefaultDir=c:\filedir'
               ,'select * from "file.lst"')
    If I make the file a .csv it works fine.  However, if it has an extension of not CSV or TXT (in this case .lst, which is in the registry setting) extension it throws the following error and cannot seem to find a solution to it. 
    OLE DB provider "MSDASQL" for linked server "(null)" returned message "[Microsoft][ODBC Text Driver] Cannot update. Database or object is read-only.". Msg 7350, Level 16, State 2, Line 1 Cannot get the column information from
    OLE DB provider "MSDASQL" for linked server "(null)".
    In addition, (although I can probably find this elsewhere), I need to have the first line 'BLANK' so that it does not miss data (there is no header row).  Is there  a way to use OPENROWSET without BULK to basically include all rows as data?
    Any help is appreciated.

    Hi,
    According to your description, I did a test with your script, and got the same message as your post. Usually, by default, the Microsoft Access Text Driver (*.txt, *.csv) supports the four extensions file, such as *.asc, *.csv, *.tab, *.txt. To solve this issue,
    I recommend you try to save the LST file in the above format, then use OPENROESET to get data from the supported extensions file in SQL Server.
    In addition, the
    OPENROWSET function is mainly used to retrieve remote data from an OLEDB data source, when you use OPENROWSET without BULK, provider_name is a necessary parameter in the script. However, the OPENROWSET (BULK...) is mainly called from a SELECT…FROM clause
    within an INSERT statement, when importing bulk data from a data file into SQL Server table. Thus if you need to import bulk data, you should use the basic  syntax: INSERT ... SELECT * FROM OPENROWSET(BULK...), also there are some alternatives, such as
    BULK INSERT
    and
    BCP .
    Thanks
    Lydia Zhang

  • How do you create a macro for Acrobat Convert Multiple Reports action in Microsoft Access

    I have several reports in microsoft access and I've been able to combine them into a single PDF file using the Acrobat Convert Multiple Reports feature. Is there a way to create a macro for this action? I would like to create a time event for this procedure.
    Any help I get on this is greatly appreciated.
    Thanks

    CTPetEng,
    Since this question is not related to CreatePDF, but rather to Acrobat, I'm moving your question to the Acrobat forum.
    Dave

  • PDF Maker Add-In

    I have a machine with Windows 8, Office 2013 and Acrobat X.  I'm having trouble with the PDF maker add-in.  In Word and Excel, the add-in is listed as "active" but I have no Acrobat toolbar and it does not appear on the ribbon.  In Outlook, the add-in is listed as "inactive".  It allows me to check the box to activate it, but remains in the "inactive" list regardless of how many times I try to activate it.  We have another machine in the office that uses the same hardware and same software versions, and the add-ins work on it just fine.  I have run updates on the office and Acrobat software, uninstalled and reinstalled, and ran "repair" on both multiple times and still have the same issue.  Help!

    Hi Ludy,
    If you insist that the plugin is working fine on the othe rmahine then you can try the following:
    Check the status of the add in Office 2013 >File > Options > Add ins > COM Addins > Go,
    The add in tries to configure for the first time and if proper permissions are not there, it fails to load and Office disables the add in.
    Try launching Office 2013 as Administrator, i.e. right click on Office icon and select 'Run as Administrator' and then check.
    Do also create a new user account and check the behavior.
    Also update Acrobat 10 to the latest version and check.
    Try repairing Acrobat by going to the help menu > Repair acrobat.
    In addition to the above you can check the following within the Office Application :
    Enable PDFMakerOfficeAddin from the Microsoft Office application's Disabled Items list.
    Open the Microsoft Office program (Word, Excel, Publisher, or PowerPoint).
    Open any Blank document and Click the 'File' menu button, then click the ' Options' button.
    Click Add-Ins.
    From the Manage dropdown list select Disabled Items and click Go.
    Check the list for PDFMakerOfficeAddin:
    If it is listed, then select it and click Enable. Close all dialog boxes and restart the Office application
    If it is not listed, then make sure that PDFMOfficeAddin.dll is located in the '.../Program Files/Adobe/Acrobat 10.0/PDFMaker/Office' folder. If the file is missing, then reinstall Acrobat.
      Note: Microsoft Office Applications disable add-ins as a failsafe if the application is prematurely closed (for example, if the system wasn't shut off properly or the application crashed). 
    Add the COM add-in file to the Windows registry.
    In Windows Explorer, locate the COM add-in file (PDFMOfficeAddin.dll) and note the exact path, which may include spaces.
    Choose Start > Run.
    Type regsvr32 followed by a space, and then type the path that you noted in step 1, in quotation marks. For example: regsvr32 "C:\Program Files\Adobe\Acrobat 10.0\PDFMaker\Office\ PDFMOfficeAddin.dll "
    Click OK, and then start the Office application.
    Check if Acrobat PDFMaker Office COM Add-in is present in the list of available COM Add-ins for the Office Application.  
    Launch Microsoft Office program (Word, Excel, Access, or PowerPoint).
    Click the Office button and choose '[Application name] Options'.
    Click Add-Ins.
    From the Manage Dropdown list select COM Add-ins and click Go.
    Check the list for PDFMakerOfficeAddin and the checkbox in front of it is checked.
    If the checkbox is not checked then check it, click OK and restart the Office application.
    If the Office application doesn't allow you to check the checkbox and you have already tried Solution 1, then select Acrobat PDFMaker Office COM Add-in, click Remove and follw the next step.
    If Adobe PDFMaker COM Add-in is not present in the list of available add-ins, then click Add and navigate to C:\Program Files\Adobe\Acrobat 10.0\PDFMaker\Office\. Select PDFMOfficeAddin.dll, click OK, then restart the Office application.

  • How To Register Adobe As A Trusted Publisher to Microsoft Access 2007

    Hello:
    I am a Microsoft Access developer, and I recently wrote an application that opens PDF documents from within Microsoft Access.  The documents are opened using Adobe Reader.  Every time it opens a document, I receive a security warning.  I am using the Hyperlink Method from within VBA.  In the Microsoft Access 2007 Trust center, Adobe is not on the "Trusted Publisher" list.  Does anyone know how to make Adobe a trusted publisher?  From within Access, there does not seem to be a way to "Add Trusted Publisher".  It all has to do with Security Certificates.
    Thanks,
    Rich Locus

    Isn't it up to Microsoft to tell you how to make a program a trusted publisher for Access?

  • Database Microsoft Access

    This is my website
    http://www.academytexas.com/index.asp,
    currently I'm using Microsoft access to do the database storing and
    updating of News, when i upload to this sever it start giving
    problem of loading the page why?is because i am using microsoft
    access? or because I am using ASP script?
    I done it my local hosting(own computer using IIS, window xp)
    it doesn't have problem loading of information please help
    thanks.

    Hello,
    It could be a path problem on the host's server.
    You might try using a map path function like this in your
    connection string:
    STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="
    Server.MapPath("access_db") & "\mydatabase.mdb;User
    Id=admin;Password="
    -or-
    You could try an OLEDB DSN-Less connection instead of using a
    DSN. It's not
    hard to do.
    Step 1 is to figure out the location of the root directory on
    the host's
    server..That's very easy to do yourself.
    Just make an asp page (I named mine "findit.asp"), and put
    this code in it:
    <body>
    <%
    Response.Write("The location of this page is:<br>")
    Response.Write(Request.ServerVariables("PATH_TRANSLATED")
    & "<br>")
    Response.Write("The location of my root directory
    is:<br>")
    Response.Write(Server.MapPath("\"))
    Response.Write Path
    %>
    </body>
    Upload it to the same location as your site's home page.
    Once your new asp page is uploaded, just navigate to that
    page in your
    browser.
    For my site, as an example, the page displays this:
    The location of this page is:
    d:\hosting\mysite\findit.asp
    The location of my root directory is:
    d:\hosting\mysite
    Now that you know the root directory location on their
    server, you can
    figure out the path to your database.
    My database folder is called _private, and it happens to be
    in the root
    directory along with my home page.
    So I just needed to add the database folder name (_private)
    and the database
    inside's name (mydatabase.mdb) to the root directory
    location:
    d:hosting\mysite\_private\mydatabase.mdb
    That's your Data Source path.
    The connection string would look something like this:
    = "Provider=Microsoft.Jet.OLEDB.4.0;Data
    Source=d:hosting\mysite\_private\mydatabase.mdb;User
    ID=;Password=;" Const
    dbType = "Access"
    IMPORTANT: If you are using a local testing server, make a
    copy of your
    connection asp page as a backup.
    The reason? The connection information you are going to put
    in this file
    will only work on the host's server.
    Once you upload the connection.asp page with the changes for
    the host,
    you'll need to change your local copy back to your DSN so it
    will work on
    your local testing server.
    Upload to server.
    Please note: From now on, when you upload (or "put" if you're
    using DW)
    files that refer to your connection asp page you're going to
    get a warning
    that your connection asp on the host is different than your
    local copy.
    Always say "No" to updating it, or you'll replace the
    DSN-Less connection
    with your local DSN one.
    I guess your problem might also be a permissions issue. Did
    you set the
    appropriate read/write permissions on the directory your
    database is in?
    I hope this helps.
    Take care,
    Tim
    "fatjedi" <[email protected]> wrote in
    message
    news:[email protected]...
    > Well, I didn't setup any DNS but then I try to setup
    their ODBC to connect
    > my database but still didn't work but it work on my
    computer.. any clue?

Maybe you are looking for

  • Win 7 Pro not connecting to remote Win 7 pro via port 3389

    I have a new Dell XPS 8700 Win Pro 64 bit that will not connect to work machine of same specs, i.e, XPS 8700 Win 7 Pro. Ironically an old lap top running XP Pro will connect to work computer. I have a new Dell laptop with Win 8.1 pro that will not co

  • Photoshop elements 8 under windows 7 "open with" cannot link editor

    Hello, I recently upgraded my computer to 64bit, loaded my photographs and can open adobe photoshop elements 8 and editor and work on pictures.  However, I usually browse my pictures in windows explorer, open folders of interest and see small picture

  • BLOB Column

    I have a table with the following structure..... CREATE TABLE "LFEE_UPLOAD" "UPLOAD_ID" NUMBER, "DDO_ID" VARCHAR2(12 BYTE), "EDT" TIMESTAMP (6) DEFAULT sysdate, "LUDT" TIMESTAMP (6) DEFAULT sysdate, "FILENAME" VARCHAR2(50 BYTE), "TYPE" VARCHAR2(100 B

  • Is there a way to find out  "dbm_user " in MAX DB?

    Hi,    Can someone tell me how to find the "dbm_user" name in MAX DB. I could find an option called 'user_getall' using 'dbmcli' but not sure how to use it. Please let me know the syntax to use it. Thanks.

  • CRM WebUI Layout Profile after upgrade.

    Hi All, We have upgraded CRM system from 6.0 to EHP1. In the earlier system, there was a custom layout profile. Somehow that is not working after the system upgrade. On Web ui in personalize option, when i select that profile, i can see only the text