Runtime error 429, activeX component cant create object while using netbet pro on windows 7 & 8.1 HELP!!!

runtime error 429, activeX component cant create object while using netbet pro
does anyone know what I could do to fix this problem??? netbet pro was't available for a while then it's back but has yet to run

What's netbet pro?
I'd recommend asking questions about third party applications in the vendor's forum, not a Microsoft forum meant for admin scripting.
EDIT: Ah, some gambling website...
Don't retire TechNet! -
(Don't give up yet - 12,950+ strong and growing)

Similar Messages

  • SBO2004A: Runtime Error 429 ActiveX Component can't Create Object

    Hello,
    We have an Addon developed with VB6 that run without problems with SBO 6.5.
    We have upgraded to SBO2004A and I have referenced in the source code to the 2004 UI and DI. I debug mode (from IDE) we don't have problems, but when I try to execute the addon from a client, I get this error message:
    <b>Runtime Error 429 ActiveX Component can't Create Object</b>
    Thanks in advance
    Blas

    I'm using Installshield 10.5 to generate the setup file. It's much more easy and not requiered to install Framework 1.1 in each PC client before to install the Addon.
    You have to create and msi project, and write the Installscript to retrieve the install directory from parameter string passed by SAP.
    After install you must execute the AddOnInstallAPI.EndInstall to notify SAP:
    #include "ifx.h"
    prototype  LONG AddOnInstallAPI.EndInstall();  
    prototype  LONG AddOnInstallAPI.RestartNeeded();
    // OnFirstUIBefore
    // First Install UI Sequence - Before Move Data
    // The OnFirstUIBefore event is called by OnShowUI when the setup is
    // running in first install mode. By default this event displays UI allowing
    // the end user to specify installation parameters.
    // Note: This event will not be called automatically in a
    // program...endprogram style setup.
    function OnFirstUIBefore()
        number  nResult, nLevel, nSize, nSetupType;
        string  szTitle, szMsg, szOpt1, szOpt2, szLicenseFile;
        string  szName, szCompany, szTargetPath, szDir, szFeatures, szTargetdir;
        BOOL    bLicenseAccepted;
        LIST listID;
    begin     
        nSetupType = COMPLETE;       
        szDir = TARGETDIR;
        szName = "";
        szCompany = "";
        bLicenseAccepted = FALSE;
    // Beginning of UI Sequence
    Dlg_Start:
        nResult = 0;
    Dlg_SdWelcome:
        szTitle = "";
        szMsg = "";
        //{{IS_SCRIPT_TAG(Dlg_SdWelcome)
        nResult = SdWelcome( szTitle, szMsg );
        //}}IS_SCRIPT_TAG(Dlg_SdWelcome)
        if (nResult = BACK) goto Dlg_Start;
    Dlg_SdLicense2:
        szTitle = "";
        szOpt1 = "";
        szOpt2 = "";
        //{{IS_SCRIPT_TAG(License_File_Path)
        szLicenseFile = SUPPORTDIR ^ "License.rtf";
        //}}IS_SCRIPT_TAG(License_File_Path)
        //{{IS_SCRIPT_TAG(Dlg_SdLicense2)
       // nResult = SdLicense2Rtf( szTitle, szOpt1, szOpt2, szLicenseFile, bLicenseAccepted );
        //}}IS_SCRIPT_TAG(Dlg_SdLicense2)
        if (nResult = BACK) then
            goto Dlg_SdWelcome;
        else
            bLicenseAccepted = TRUE;
        endif;
    Dlg_SdRegisterUser:
        szMsg = "";
        szTitle = "";
        //{{IS_SCRIPT_TAG(Dlg_SdRegisterUser)     
       // nResult = SdRegisterUser( szTitle, szMsg, szName, szCompany );
        //}}IS_SCRIPT_TAG(Dlg_SdRegisterUser)
        if (nResult = BACK) goto Dlg_SdLicense2;
    Dlg_SetupType2:  
        szTitle = "";
        szMsg = "";
        //{{IS_SCRIPT_TAG(Dlg_SetupType2)     
       // nResult = SetupType2( szTitle, szMsg, "", nSetupType, 0 );
        //}}IS_SCRIPT_TAG(Dlg_SetupType2)
        if (nResult = BACK) then
            goto Dlg_SdRegisterUser;
        else
            nSetupType = nResult;
            if (nSetupType != CUSTOM) then
                szTargetPath = TARGETDIR;
                nSize = 0;
            endif;  
        endif;
    Dlg_SdAskDestPath2:
        if ((nResult = BACK) && (nSetupType != CUSTOM)) goto Dlg_SetupType2;
         szTitle = "";
        szMsg = "";
        if (nSetupType = CUSTOM) then
                    //{{IS_SCRIPT_TAG(Dlg_SdAskDestPath2)     
    //          nResult = SdAskDestPath2( szTitle, szMsg, szDir );
                    //}}IS_SCRIPT_TAG(Dlg_SdAskDestPath2)
            TARGETDIR = szDir;
        endif;
        if (nResult = BACK) goto Dlg_SetupType2;
    Dlg_SdFeatureTree:
        if ((nResult = BACK) && (nSetupType != CUSTOM)) goto Dlg_SdAskDestPath2;
        szTitle = "";
        szMsg = "";
        szTargetdir = TARGETDIR;
        szFeatures = "";
        nLevel = 2;
        if (nSetupType = CUSTOM) then
            //{{IS_SCRIPT_TAG(Dlg_SdFeatureTree)     
           // nResult = SdFeatureTree( szTitle, szMsg, szTargetdir, szFeatures, nLevel );
            //}}IS_SCRIPT_TAG(Dlg_SdFeatureTree)
            if (nResult = BACK) goto Dlg_SdAskDestPath2; 
        endif;
    Dlg_SQLServer:
        nResult = OnSQLServerInitialize( nResult );
        if( nResult = BACK ) goto Dlg_SdFeatureTree;
    Dlg_ObjDialogs:
        nResult = ShowObjWizardPages( nResult );
        if (nResult = BACK) goto Dlg_SQLServer;
    Dlg_SdStartCopy2:
        szTitle = "";
        szMsg = "";
        //{{IS_SCRIPT_TAG(Dlg_SdStartCopy2)     
        nResult = SdStartCopy2( szTitle, szMsg );     
        //}}IS_SCRIPT_TAG(Dlg_SdStartCopy2)
        if (nResult = BACK) goto Dlg_ObjDialogs;
        return 0;
    end;        
    // OnSetTARGETDIR
    // OnSetTARGETDIR is called directly by the framework to initialize
    // TARGETDIR to it's default value.
    // Note: This event is called for all setups.
    function OnSetTARGETDIR()
    number nId, nIgnore, nResult;
    string szId, szTARGETDIR; 
    string wCMDLINE;
    LIST listID;     
    begin     
        // In maintenance mode the value of TARGETDIR is read from the log file.
        if( MAINTENANCE ) then
            return ISERR_SUCCESS;
        endif;
        // Set TARGETDIR to script default.
        TARGETDIR = "<FOLDER_APPLICATIONS>
    <IFX_COMPANY_NAME>
    <IFX_PRODUCT_NAME>";
        if (CMDLINE != "") then 
           wCMDLINE = CMDLINE;   
           StrReplace (wCMDLINE, '"', '', 0);
           listID = ListCreate (STRINGLIST); 
           if (StrGetTokens (listID, wCMDLINE, "|") > 0) then
              MessageBox ("Parametros incorrectos.", SEVERE);
           else
              ListGetFirstString (listID, TARGETDIR);  
              //MessageBox (TARGETDIR, INFORMATION);
           endif;
           ListDestroy (listID); 
           return 0;
        endif;
        // Read TARGETDIR from the media.
        nResult = MediaGetData( MEDIA, MEDIA_FIELD_TARGETDIR, nIgnore, szTARGETDIR );
        // Use the TARGETDIR from the media if anything was read.
        if( nResult >= ISERR_SUCCESS && StrLengthChars( szTARGETDIR ) ) then
            TARGETDIR = szTARGETDIR;
        endif;
         // Customize the default TARGETDIR for multi-instance application.
         // TODO: If you want something different customize the code below.     
         if( MAINT_OPTION = MAINT_OPTION_MULTI_INSTANCE  && MULTI_INSTANCE_COUNT > 0) then
              // Start with the current multi-instance count plus one.
              nId = MULTI_INSTANCE_COUNT + 1;
              // Find a unique TARGETDIR.
              while( ExistsDir( TARGETDIR ) = EXISTS )
                   // Convert to string.
                   NumToStr( szId, nId );
                   // Update IFX_MULTI_INSTANCE_SUFFIX
                   IFX_MULTI_INSTANCE_SUFFIX = "_" + szId;
                   // Update TARGETDIR
                   TARGETDIR = TARGETDIR + IFX_MULTI_INSTANCE_SUFFIX;
                   // Update nId
                   nId = nId + 1;
              endwhile;
         endif;  
    end;
    // OnEnd
    // The OnEnd event is called at the end of the setup. This event is not
    // called if the setup is aborted.
    function OnEnd() 
    string  wCMDLINE;
    LIST    listID;     
    STRING  DLL_FILE;
    INT     nValue;  
    LONG    nRC;
    NUMBER  nResult;
    begin
    if (CMDLINE != "") then
           wCMDLINE = CMDLINE;   
           StrReplace (wCMDLINE, '"', '', 0); 
           listID = ListCreate (STRINGLIST); 
           if (StrGetTokens (listID, wCMDLINE, "|") > 0) then
              MessageBox ("Parametros incorrectos.", SEVERE);
           else
              ListGetFirstString (listID, DLL_FILE);
              ListGetNextString (listID, DLL_FILE);  
              // MessageBox (DLL_FILE, INFORMATION);
           endif; 
           ListDestroy (listID); 
           nResult = UseDLL (DLL_FILE);
           if (nResult != 0) then
              MessageBox ("No se ha podido cargar\nAddOnInstallAPI.dll", SEVERE);
              abort;
           endif;
           if AddOnInstallAPI.EndInstall() > 0 then
              MessageBox ("Error al ejecutar AddOnInstallAPI", SEVERE);
              abort;
           endif;
    endif;
    end;

  • Vbscript runtime error 429 activex component can't create object

    hi i am writing a VB Script where it runs a batch files
    but when the batch file is called from the script its giving error as 
    runtime error 429 activex component can't create object
    my script is as follows
    strcmd = "utility.bat"
    Set wshSystemEnv = wshshell.Environment("USER")
    wshshell.Run strcmd
    can some one help me with this ?
    Thank you

    Sorry, your script makes no sense. You never create the object wshshell
    and you never use the object wshSystemEnv. Start the code with
    set WshShell = WScript.CreateObject("Wscript.Shell")

  • Runtime Error '429': ActiveX component can't create object

    Hi,
    I am using below code in vb6 application but this is throwing an "Runtime Error '429': ActiveX component can't create object" error.
    CreateObject("OracleInProcServer.XoraSession")
    is that due to any dll or reference error ?
    I have an Oracle client installed on my PC
    please share your solution
    Thanks in advance

    Are either of those 64 bit? If so, your problem is likely related to that.
    A 64 bit Oracle client doesn't support OO4O at all, so this code will never work with that client. You need to use a 32 bit one.
    If you are using a 32 bit client but on a 64 bit OS, I've found the 11.2.03 installer doesn't properly register the files. Manually registering OraOleDB11.dll may fix it, though we had to do some other registry stuff and it got very ugly. Backing up to a slightly older client should also fix the problem.

  • Coming up with the error - "Runtime error '429': ActiveX Component Can't cr

    Hi,
    While trying to edit the XML tag in a .rtf file (Microsoft Word 2010), coming up with the error - "Run time error '429': ActiveX Component Can't create object.
    Any help in resolving this is greatly appreciated.
    Rgds,
    Kiran Panditi

    Remove and reinstall dotnetfiles by running setup.exe located at the following path:
    32 Bit Win 7
    C:\Program Files\Oracle\BI Publisher\BI Publisher Desktop\DotNetInstallFiles
    64 Bit Win 7
    C:\Program Files (x86)\Oracle\BI Publisher\BI Publisher Desktop\DotNetInstallFiles
    FYI, BI Publisher Template Builder 10.1.3.4 does require Administrator rights to run.
    Cheers,
    ND
    Use the "helpful" or "correct" buttons to award points to replies / Mark the thread as answered, if your question is answered.

  • Scripting Problem with the Default SplitStory.vbs Schript. Windows Scripting Error No. 429, ActiveX-Component cannot create object: 'InDesign.Application", Engine: Default File: C:\Program Files (x86)\Adobe\Adobe InDesign CS6\Scripts\Scripts Panel\Samples

    On another PC it works. I can't find any difference in the script line 15. I could run the Script 1 time and the 2nd time it Show this error
    Set myInDesign = CreateObject("InDesign.Application")
    Rem Set the user interaction level to allow the display of dialog boxes and alerts.

    Hi
    delete the tbl file so it regenerates see Re: InDesign CS6 scripts don't work on CC anymore
    HTH
    Trevor

  • MSAccess - ERROR 429: ActiveX can't create object

    I am trying to migrate an access database to Oracle9i.
    I am using AccessXP(2002).
    I have versions of my database in Access97/2000/2002 formats.
    When I try to execute the OMWB2000.MDE Export command against the access2000 database I specified, I get the 429 error.
    Is this being caused because I am using AccessXP?
    If so, will there be a version of OMWB for AccessXP soon? Thanks

    I cannot say this IS your problem, but some oddities I ran into installing the report client on my laptop in my current environment ....
    #1 - Even though you type in your username and password in the Reports login box, it apparently uses the credentials of the logged on user.
    #2 - The machine MUST be on the domain that is used for authentication or it flat out won't work (see item #1)
    #3 - I ran into the ActiveX error once and apparently something did not register properly during the install. To fix it :
    Run the batch file : %HYPERION_HOME%\BIPlus\install\bin\HRRunAnt.cmd
    Where %HYPERION_HOME% is the main hyperion folder. (i.e. c:\hyperion )
    After the script executes, reboot your machine. You MUST reboot.
    Hope that helps.

  • XL Reporter Run-time Error '429' ActiveX component can't create object

    Hi Everyone,
    When trying to install XL Reporter on a Windows 2003 Server SP2 machine getting the following Error:
    XL Reporter
    Run-time error '429':
    ActiveX component can't create object.
    Did anyone get this error? Please advise of any steps we can try to resolve.
    Kind Regards,
    Kafil

    Dear Friend,
                 I had described the problem to our technical support team, and they replied as follows u2013
    They solved the Script related error by several stages.
    They checked the machine for any mal-ware existence by the tool provided by Microsoft (MS Mal-ware remover).
    Then they tried by installing the following patches from Microsoft u2013
    http://support.microsoft.com/kb/949140
    Windows Script 5.7 for Windows XP
    http://www.microsoft.com/downloads/details.aspx?familyid=887fce82-e3f5-4289-a5e3-6cbb818623aa&displaylang=en
    Windows Script 5.6 for Windows Server 2003
    http://www.microsoft.com/downloads/details.aspx?FamilyId=C717D943-7E4B-4622-86EB-95A22B832CAA&displaylang=en
    Windows Script 5.6 for Windows XP and Windows 2000
    The internal matter to this problem was about the following DLL and its version u2013
    C:\WINDOWS\system32
    vbscript.dll
    5.5.0.8820
    Desired
    5.6.0.8820
    Check, if the information helps you.

  • Run-time error '429': ActiveX component can't create object

    HI,
    I am having the following error in my Excel VBA Run-time error '429': ActiveX component can't create object  when running the following code:
    Dim objDistiller As New ACRODISTXLib.PdfDistiller6
    objDistiller.FileToPDF2 filePath & ".PS", filePath & ".PDF", "T:\Templates\PDFSettings\Standard.joboptions", 1
    This code has been working for years on all our systems, but due to recent security issues our administrator changed all user accounts to not have local administrator rights and now when we run this code we get the above error message.
    I have had a look at DComcnfg.exe to try and get it to work by setting the default property permissions to allow access by Everyone but I am still getting the error.
    Any help would be greatly appreciated.
    Regards.
    Shane Chapman.

    Hi Shane,
    Here is another way to create PDF with Macro using another API than Distiller. This API is faster too.
    Probably this post is not of interest anymore but here is how I have done it:
    1. Download PDFCreator: http://sourceforge.net/projects/pdfcreator/
    2. Use the following Macro:
    Option Explicit
    Sub printPDFmacro()
    'Author : Ken Puls (www.excelguru.ca)
    'Macro Purpose: Print to PDF file using PDFCreator
    ' (Download from http://sourceforge.net/projects/pdfcreator/)
    ' Designed for early bind, set reference to PDFCreator
    Dim pdfjob As PDFCreator.clsPDFCreator
    Dim sPDFName As String
    Dim sPDFPath As String
    '/// Change the output file name here! ///
    sPDFName = "Facture-" & nclient2 & " le " & Format(Date, "yyyy-mm-dd") & ".pdf"
    sPDFPath = "E:\Partenaire Scolaire\Comptabilite\Factures"
    PDFFileName2 = sPDFPath & "\" & sPDFName
    Set pdfjob = New PDFCreator.clsPDFCreator
    With pdfjob
    If .cStart("/NoProcessingAtStartup") = False Then
    MsgBox "Can't initialize PDFCreator.", vbCritical + _
    vbOKOnly, "PrtPDFCreator"
    Exit Sub
    End If
    .cOption("UseAutosave") = 1
    .cOption("UseAutosaveDirectory") = 1
    .cOption("AutosaveDirectory") = sPDFPath
    .cOption("AutosaveFilename") = sPDFName
    .cOption("AutosaveFormat") = 0 ' 0 = PDF
    .cClearCache
    End With
    'Print the document to PDF
    ActiveSheet.PrintOut copies:=1, ActivePrinter:="PDFCreator"
    'Wait until the print job has entered the print queue
    Do Until pdfjob.cCountOfPrintjobs = 1
    DoEvents
    Loop
    pdfjob.cPrinterStop = False
    'Wait until PDF creator is finished then release the objects
    Do Until pdfjob.cCountOfPrintjobs = 0
    DoEvents
    Loop
    pdfjob.cClose
    Set pdfjob = Nothing
    end sub
    Have any questions, just have to poke me.
    Michael

  • Error 7 Windows error 14001 while using iTunes on my windows XP, please help

    Error 7 Windows error 14001 while using iTunes on my windows XP, please help

    Hello Zaza2006,
    Thanks for the question, and welcome to Apple Support Communities.
    The following article outlines the exact error message you provided, and steps that may lead to a potential resolution:
    iTunes for Windows: "Error 7" message when opening iTunes
    http://support.apple.com/kb/TS3074
    Thanks,
    Matt M.

  • Runtime error:429

    Hi all,
    I ve installed interactive reporting 11.1.2.1. While trying to open Dashboard studio, Dashboard architect, am getting "Runtime error:429 ActiveX component cant create object."
    EPM system essbase /planning 11.1.2.1 is already installed on this machine and is working fine. After installation of HIR, i was not able to find any new services pertaining to IR(also , during configuration, i was not able to see anything new in the configuration list-is this fine??) But am able to open up IR studio successfully.
    My directX components are uptodate.
    Please do help me out.
    thanks,

    Hello,
    i have been looking for this. i also faced this problem many times but after reading this article i fixed it. Thanks for sharing this post. i also got some help from this article [error 429|http://www.error429.com] , hope someone might get help from this article.
    Runtime error 429: “ActiveX component can’t create object”
    Reinstall Windows Script
    Repair Windows Script File Information in Registry
    Reregister Concerning File
    Reset Internet Explorer Settings
    Restore your Computer
    Repair System Files

  • ActiveX - Runtime Error 429

    Please, someone tell me what I'm doing wrong!!!
    I just upgraded to BI Publisher Desktop version 10.1.3.3.3 and last month we upgraded APEX to 3.1. I'm using APEX to generate my Report Queries. I open MS Word, I load my XML Sample Data, I use the wizard to create a table with the fields I want to display, and the report runs fine (although I need to format the report). When I select a field name, then right-click and select BI Publisher --> Properties... I get a Microsoft Visual Basic Run-time error '429': ActiveX component can't create object error, and then a 'Starting .Net runtime progress bar appears. Help!
    Thank you!

    I got the same message when installed BI Publisher Desktop 10.1.3.3.3. When i try to login from Word 2003 to Publisher server it gave me same "429" message.
    I resolved that by going to Publisher Desktop installation folder:
    "C:\Program Files\Oracle\BI Publisher\BI Publisher Desktop\DotNetInstallFiles" and in there i started file :
    setup.exe
    After that it showed menu to repair or remove add-in in Word. After repair i can log on to Publisher from Word.
    I hope this will help you.

  • App gets runtime error 429 when deploying via SCCM

    I have an application I'm trying to deploy and it works fine when manually running the app (silently) on my test machine. When deploying it from SCCM and then trying to run the program you get a message saying "Run time error 429 - activex component
    can't create object".
    I can silently run the exe for the app from a command prompt. I can also do the same if I use the programs MSI file instead.
    If I use the exe, msi or batch from SCCM it fails. I've tried deploying when a user is logged in or logged off.
    One of the frustrating issues is I have been able to make it work on some systems, but not all. It fails more often than not. I'm wondering if it has something to do with a windows update (maybe .net framework) that isn't the same on each system.
    I have already checked logs and haven't been able to find anything.
    Any ideas?

    What the command-line does is up to the command-line and really has nothing to with ConfigMgr. You'll have to check with the vendor about what's going on. Error code 429 is not a standard Windows error code. You could add logging to your command-line to
    maybe get more details about what it cannot successfully do (how to do that is specific to your command-line and also has nothing to do with ConfigMgr).
    The only idiosyncrasy with running something in ConfigMgr is that it uses the local System account. This can have implications if the installer is expecting to add things to a normal user profile (which is generally  bad thing for installers to do but
    they sometimes do it anyway). You can simulate this by using psexec with the -I and -is parameters. Given that this is an ActiveX control, which I think may be user specific, this could the source of the issue.
    Another thing possibly at play is that IE is open. Since the installer is running as local System, it doesn't know this and tries to install the ActiveX control but can't because there are instances of IE open.
    There's really no way to know what's failing here with additional information about what the command-line is actually doing and failing to do.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • Oo4o Runtime-Error 429

    We are successfully using oo4o (8.0.6) to get data from ORACLE Release 7.3 into Word (Office 97 and Office XP). The clients are using NT 4.0 or Windows XP.
    We tried to install the application on a Windows 2003 terminal server with citrix.
    We use the following releases:
    - oo4o: 8.0.6.3.9
    - net: 8.0.6.3.9
    - rdbms: 7.3.4
    - Word: Office XP
    Starting our test-program we get the message:
    "Run-Time Error '429': ActiveX component can't create object"
    The statement "Set OraSession = CreateObject(..." causes the error.
    There may be a problem with the registration of the oip8.dll.
    What can we do to solve the problem ?
    We cannot use a 9i-client because of the ORACLE 7.3 rdbms.

    What's netbet pro?
    I'd recommend asking questions about third party applications in the vendor's forum, not a Microsoft forum meant for admin scripting.
    EDIT: Ah, some gambling website...
    Don't retire TechNet! -
    (Don't give up yet - 12,950+ strong and growing)

  • Run Time Error 429 - ActiveX Controls CRAXDRT.DLL Dependancy

    Post Author: mhamlyn
    CA Forum: Deployment
    After upgrading from Crystal Reports 11.0 to 11.5 we have found that when deploying an application and bundling it in Install Shield we continually get an error when trying to view crystal reports:
    Run-time error '429':ActiveX component can't create object
    From what we can see this is partly caused by the incorrect setup of the craxdrt.dll dependancey file, point to previous versions of business objects i.e.
    C:\Program Files\Common Files\Business Objects\3.0\bin
    Where it should be
    C:\Program Files\Common Files\Business Objects\3.5\bin
    Even after editing this file and amending the correct locations we still get this error. Has anybody had any success in resolving this. There are lots of forum posts but no diffinitive answers!
    This is an extremelly frustrating problem!
    PLEASE HELP!!!!

    Hi Shane,
    Here is another way to create PDF with Macro using another API than Distiller. This API is faster too.
    Probably this post is not of interest anymore but here is how I have done it:
    1. Download PDFCreator: http://sourceforge.net/projects/pdfcreator/
    2. Use the following Macro:
    Option Explicit
    Sub printPDFmacro()
    'Author : Ken Puls (www.excelguru.ca)
    'Macro Purpose: Print to PDF file using PDFCreator
    ' (Download from http://sourceforge.net/projects/pdfcreator/)
    ' Designed for early bind, set reference to PDFCreator
    Dim pdfjob As PDFCreator.clsPDFCreator
    Dim sPDFName As String
    Dim sPDFPath As String
    '/// Change the output file name here! ///
    sPDFName = "Facture-" & nclient2 & " le " & Format(Date, "yyyy-mm-dd") & ".pdf"
    sPDFPath = "E:\Partenaire Scolaire\Comptabilite\Factures"
    PDFFileName2 = sPDFPath & "\" & sPDFName
    Set pdfjob = New PDFCreator.clsPDFCreator
    With pdfjob
    If .cStart("/NoProcessingAtStartup") = False Then
    MsgBox "Can't initialize PDFCreator.", vbCritical + _
    vbOKOnly, "PrtPDFCreator"
    Exit Sub
    End If
    .cOption("UseAutosave") = 1
    .cOption("UseAutosaveDirectory") = 1
    .cOption("AutosaveDirectory") = sPDFPath
    .cOption("AutosaveFilename") = sPDFName
    .cOption("AutosaveFormat") = 0 ' 0 = PDF
    .cClearCache
    End With
    'Print the document to PDF
    ActiveSheet.PrintOut copies:=1, ActivePrinter:="PDFCreator"
    'Wait until the print job has entered the print queue
    Do Until pdfjob.cCountOfPrintjobs = 1
    DoEvents
    Loop
    pdfjob.cPrinterStop = False
    'Wait until PDF creator is finished then release the objects
    Do Until pdfjob.cCountOfPrintjobs = 0
    DoEvents
    Loop
    pdfjob.cClose
    Set pdfjob = Nothing
    end sub
    Have any questions, just have to poke me.
    Michael

Maybe you are looking for

  • ERROR importing AVCHD H.264 files on Windows

    I have a problem that is preventing my students from moving forward with their work, and I am STUMPED as to what the issue is. Computers are all the same, Windows 7, 64bit Enterprise (Octo-Core Xeon 3ghz with 11GB of RAM). CC is installed with the th

  • Disk is too slow. (Prepare)  (-10001)    HELP

    ive searched through endless threads with this. I have just installed a symphony 64 pci card, im not using it with the symphony yet, still using the fireface ufx this could be just a coincidence but logic 9 is now constantly F&^%ing up Disk is too sl

  • Need more 2D performance with RX9800 Pro

    Hello, I need more 2d performance with this card, better vector work optimization and so on. I'm work with Illustrator CS2, and it's too "slow" when i am dragging, etc. Is any way to incerase 2d performance ? Some unofficial drivers, or some "hack" ?

  • Suddenly boot problem - no post - then crashes in windows

    hi there! first off, here's my system: P4 2.80C @ FSB 200 HT enabled Corsair DDR400 2-2-2-5   865PE Neo2-LE Sapphire Radeon 9500 no OC Chieftec 360W Western Digital 120GB & Seagate 20GB no RAID BIOS - default settings WinXP Alright, my system has alw

  • Installation of Solaris on an old Sun Ultra 2

    I have acquired an old Sun Ultra 2 and would like to install Solaris on it. One slight problem I have is that there is no floppy or CD drives. The only drive I have attached to the device is a tape drive, and I don't have solaris tape media. Could an