Can i use AcroRd32.dll to get Object of AcroApp

Hi all,
Can i use AcroRd32.dll to get Object of AcroApp. I don't want to use acrobat professional.
My code is :
Dim objAcroApp As Acrobat.AcroApp
Dim objAXDoc As Acrobat.AcroAXDoc
Dim objAVDoc As Acrobat.AcroAVDoc
Set objAXDoc = CreateObject("AcroExch.Document")
Set objAcroApp = objAXDoc.Application
(I have taken refernce to Adobe 7.0 type library in my VB application)
But the last line is giving me error (Object doesn't support this action)
Plz help me.
Many Thanks,
Nitin

Hi all,
Can i use AcroRd32.dll to get Object of AcroApp. I don't want to use acrobat professional.
My code is :
Dim objAcroApp As Acrobat.AcroApp
Dim objAXDoc As Acrobat.AcroAXDoc
Dim objAVDoc As Acrobat.AcroAVDoc
Set objAXDoc = CreateObject("AcroExch.Document")
Set objAcroApp = objAXDoc.Application
(I have taken refernce to Adobe 7.0 type library in my VB application)
But the last line is giving me error (Object doesn't support this action)
Plz help me.
Many Thanks,
Nitin

Similar Messages

  • How can I use a progress bar in objective c mac

    How can I use a progress bar in objective c mac? I have a code that downloads a file and I want to be able to let the progress bar increase by 1. A bit further on the code (to download the file) it needs to increase again. And so on...
    My code
    -(IBAction) downloadButtonPressed:(id)sender;{
        //get the path to the image that we're going to download
        NSURL *url = [NSURL URLWithString:@"https://www.dropbox.com/s/l6o07m48npxknt4/Cluedo.zip?dl=1"];
        //get the path to documents folder where we're going to save our image
        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *DocumentsDirectory = [paths objectAtIndex:0];
        NSString *filePath = [DocumentsDirectory stringByAppendingPathComponent:@"Cluedo.zip"];
        //Download the file to memory
        NSData *data = [NSData dataWithContentsOfURL:url];
        NSError *error = nil;
        //Save it on the Documents directory
        [data writeToFile:filePath options:NSDataWritingAtomic error:&error];
        NSFileManager* fm = [NSFileManager defaultManager];
        NSString* zipPath = filePath;
        NSString* targetFolder = @"/Applications"; //this it the parent folder
        //where your zip's content
        //goes to (must exist)
        //create a new empty folder (unzipping will fail if any
        //of the payload files already exist at the target location)
        [fm createDirectoryAtPath:targetFolder withIntermediateDirectories:NO
                       attributes:nil error:NULL];
        //now create a unzip-task
        NSArray *arguments = [NSArray arrayWithObject:zipPath];
        NSTask *unzipTask = [[NSTask alloc] init];
        [unzipTask setLaunchPath:@"/usr/bin/unzip"];
        [unzipTask setCurrentDirectoryPath:targetFolder];
        [unzipTask setArguments:arguments];
        [unzipTask launch];
        //[unzipTask waitUntilExit]; //remove this to start the task concurrently

    Your code really isn't suitable for a progress bar, not a real one anyway. Your code will spend about 99.9% of its time in the method "dataWithContentsOfURL:url". That is not a method you want to use in the real world. It is only for demos or proof of concept exercises. All network operations should be asynchronous. That gives you the ability to gracefully recover when there is a failure and also to do fancy things like display a progress bar and tell the user when the download is complete.
    Once you get the asynchronous download logic working, then you can worry about the progress bar. The first thing you will need is the size of the file. Without that, all you can ever do is an indeterminate progress bar or spinner. If you have the size of the file, then you can keep track of how much of the file you have downloaded and update your progress bar with the percentage complete. Make sure to throttle it to no more than incrementing by 1% at a time. Otherwise, a large file or a file transferred in many small chunks, would waste too much time updating the progress bar for no change.

  • Can I use an adapter to get thunderbolt on my early 09 MacBook pro

    Can I use an adapter to get thunderbolt on my early 09 MacBook pro?

    No.  ThunderBolt is a direct connection to your systems PCI Express bus.  There is no way for your existing ports to do this with any sort of external adapter.

  • If my husband has his own apple ID for an iphone, can he use my macbook to get music onto his phone? My macbook has a seperate apple ID

    If my husband has his own apple ID for an iphone, can he use my macbook to get music onto his phone? My macbook has a seperate apple ID

    Yes, but if you are asking if he can add your existing iTunes music to his existing Apple ID then the answer is no. This may explain your options:
    How to use multiple iPods, iPads, or iPhones with one computer

  • How can I use QuickTime SDK to get Compress format of Video stream?

    I can get uncompress video stream like this:
    QDerr = NewGWorldFromPtr( &m_hGWorld, k32BGRAPixelFormat, &rcMac,
    NULL, NULL, 0, (char*)m_pVideoBuffer,
    m_sAVFileInfo.sResInfo.ulWidth*4);
    then the m_pVideoBuffer is uncompress video stream. How can I use QuickTime SDK to get Compress format of Video stream? I could change "k32BGRAPixelFormat" to other format,use other API or something?
    Could someone have the method? Best Wishes!

    Firefox, I would make sure you update your Desktop to Firefox 14.0.1, as the version you are running is quite old and out of date.
    Then, do you have your Sync Recovery key, username and password? If you do, you can re-add Firefox Sync to your computer.

  • How can I use a dll if I dont have a header file

    I'm not sure if I'm even trying the possible here as I have searched and not been able to find much at all.  However I figured it was worth asking here.
    I have access to several dll's used by a program, I need to open a file using the program (for some reason it is completely non responsive unless you open it "within" the program itself) and so decided to browse the .dll files included.  Ive found a few functions which may carry out the function I need.  Is there a way of figuring out the inputs/outputs if I don't have documentation or a header file?
    This is the next stage in a huge project I am working on at the moment and I've been banging my head against the wall all day trying to figure this out.
    Thanks in advance for any help
    Rik
    That glass?
    Thats glass is neither half full or half empty....
    Its twice the size it needs to be

    Yes, that makes sense. It also means that what you are trying to do is not likely to work. You have no way of knowing what the program does when opening the file, so guessing at using the DLLs is purely a shot in the dark without even knowing where the dark is. Even if you could find the function (assuming it's just one) that loads a file, how is the program supposed to use it now? That function has to be called from within the program. When you call it from LabVIEW you are not sitting inside the program's memory space, so it has no way of knowing about the file.
    I would suggest, instead, to see if the program accepts command-line parameters. For example, does it accept a name of a file to open as part of launching it from the command line? If not, then you may need to resort to trying to control it via automation. If it has no built-in automation then you need to resort to using the OS to make pretend you're clicking buttons and typing text. This has come up many times before, and there have been numerous posts on this, so please do a search on controlling an external program from LabVIEW within this forum. You can call the Windows API functions to move the mouse to a specific location and click the button as well as typing text, or you can use third-part automation tools. One that I have used successfully is AutoIt. The search I indicated will yield other suggestions. 

  • Can I use a dll created in Visual Basic 2010?

    I am reading up on the new extention system for air 3.0.
    I have successfully (I think) managed to integrate the Air 3.0 prerelease into Flash CS5.5 (I don't use flex or flash builder)
    So now I am trying to read up and learn how to use extentions.
    Now, I don't know C/C++. My experience with it has been very limited over the years. But I know visual basic pretty well as I have been using that since VB4. (back in the programming stone age, heh)
    Right now, I have Visual Studio 2010 and Flash CS5.5.
    I am developing for the iPhone and iPad and up until now I have created a working iOS application that works pretty well.
    Can I create a dll in visual basic (A class library) and then use the extention system to load that into my application to run on the iOS mobile device?

    I thought I'd seen this question asked somewhere before, but I can't find the thread. In theory there should be no problem. However, you'll need to have both the LabVIEW 5.1 and LabVIEW 8.6 run-time engines installed, and I don't know if there are any operating systems on which both of those versions are supported. If the run-time engine is properly installed, then calling a LabVIEW-built DLL is just like calling any other DLL. There might be some special optimization if the calling application and DLL both use the same version of the run-time engine.

  • Can I use a G4 to get raw video footage to a no-firewire aluminum MacBook?

    Hi -
    I recently purchased a new aluminum MacBook 2.4Ghz and was shocked to discover the lack of a firewire port. Ok, I should have read the specs more closely before ordering, but I never would have imagined this port being removed (other than from the specialized MacBook Air). As others on this board have said, what were they thinking?!
    So I have some questions about downloading raw video footage from a firewire camcorder (forgive any ignorance on my part, I'm new to camcorders and digital movie editing--I've never used iMovie). My goal is basically editing home movies.
    I have an old G4 tower (1.5Ghz, 1GB RAM). I also have an external firewire/USB drive. The tower will not run iMovie '08 because the processor is too slow. The iLife 08 disc refuses to even load iMovie on this machine.
    I haven't purchased a camcorder yet. I spent a lot of time researching affordable camcorders and had settled on a well-reviewed Canon miniDV, which of course, is firewire. This camera does not come with any software.
    Would it work to connect the camera to my G4 via firewire, download the raw footage to my external drive connected to the G4, then move the external drive over to the MacBook, connect it to the MacBook via USB, then import the raw footage to iMovie for editing? I realize the copying over USB would be very slow. I assume I need some type of software for downloading the raw footage to the G4. Since iMovie won't run and the camera has no software, is there some type of utility or shareware that lets you capture raw footage?
    Is there a better way I can use my G4 to get raw footage from a firewire camera, and then on to my MacBook? Or will this work at all?
    I see that there are a few USB camcorders out there, but they seem to be expensive or don't receive very good reviews, so I'd like to go with the firewire Canon.
    Thanks very much for the help with this frustrating issue

    Well, never mind. I'm returning the MacBook and buying a previous generation MacBook Pro, which ends up being about $200 more.
    Solves my problem, but many folks can't afford the Pro. I'll be commenting at Apple customer feedback about the lack of firewire on the new MacBook.
    Thanks for reading the post.

  • TS1702 I want my money back on an app I bought and can't use, how do I get a refund

    I bought an app I can't use and would like my money back, is that even possible

    You can try and get a refund...
    Contact iTunes Store Customer Service:
    Apple - Support - iTunes Store - Contact Us
    But it is stated that all Sales are Final...

  • Can I use time machine to get rid of Lion?

    Lion has been a total disaster for my iMac.  After installation, everything went very buggy very quickly.  Now it is freezing every few minutes.  I just want rid of it.  Can I use time machine to restore the old system?  If so, how?  Will my files be OK?  thanks.

    I point you to Pondini's TimeMachine restore page however you should also printout my instructions  as something may go wrong and you need to do it the hard way.
    http://web.me.com/pondini/Time_Machine/14.html
    Back to Snow Leopard from Lion install method
    Read and print out these instructions, your computer is going to be offline and you wil be cutoff from help until your machine is restored.
    Clear the Desktop, Downloads and Trash of anything you wish to keep by placing their files in the respective Documents, Music, Pictures, Movie folders.
    Disconnect other drives except the sole backup drive.
    Backup ALL your Users folders (Documents, Pictures, Movies, Music etc) manually (drag and drop methods) to a (not TimeMachine) external powered drive (HFS+ journaled formatted in Disk Utility) and disconnect, your going to be wiping the entire boot disk of ALL DATA.
    (warning, everything will be gone and not recovered, OS, programs, files, Windows etc all gone.)
    Note: You might want to hold c and boot off the 10.6 installer disk and use Disk Utility to format the new blank external drive instead of using OS X Lion if that's hosed. Then reboot into Lion and copy files, may be safer that way.
    Here we go!
    Hold c and boot off the 10.6 installer disk that comes with your computer and second screen in just STOP there, don't install OS X yet.
    Look at the Utilities Menu for Disk Utility.
    On the left is the name of your hard drive maker, click it and Erase (format HFS+ Journaled), give it the same drive name as before, and click Erase...
    (note: if you want to "scrub" the drive of old files that haven't been overwritten yet, then use the Security Option > Zero Erase, takes a lot longer)
    This should wipe the drive of ALL partitions (GUID, OS X and 10.7 Recovery, Windows if present)
    When it's done, quit and install OS X 10.6. Then install all your programs from fresh sources and validate/update.
    When you setup a first account, use the same user name as before, this way you can simply drag and drop the content of your previous Users folders from the external drive right back into the new Users folders and everything should work peachy. Links in iTunes to music, playlists and iPhoto links especially.
    Update OS X to 10.6.8 using the Combo Update for best results.
    http://support.apple.com/kb/DL1399
    (Note: If your original machine had 10.5 and you want the free iLife that comes with the disks with the computer, then you'll have to install 10.5 first using the same c boot/erase/format methods as above, then update to 10.6 via the disk, then Combo Update 10.6.8)
    Final step optional but highly recommended.
    A lot of people use a Carbon Copy Clone of their boot drive to a new HFS+Journaled external drive (used only for this purpose) as a "hold the option key" bootable backup in case something goes wrong with their boot drive or need to restore to a previous OS X version..  (in addition to TimeMachine drive for more immediate backups.)
    It's not advised to have a Bootable Clone and a TimeMachine partition on the same external drive, as two drives gives hardware protection in case one fails.

  • My phone stopped working eventually i think because of a drop  can i use my warrent to get a new one

    so my friend was using my IPhone 5c and dropped itt and it shattered. a few weeks later it started shutting off by itself, and eventually stopped working. i got this phone on new years and i have a warrenty until december 30 2014 Can i use my warrenty to trade in my phone for something like this.

    No. The iPhone warranty does not cover user damage, unless you have Apple Care +. If not, then you could see about an out of warranty replacement. The cost for that depends on where you are located. In the US, the cost is $269.

  • Can I use NIDAQ32.dll with more than one application?

    We have some third party hardware and software which uses a PCI-6602 board and NIDAQ. I wanted to use some of the functions of the board for something else in a VB 6.0 program, but I always got errors with NIDAQ32.dll not being found if the third party software was running. It worked fine if I closed their software. I talked to NI, and they said you could not access a board with two applications at once. Fine, so I bought a PCI-6601 to put in the system to do my other functions. However, I still get the same error, saying the NIDAQ32.dll can not be found when I try to run my VB program. Anybody have a solution? I really need this to work, or this board is pretty useless to me...
    -Matt

    Matt,
    You CAN access a board with two applications at once. However, you can not access the same resource on a board with two applications at once. Analog input, analog output, and digital I/O are each their own separate resources. Each individual counter is a separate resource. Since your application works fine with the third-party software closed it sounds like your third-party software is doing something to the NIDAQ32.dll. I recommend contacting the developers of the third-party software and finding out what they are doing with the NIDAQ32.dll and if they even intended other applications to access the DLL at the same time.
    Ames
    Applications Engineering
    National Instruments

  • TS4345 Can I use Migration Assistant to get info from a Macbook Pro that has a dead screen?

    I have a MacBook Pro 17 that the screen died on. I have a new MacBook Pro coming tomorrow and need to try to find a way to get the info from the old one to the new one. From the online info I saw on Migration Assist you need both screens to work to get a authentification code. Is there any work around? I don't know what system the old one is and have no idea what type of sharing may have been on or off.

    AFAIK, you can use the Setup Assistant on first boot w/o any authentication code or sharing stuff. See Pondini's Setup New Mac guide for details.

  • How Can i Use Windows DLL in Forms 6i

    I want to use DLLs registred in Windows XP
    What i should i Do

    Hi,
    We have the same problem in our project . In this case we are upgrading from an older version of forms (3.0) to 6i. The UE worked fine in the older version, but now we get a NON ORACLE ERROR. Our DLL is written in MS-VC++ project.
    We'd like to know whether , besides the common version and platform, you have also written the DLL using MS-VC++ ; otherwise please tell us .
    Regards,

  • Can't use Shape Builder Tool - getting circle with line through it.

    I can't find any setting or anything I can change to make the Shape Builder Tool work. Using latest version.

    Without more info, it can only be a guess, but be aware that the tool only works on selected objects. PRE-selected, that is.

Maybe you are looking for

  • I have a problem when try to select any of option from menu bar

    I have problem with mozilla since last update. When try to use any of options from menu bar, this appears: http://www.dodaj.rs/f/1p/Sl/1jR36iaa/mozilla-firefox-bug.png Also, i uploaded video to show how my problem appear. http://www.youtube.com/watch

  • How to calculate the frequency of the search string in a row

    Hi, I would like to find the frequency of the number of the occurences of a search string in a row which is of type of xmltype content. For ex: I would like to find the frequency of the word "oracle" in a row which is of type xmltype content. Is ther

  • IDOC Number for a record

    Hello All, I am working in HR. If I have a record created by IDOC, is ther any way for finding IDOC  number that has created this record. Regards, Rahul

  • Firewall Security Set up

    I have a Wrt-54G Ver 8 router. I would like to know which blocks need to be checked in the firewall security screen. On my router the filter Multicast and Filter IDENT (Port 113) are checked. Is that all that is needed? Thank you in advance for the h

  • Delete smart mailbox?

    I made a mistake and now I can't undo it. How do I delete a smart mailbox? Thank.