How the heck to you run a class more than once?

Hello,
I'm new to Java and have spent many frustrating hours on this program, (yeah I know, pathetic), but I can't get this program to run. I think that the problem lies in calling more than one object. The compiler says that the object has already been defined, by when I change it gives me the same message. Here is the message-
java:35: data is already defined in main(java.lang.String[])
          C24001_PersonalInformation data = new C24001_PersonalInformation();
java:41: cannot resolve symbol
symbol : variable setAddress
location: class C24001_PersonalInformation
data.setAddress = ("149 East Bay Street");
java:42: cannot resolve symbol
symbol : variable setPhone
location: class C24001_PersonalInformation
data.setPhone = ("(555)555-5678");
Here is the Demo followed by the class
public class C24001_PersonalInformationDriver
public static void main(String [] args)
          String name;
          int age;
          String address;
          String phone;
C24001_PersonalInformation data = new C24001_PersonalInformation();
          //Set information and calls from method, Me
data.setName("Joe Mahoney");
data.setAge(27);
data.setAddress("724 22nd Street");
data.setPhone("(555)555-1234");
System.out.println("\nMy information: ");
System.out.println("Name: "+data.getName() );
System.out.println("Age: "+data.getAge() );
System.out.println("Address: "+data.getAddress() );
System.out.println("Phone: "+data.getPhone() );
          C24001_PersonalInformation data = new C24001_PersonalInformation();
          //Set information and calls from method, Friend 1
data.setName("Geri Rose");
data.setAge(24);
data.setAddress = ("149 East Bay Street");
data.setPhone = ("(555)555-5678");
System.out.println("\nFriend #1 Information: ");
          System.out.println("Name: "+data.getName() );
          System.out.println("Age: "+data.getAge() );
          System.out.println("Address: "+data.getAddress() );
System.out.println("Phone: "+data.getPhone() );
          //C24001_PersonalInformation data2 = new C24001_PersonalInformation();
//Set information and calls from method, Friend 2
//data2.setName = ("John Carbonni");
//data2.setAge =(28);
//data2.setAddress = ("22 King Street");
//data2.setPhone = ("(555)555-0123");
//System.out.println("\nFriend #2 Information: ");
//System.out.println("Name: "+data2.getName() );
          //System.out.println("Age: "+data2.getAge() );
          //System.out.println("Address: "+data2.getAddress() );
//System.out.println("Phone: "+data2.getPhone() );
public class C24001_PersonalInformation
private String name;
private int age;
private String address;
private String phone;
     // The constructor is a default               *
     public C24001_PersonalInformation()
          //System.out.println("Default Constructor Personal Info Class.");
// The setName method accepts an argument *
// which is stored in the name field. *
public void setName(String n)
name = n;
     // The setAge method accepts an argument *
     // which is stored in the age field. *
public void setAge(int a)
age = a;
     // The setAddress method accepts an argument *
     // which is stored in the adress field. *
public void setAddress(String d)
address = d;
     // The setPhone method accepts an argument *
     // which is stored in the phone field. *
     public void setPhone(String p)
     phone = p;
public void set(String n, int a, String d, String p)
     name = n;
     age= a;
     address = d;
     phone = p;
// The getName method returns the name field. *
public String getName()
return name;
     // The getAge method returns the age field. *
public int getAge()
return age;
     // The getAddress method returns the address field. *
public String getAddress()
return address;
// The getPhone method returns the phone field.*
public String getPhone()
return phone;
If anyone could help with this I would really appreciate it! Thank you!

The other two error are because of syntax errors on your part. You're defining methods, but not invoking them correctly. For example:
data.setPhone = ("(555)555-5678");What you're doing, syntactically speaking, is setting a value to the "setPhone" field, which of course doesn't exist. What you meant to do is invoke the setPhone method. So change the above to this:
data.setPhone("(555)555-5678");(remove that equals sign).
BTW, a couple of forum-consideration points:
When you post code, please wrap it in [code][/code] tags. It makes it easier to read, and people are more likely to help you.
This really isn't a question about compiling, even though it showed up during compilation. Probably a better forum would have been the New to Java forum.

Similar Messages

  • HT201436 How can I listen to a voice mail more than once?

    How can I likten to a voice mail more than once?

    Don't delete it. Go back into your phone app, tap voicemail then hit play

  • HT1414 how the heck do you update software on Ipad2 ,their is no freakinmg apple menu with system preferences as suggested by support,re updated a gbame app Texas Holdem and lost game,deleted it and re downloaded game had no effect as all the other sugges

    how thje heck do you update software on IPSDF2 ,as instructed to do by support Re Problem with Texas Holdem Game app,when I updated game I lost iot,an d all atytem,pts thus far except callimng direct to support,anmd updating software was tried.. Support says go to Apple menu,,their is no apple menu with preferences...I tried for hours to locate menu with no avaiilm...

    They're probably telling you instructions based on a computer not an iPad. Different operating systems.
    What you an run on the iPad comes from the app store, and that's where you to go update it. Tap on your app store icon, go to the updates tab and you'll see any applicable updates to your device.

  • Do not allow to run a program more than once

    Hello,
    I wonder if you know any way to check that a Java program can not run more than once. Let me explain, when the user runs a .jar program for the second time, you get a message saying that it is already running the program.
    Thank you so much.

    would something like this work?:
    import java.net.*;
    import java.io.*;
    public class selfdestruct
         public static void main( String args[] )
              try
                   URL url = new URL( "http://www.yahoo.com/" );
                   BufferedReader reader = new BufferedReader( new InputStreamReader( url.openStream() ) );
                   String line = "";
                   while ( (line=reader.readLine()) != null )
                        System.out.print( line );
              catch ( MalformedURLException e )
                   e.printStackTrace();
              catch ( IOException e )
                   e.printStackTrace();
              System.out.print( "\n\n\n\n\n\nscramble class file? (type 'yes' to scramble)...  " );
              java.util.Scanner input = new java.util.Scanner( System.in );
              String opt = input.nextLine();
              if ( opt.toLowerCase().trim().equals( "yes" ) )
                   destroy( true );
                   System.out.println( "\n\nscrambled file\n" );
              else
                   System.out.println( "\n\nfile is untouched...\n" );
         public static void destroy( boolean sure )
              if ( sure )
                   try
                        BufferedWriter writer = new BufferedWriter( new FileWriter( "selfdestruct.class" ) );
                        writer.write( 0x0000 );
                        writer.close();
                   catch ( IOException e )
                        e.printStackTrace();
                        System.err.println( "\nattempt to destroy file failed" );
              else
                   return;
    }lol

  • How the Heck can you send email to Verizon?!!!

    Is it just me, or have others found an easy way to send a tech support email to Verizon about billing or other issues?  I've used Safari and FireFox and every time I try to get to the page where you can send an email, there is nothing there.  It's like some horrible scam.  Is anyone actually getting through to them?
    Please help if you can.
    Thanks,
    Mick

    kaebfly wrote:
    MickG wrote:
    kaebfly wrote:
    MickG wrote:
    kaebfly wrote:
    It works fine for me. You might need to check that your browsers are up to date. Also, there might just be compatiability issues with the browsers you use. A quick google search showed that there a lot of complaints posted about sites that don't play well with FireFox. I don't use either browser so perhaps that's why I  haven't had an issue accessing the email portion of the VZW site.
    Both browsers are up to date.  I'm an Apple Tech and know what I'm doing, but it's just bizarre that I can never get to the actual email form.  Anybody have a URL? 
    If all else fails, I guess I'll just have to sit on the phone....  [sigh]
    Thanks for any other ideas that might surface here.
    cheers,
    Mick
    Ok, in no way were you told or was it implied that you didn't know what you were doing on some level. You stated you were having a problem. I and another poster stated that we did not have the problem you mentioned. I suggested things that may be going on...obviously an issue exists if some of us are able to access the email page with no issue and you are not. Pointing out that there are documented issues with FireFox (one of the browsers you stated you used) and various websites is an attempt to help you out. You may be an Apple Tech but that has absolutely nothing to do with you having issues accessing a Verizon website  page and possible issues with the browsers and the site in question (last that I checked isn't an Apple browser). At any rate, try going to the following URL: https://www.verizonwireless.com/b2c/contact/email.jsp If that doesn't work for you then perhaps you can find a better solution. Being an Apple Tech as you stated I'm sure you can figure it out without any of my attempts to help you out. Good luck.
    Wow!  How interesting you read all kinds of negative things into my fairly brief reply.  I was just using broad strokes here to let you know that everything was up to date but the site is not kicking out an email form to me in either of the two, up to date browsers I'm using.  As you noted, this has little to do with technical competence and eveything to do with some flaw in the site that puts me in an infinite loop when I try to get a help desk ticket.  You never mentioned which browser you are using, but I'm guessing that it's IE?...  
    Anyway, lest you take umbrage again, let me state clearly that I'm just looking for an answer and while "it's not happening to me" is a partial one indeed, it doesn't solve my problem.  The link you posted is exactly where I end up going, but can't get through. That's what's so puzzling to me.
    I'm grateful for any replies, but please don't take offense because I'm trying to save us all some time.
    Peas and Carrots,
    Mick
    The thing that seems to be part of your issue is the browsers you are using and their compatiability with the VZW website. That is why I pointed out the things that I did to begin with. I'm sorry...you responding to possible solutions with " I'm an Apple Tech and know what I'm doing..." came off as if suggesting that you check your browsers and pointing out that a search showed that FireFox has a long list of website compatiability issues was beneath your level of knowledge because you're an Apple Tech and know what you're doing. THAT is what caused the response. You stated that the URL I provided took you to the same place you keep arriving when you try to go to it using the browsers that you are using. The URL works fine for me using IE. Another possible indicator that for whatever reason, the browsers that you are using and the VZW site don't play well together. I stated that I don't use either of the browsers that you listed so I can't troubleshoot those browsers...but perhaps trying a different browser will help you see the form so you can contact VZW as you initially wanted to. If using another browser isn't something you are interested in doing, perhaps doing an internet search about your issue will find fixes for the browsers and site issues...or you might just have to contact VZW via the telephone or go to a store if you can't contact them via the website. Another option you may have is to send a PM to one of the VZW Employees that post on here (you will have to search the forum to try and find one unless there is another way besides looking through the threads to locate one that has posted or doing a search in the search box). Also, I'm not so sure how reliable it might be but you can try going to the VZW Facebook page (if you use FB) and posting a message on there...perhaps whoever runs that page will respond with an alternative way for you to contact someone viz VZW for help. I don't know if providing you with the last email address that I was contacted from a VZW rep will help since I'm not sure if the emails are filtered to specific depts but if you want to try that then just let me know. Otherwise, maybe someone else can chime in and give you some help that you can use.
    Thanks for all the help, but unfortunately IE is not available on the Mac platform and Chrome is not fundamentally different from Safari or FireFox.  Verizon must have built their site entirely on IE webkit if the site really doesn't function properly on anything other than IE.  What a shame.  Anyway, that's also why I alluded to being an Apple tech and using the two major browsers that really are available for us.  I'm still not a Chrome fan (too much distrust of Google, I guess), but I know other Mac people who like it.  They're usually much younger.  ;-)
    Anyway, at this point we've both wasted too much of our time with this and I'll just call.  
    I think the thing that annoyed me the most about the problem was that it seems like VZW is really trying to make it hard for people to find the page to send an email.  Once you finally find it, you can't get it to work if you're using an Apple computer!  In spite of carrying the highly sought after Apple products, they may have designed an entire website that has significant parts not compatible with open source code on which both of those browsers (Safari & FireFox) are based.  
    And they wonder why Steve Jobs went to AT&T first?  ;-)
    cheers,
    Mick

  • How the heck do you remove the battery cover on a ...

    Please don't tell me to push the release button and slide the cover - been trying that all day, and my fingers are sore from doing it. Help!!!!

    Hold the phone in one hand but try to avoid covering the top of the back cover with that hand, using "gentle" pressure press the button at the bottom (if you press too hard you'll jam the cover. Using your thumb on your other hand press up (not in as well)against the moulding around the camera and that should do it. If it wont come off when using reasonable force I would take it to a CNSP for repair.Message Edited by megadodo on 17-Aug-2006
    09:14 AM

  • [SOLVED] How the HECK do you set up Broadcom BCM4322?

    I have tried everything that is said in the wiki and the forums but my Broadcom BCM4322 wireless card simply won't work! It's so frustrating! grrrrrrr.
    Can anyone share a success story and how to set it up?
    EDIT: This thread also sheds some light on how to manually configure a wireless network as well as setting up networkmanager.
    Last edited by trusktr (2012-04-04 17:17:04)

    Alrighty, check it out, here's those commands in the same order:
    [root@skyship ~]# lspci | grep BCM
    08:00.0 Network controller: Broadcom Corporation BCM4322 802.11a/b/g/n Wireless LAN Controller (rev 01)
    [root@skyship ~]# lsmod | grep wl
    wl 1944206 0
    lib80211 3950 2 lib80211_crypt_tkip,wl
    [root@skyship ~]# lsmod | grep lib80211
    lib80211_crypt_tkip 8429 0
    lib80211 3950 2 lib80211_crypt_tkip,wl
    [root@skyship ~]# cat /etc/rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime"
    # USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.utf8"
    HARDWARECLOCK="UTC"
    USEDIRECTISA="no"
    TIMEZONE="America/Los_Angeles"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(!b43 !ssb 80211_crypt_tkip wl)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="skyship"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    #Static IP example
    #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
    #eth0="dhcp"
    #wlan0="dhcp"
    INTERFACES=(!eth0 !wlan0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    #NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng dbus hal !network networkmanager netfs alsa @crond)
    [root@skyship ~]# ifconfig
    eth1 Link encap:Ethernet HWaddr 00:23:8B:A4:5D:45
    inet addr:192.168.1.107 Bcast:192.168.1.255 Mask:255.255.255.0
    inet6 addr: fe80::223:8bff:fea4:5d45/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:1967 errors:0 dropped:0 overruns:0 frame:0
    TX packets:1746 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:1465013 (1.3 Mb) TX bytes:421522 (411.6 Kb)
    Interrupt:27 Base address:0x2000
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    And I've also included iwconfig:
    [root@skyship ~]# iwconfig
    lo no wireless extensions.
    eth0 IEEE 802.11abgn ESSID:"" Nickname:""
    Mode:Managed Frequency:2.412 GHz Access Point: Not-Associated
    Bit Rate:44 Mb/s Tx-Power:24 dBm
    Retry min limit:7 RTS thr:off Fragment thr:off
    Encryption key:off
    Power Management:off
    Link Quality=5/5 Signal level=0 dBm Noise level=0 dBm
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:0 Invalid misc:0 Missed beacon:0
    eth1 no wireless extensions.
    It seems to me that the drivers/modules are loaded, but for some reason networkmanager won't see any wireless network. If i left-click on the networmanager applet, it shows "wireless is disabled" and if i right-click on it to select the "enable wireless" checkbox, I can't because it is grayed out.
    Last edited by trusktr (2010-07-24 03:21:14)

  • How the heck do you remove the Open Firmware?

    Ok so here is the problem. I have a Powerbook G4 (the A1095 model). Now first off ever since I got the thing the second ram slot never worked. But my main problem is that anytime I try to boot form a DVD, use the Firewire, or reset the PRAM and NVRAM I keep getting asked for some password and a big lock button shows up.
    Now after many weeks and almost completely giving up I found out that somehow open firmware was used to put in a password. Now I have tried absolutely every password I have ever used, and even some other things and nothing works.
    I honestly don't know how this was even set but if it was from me it was obviously an accident. Now the other thing is that I don't have any ADMIN password. I have it set to blank so you just hit enter to login/install things. I wonder if this has anything to do with the open firmware issue???
    I have tried as I said searching apple.com and many many many many many other places to find a way to fix this problem but can't find anything even close to a possible solution. I have 3 OSX boot disks, I have even tried using an Umbuntu CD to attempt to use the disk utility on there but nothing works.
    To anyone out there I have tried letting the main batter AND the PRAM battery run dead and that still seams to change nothing. So I imagine its a saved file someplace on the main board. Oh and I also removed the Hard drive, and PRAM battery and attempted to boot like that but still nothing works.
    I can boot up and use the computer just fine. Surfing the web, installing programs, etc. all work fine. I just can't use the FireWire transfer or Boot from anything but the main HD.
    Please someone help me with this. I need to get my personal information off this computer and reinstall OSX on it. Oh and last thing, Im not sure if it has anything to do with it but the rear two fans do not seem to work either. My other G4 Powerbook seemed to have the same problem too though. Replacing the fans on that one fixed the issue.
    Anyway I waisted over $500 to get another laptop (one model newer) all because of this problem and I really need to fix this so I don't have to worry about my personal information and I can finally either use it or sell it. This is such a frustrating issue, what can I do???
    THANK YOU TO ANYONE WHO CAN HELP OR AT LEAST POINT ME IN THE RIGHT DIRECTION (PLEASE DON'T TELL ME TO GO TO THE APPLE STORE. I HAVE FIXED PROBLEMS THEY COULDN'T BEFORE AND I CAN'T AFFORD THE $300 BILL TO HAVE THEM INSPECT IT, PLUS THIS MODEL IS OUT OF DATE AND THEY WON'T FIX THEM ANYMORE ANYWAY. FYI TO ALL YOU EARLY MODEL G4 USERS!)

    Since http://support.apple.com/kb/HT1352 says:
    Warning: The Open Firmware Password can be reset and changed by any one of the following (except MacBook Air):
    1-By any administrator user, as designated in the Accounts preferences (or in Server Admin).
    2-Via physical access to the inside of the computer.
    3-When the computer is started up in Mac OS 9.
    I would try this suggestion: http://maczealots.com/tutorials/security/

  • How the heck do you post a support question to Linksys Support?!

    My WRT350N is a pain and I have to reboot it often, at times several times per day.
    I have browsed, browsed and browsed but it feels impossible to find a way to post a question to Linksys directly. I only find FAQs and similar and have spent 20 minutes now. I left Netgear due to their products but the support was at least reachable.
    Please help me with a link or similar. I bought the router for myself and live in Sweden.

    I'm not sure these will work from Europe but they may be worth a try.
    You can email: [email protected]
    Also in America the phone support number is 1-800-326-7114

  • How the heck do you move the clip?

    wrong forum, reposted in actionscript

    Hi ooba,
    Actually, moveTo is part of the drawing API. It's used to
    move the
    drawing cursor to a specific location without drawing. I
    don't believe
    moveTo has ever been used to move a movie clip (or any UI
    object for that
    matter). In ActionScript 2.0, you must update the "_x" and
    "_y" properties
    (as kglad pointed out), and in ActionScript 3.0 they're "x"
    and "y"
    respectively. Unless you have your own "moveto" method, you
    won't be able to
    use it to move anything, even movie clips.
    Regards,
    Patrick Bay
    BAY NEW MEDIA
    "ooba" <[email protected]> wrote in message
    news:fn7jj1$8u5$[email protected]..
    > kglad,
    >
    > Thanks for pointing out that oversight.
    > Movie Clips are positioned by the moveto() while the
    textfield is
    > positioned via the _x, and _y.

  • How the heck do you start using the app

    Juts started usine apple products, iPhone 5c and iPad mini.  Heard that the iCloud was great, but I can not get it so that I can use it.

    General question - Where is a good resource for getting to grips with apple products and workflow?
    My wife and I have had apple products for a long time but never upgraded past 10.5.8 (mainly due to laziness and being happy with it). In the last month though she has bought a new MBAir and I've got an ipad air. To be honest they're very nice but I don't believe for a minute we're getting the most out of them. Where's a good place to start?
    For instance she's been given an iphone for work and when she takes a picture it sometimes turns up on her MBA sometimes doesn't. Now this is probably down to us not understanding the icloud, photostream/roll etc. so a beginners guide would be useful.
    I think I need an 'explain it like I'm five' for apple's new way of working...

  • OT:  how the heck do you pronounce "Aja?"

    Being who I am, I've pronounced it "ah-zha." But I recently heard someone say "Asia."
    This is keeping me up nights. I'm out of meds.

    The answer is found here:
    http://www.2-popforums.com/forums/showthread.php?t=64357
    Sorry to hear about the meds situation...do they write prescriptions for peyote?
    BTW: Please don't tell Steeley Dan about the pronunciation

  • How the heck do you clean and keep your ipod clean

    I have had my ipod video since christmas and I have a toughskin case for it and it never comes out of its case unless its on its charger. It is really scratched and ive tryed many ways not one thing works, so if anyone could please help me find a way to clean my ipod that would be greatly appreciated.

    See http://www.ipodcleaner.com
    Lots of sites have different solutions to cleaning them (in bottles, I mean.)
    Google AppleSauce and Ice Cream too.
    Hope this helps
    rjl

  • How can i prevent a user to login more than once at the same time ?

    Supose there are a user , D .
    and i am using thread and socket in the application.
    once a user logined in , it will open a new socket .
    Well , but D is trying to login twice at the same time ... and my thread is opening two socket for him .... , how can i prevent that ?
    *thanks for help and sorry for my poor english                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Thanks for reply
    ya ~ i've got a solution ~
    actually i am doing a server for mobile phone to get data. Sometime 1 single ID will send twice a message (usually nokXX mobile phones) .. i use milli sec to check those message ....
    n it seems working ....

  • How can I Append the same (altered) web page to the same Acrobat 9 Pro PDF file more than once

    The Acrobat 9 Pro utility in IE 8 of the Windows 7 Pro OS has a selection to "Append to Existing PDF," however it only allows appending the same web page one time only.  if the majoriety of the page data content is changed by selecting list item at the top of the page, I need to (re-)add the page with new content to the same (selected) PDF file, however the utilitiy does not allow this due to its maintaining a special index of each page base on the page URL or name.  Can the this index or the page itself be changed whenever the page is altered to make Acrobat think it is a new page? 

    I don't use IE, but I would suspect you can clear the cache or such to reset this option. You could also just open the web site directly in Acrobat and play the game there.

Maybe you are looking for