My delema

currently have a form that users will fill out using adobe reader 8 or 9. I am using acrobat 7 pro, and am aware as far as i know that i cannot extend rights to readers to sign, and save. (if you know a way this would be ideal please let me know)
is there a way that i can have the users press a button and then have that button save the data to an xml file at a pre-specified location on the server. and have the file name based on a variable?
then other users using acrobat 5 or 7 can later press an import button on the form that opens up the folder with the xml data. they select the file they want, have it populate the fields on the form with data for review, signing and saving.

Same issue. I upgraded my daughter's phone, prior to ATT's announcement of its modified upgrade policy, thinking this well could happen but figuring, what the heck. I am not sure there is a way "around" this, since AT&T are entitled to make sure the terms of their purchase plan are respected, but if anyone has a way, would love to know it. Otherwise, I'll just wait a few days for the next one to show up.

Similar Messages

  • Hello everyone im in a little delema. I keep on trying to update my itunes to 10.6.1 but whenh i do i get to like a 3/4 bar then it says this "Erros occured while installing the updates if the problem persists etc. I have tried to re-download an it failed

    i ahve tried several times to fix it by going to tools and download but i ahve failed countless times i cant uptdate itunes i cant uptdate my ipod
    if anyone knows what to do please help!!!!!!!!

    This is an itunes question and should be posted in the itunes forum.

  • How to Split field  into multiple fields in  Import Manager without  delem

    Hi
      Is there any method to Split a record in MDM without using delimitter?
    I dont want to use any delemitter  My field content in Source is  PRODLABELPACK and I want to split it into 3 fields in destination  Field1= PROD
    Field2=LABEL   Field3=PACK
    I know how to split it if the content is PROD_LABEL_PACK .But we dont want to use delimiter in the firld and want to use some substring function
    Regards
    Prashant

    You Can use below FM  SWA_STRING_SPLIT -
    First Use READ_TEXT FM.
    then loop into
    loop at tline.
    Here use 'SWA_STRING_SPLIT' -> Pass tdline and append the text into other internal table.
    endloop
    Thank you
    Seshu

  • Please Help!!! I have a delema about my new 3gs and phone lines! ANYONE plz

    I just recieved my new iphone 3gs that I got thanks to my step dads upgrade, I now have a problem because I am trying to use it for my number but when I get to itunes to ativate it shows my step dads number. Please tell me how I can get around this. I tried putting my old sim in, I tried calling att and they said they would take care of the number situation but they did nothing about the number showing up wrong in itunes. Thanks

    Same issue. I upgraded my daughter's phone, prior to ATT's announcement of its modified upgrade policy, thinking this well could happen but figuring, what the heck. I am not sure there is a way "around" this, since AT&T are entitled to make sure the terms of their purchase plan are respected, but if anyone has a way, would love to know it. Otherwise, I'll just wait a few days for the next one to show up.

  • Need help solving a minor delema....battery quest

    Hello-
    I received my Zen Micro only two days ago, I am very happy with it, yes....
    but there is one little thing that has been eating away at my brain....
    I wonder how I should recharge my battery!
    I know I need an adapter, I'm not stupid...buut...
    The Zen Micro instruction booklet says 'Connect your player to <EM>the</EM> power adapter.'
    This gives me the impression that an adapter should come with the product...
    If it should, I haven't noticed it....
    So my question <EM>is</EM>....
    <EM>Should</EM> a power adapter come with my product, or do you need to buy one specifically for the Zen Micro?
    Also, would it work with a regular, Walmart-bought power adapter, or are they not powerful enough?
    (You see, I have a number of them laying around the house...)
    I would like to know the answer to this soon.... I do not want to be stuck with an un-usable devise....
    Thank you,
    =Sumie=
    :robotmad::robotmad::robotmad::robotmad::robotmad: :robotmad::robotmad::robotmad::robotmad::robotmad:

    In your case, the power adaptor is the USB cable the ZM comes with. The newer retail ZMs come cheaper, but at the cost of a missing power outlet charger.
    There are some problems to be avoided with USB charging. (search the forums).
    I would resiously recommend either getting the newest .x or the newest 2.x firmware from the Creative download pages and reflashing your player with it.
    Cheers,
    Jan.
    http://en.wikipedia.org/wiki/Dilemma ;-)

  • Update QT Delema's

    I have been trying to update QT 7.0.2 to 7.3 for my boys I-Pod. I get the prompt that it can not remove old version because the file QuickTime.msi can't be found. I have searched the HDD and it does not exist on my PC. I have tried uninstalling I Tunes and everything. I believe what I need is a V 7.3 that maybe just over-rights the older version, if there is such a thing. Any help or suggestions for me to try will not be disregarded. Thanx in advance.

    HI THERE
    i think you should go for the creating sequence first
    reason for creating sequence is
    u need like 50034+1 like that
    1001
    50034
    1003
    50035
    CREATE SEQUENCE SCOTT.SEQ
      START WITH 1
      MAXVALUE 60000    -- here you can take your upper bound
      MINVALUE 50034
      NOCYCLE
      NOCACHE
      NOORDER;after that make a plsql block take min value and max value from user_sequences
    DECLARE
    MAX_VAL NUMBER;
    MIN_VAL NUMBER ;
    BEGIN
    SELECT  MIN_VALUE,MAX_VALUE INTO MAX_VAL,MIN_VAL FROM user_sequences  where sequence_name = 'SEQ';
       FOR a IN MIN_VAL  .. MAX_VAL
       LOOP
          UPDATE   table_name
             SET   col_name = seq.nextval
           WHERE   MOD (col_name, 2) = 0;
       END LOOP;
       COMMIT;
    END;run this loop and you are done
    regards
    Hitesh
    Edited by: Hitesh Nirkhey on Feb 21, 2011 5:41 PM

  • Need advice on whether to build a traditional database layout or a property bag lookup format for new application?

    Hi,
    This may be a little of an open ended question, but Id like to ask the crowd as I have a delema to whether or not to use a standard database design or a propertybag/flatfile format and transform the information within my application?
    THE SITUATION (EXAMPLE)
    We have a table called "people". And these persons can either be a basic contact or be associated to several other "types" such as a member, a representative, a staff member with login details etc.  These types are expected to expand
    and may need additional fields adding to them.
    A: The old fashioned poor approach is to create a table with all the unused columns and simply ignore what we don't need.
    B: After normalisation, the traditional approach would be to have link table and each "type" would have its own table with the separate columns needed.
    C: Lasty, we have recently done some projects using matrix and property type lookup tables (e.g. a reference table to hold the persons ID, then the columns held in a single properties table of "propertyname and proteryvalue".  When the application
    "gets" the record it can return a completely dynamic length column list based on how many properties it finds.  I.e. Person 1 have only their email address and name in the property bag so the datatable returned in code would be 2-3 columns (inc
    id).  Person 2 has lots of properties and so their datatable would be returned in code with many more columns.
    I hope that makes sense?
    THE DILEMA
    If I was only using our application to access the data then I could setup a function library to control the access, but I asl want to use report editors (maybe SQL report Services?).  And the customer would get completely confused to know which field
    is what and how to get the data out?  I also want to avoid situations where the application expects someone to have a property (column) and its not there?  It may make a difference if I tell you that they will aslo have tables holding heiracrchical
    groupings too, which will already make it hard for the customer to use in SQL Report Services.   Should I use the traditional approach and the metastable (property bag) approach?
    PROS AND CONS of B:
    +Traditional approach and most tools that need to access SQL directly will work, assuming the customer understands the column names properly
    -A single field change would likely involve all levels of MVC (model, Controller, View) so 3 times the work (maybe 3 people if using specialist SQL Admin, C# Dev and Interface Designer)
    -New person types require a whole new table to be linked in
    -Global searches need to constantly be updated to include other tables columns
    +Our development suite (Visual Studio) allows more visual designing in the IDE when the table is fixed
    PROS AND CONS of C:
    -Cant see the record easily in SQL directly
    -Would have to make any report editor use datasets within an the app rather than direct to SQL directly, making the whole system dependant on a proprietary APP control system (although we would control this anyway)
    +Global searches are very good, as all properties are held in a column
    -The property table would grow quote big, so needs good indexing
    +Any new fields or field groups (types) would simply be a configuration setting in the app (not any manual admin)
    +If any presentation of data changes where needed this is likely to only require the controller (developer) on MVC to input changes (assuming the interface expects dynamic fields)
    -The tables to show to the user through the app would need to handle dynamic columns and so would need to have generic auto formatting in code (which we could not see in the designer (Visual Studio) and set exactly as required). Slight guess work, but we
    could hold setting in the property bag to indicate how to show that property.
    A little bit war and peace, but your thoughts?
    Kindest
    Martin
    PS: Some of you may raise the option of stored procedures, in order to do the transform without SQL still.  Would this be viable and still work with SQL Report Services?

    You ARE using a RDBMS and you appear to intend to use standard development tools.  Therefore you will probably regret any attempt to move away from a properly normalized relational database.  And that does not begin to address any performance
    aspects. 
    Option A really should not be considered an option.  That is not proper normalization for a relational database.
    As best I can tell option C is simply an EAV (Entity Attribute Value) model - and you can search on that term for discussions about the pros and cons. 
    Lastly, AFAIK reports / SSRS can use stored procedures as information sources - that really isn't a design issue.  However, if you choose option C then you most likely will be forced to use procedures for reporting purposes.

  • PLEASE HELP - COLOR SHIFTING PROBLEM on output NTSC monitors

    http://www.smmlv.com/testproject/
    Above is a link to a layered photoshop file that has a USA map and over a dozen network overlays used in a section of our video. I animate each layer on sepeartely in the video and have noticed a major problem recently, the color of the art does not hold true to placement. I created the art originally in Illustrator and then converted the file to Photoshop at 640x480, 72dpi. This has always worked perfectly in the past to display and animated artwork in FCP.
    Right now, in FCP I am using the NTSC DV 3:2 frame size, and the compressor of DV/DVCPRO - NTSC. I have a JVC Profressional DV deck that hooks up through firewire and sends S-Video to my monitors. This setup has always given me a great picture even though it is not completely upcompressed. Using these settings and this art, the color lines on this map in red, light blue, yellow and purple all have a "color shift" to the left about 5 pixels. It makes it appear that the line is where it is in the file, but the color overlaying the line is offset to the left 5 pixels and transperant to about 50%. This occurs only when viewed on some TV's and NTSC monitors and projectors. The strange thing is, some monitors display the color aligned almost perfectly on these maps and other monitors and projectors show this "digital halo" of color shifting really bad. If I take the layered network overlays in these colors and color tint them to black or grey, white, light green, or even light orange, they no longer have the color shifting and the detail is perfect.
    Is there any way to fix this problem? I have tried duplicating the sequence and setting the compressor to 8bit Uncompressed, and while my captured footage is not this compression, in theory the art should render at this higher resolution setting. This did nothing to solve the problem.
    I also have tried using different Broadcast safe and Y/C corrector filters with different results. The Y/C filter allowed me to reposition the color problem and thus removing most of the problem, but also removing most of the color. Nothing else has allowed me to seemingly move the color into the proper possition.
    What is causing this color shift on the displayed NTSC image?
    In FCP 4.5 I can see my rendered video in the program viewer screen and besides the pixel compression appearing on the lines, overall the video looks great paused or even better when playing. Then you view it through my deck onto my Pro Sony NTSC 19" color monitor and it also appears great, with a slight color halo to the left of these colors, but the color in the lines are there. If you are a few feet from the screen and know what you are looking for you might see it, but doubtful. Then you view it using the same signal on a 17" Samsung TV and the color shifting makes the map and other art, like the clients blue logo, look horrible, with each color line appearing twice and offset left from each other as if you had double vision. Normally I would think it is the TV causing this, but then we tested this same movie on 2 differnt projectors. The $700 Epson projector displayed everything beautifully, again with only the slightest color halo to the left, but then the Panasonic $4000 projector made everthing in these colors look double vision again. What is going on???
    One more thing to keep in mind, my color bars also show this problem with these colors as well as shot footage of these facilities. There are tall red poles in the shots and everything displays fine except for the red pole color looks like it's glowing off the pole to the left.
    PLEASE tell me there is a solution to this.

    I have tried Degaussing, using filters, changing cables, and testing other monitors and systems on these monitors, everthing I can think of to solve the issue. Is it FCPo or is it the monitors?... or is it a signal strength thing. Can monitors and projectors shift color when the signal is read from a DVD or Mini DV Deck? Is there a fequency difference (Ie: 75mgz or 80 mgz) that might be causing the shift in some monitors and not so badly in others. But if this was true, how would some DVD's (like Baby Einstein DVDs that use really bright colors) display red and blue perfect using these same player and monitor, while my projects is shifting color? Doesn't that rule out the signal from the DVD player if other DVD's do not have this issue?
    I have uploaded the original art used, an exported .jpg file from the FCP timeline and sample photos of 2 different monitors to show to show this problem as best I can. http://www.smmlv.com/testproject/
    Someone out there must have had this problem before. There's no way a color shift problem like this with Mini DV has gone on this long without someone seeing it.
    One last thing about what I have tried... I do understand that with editing in Mini DV instead of uncompressed or HD video I lose a bit of resolution (4:2:2) and I see this compression occuring in some of the areas in the video where these problems persist. But, I did remake the art and rerender this project in an 8bit uncompressed settings and then displayed that up on the screen and I get the same color shift. I keep going in circles trying to find the culprit that is causing the delema.
    PLEASE HELP! There are large tours going through our facilities daily and the large screen projector is displaying this problem as well. Let's just hope they don't notice and that their TV's at home or office does not display it on our final DVD's made.

  • HP Officejet Pro 8600 - Print Preview is not available

    I have a new HP Officejet Pro 8600 AIO printer that I purchased last week. I hooked it up to print in a network environment. I have thee window xp systems and three windows 7 systems printing to it with no issues.I am very happy with it. Yesterday my wife told me that when she printed she missed the print preview that our former printer had. I thought I would easily get into the HP 8600 printer program and setup the print preview option. To my surprise after checking in numerous areas and online, I found out that it looks like the option has been left out or not provided for the printer by HP. I realize the MS Office and many other programs have their own print preview however when being online with Google Chrome or Internet Explorer, you quickly realize that the option to select the pages you want to print and not print could save alot of wasted paper and ink. Someone please tell me that a print preview software option is in the works for this otherwise great printer! I can not imagine leaving this out of the printing software package provided.

    Since HP isn't answering me on the 'Print Preview' being available soon or which HP printers software actally HAVE the 'print preview' function enabled... I did some searching and I found a partial answer to the 'print preview' delema.  The web site http://www.obviousidea.com/windows-software/greenc​loud-printer/
    has a free program called GreenCloudPrinter which, in a nut shell, will install a printer? called GreenCloud which set itself up as the default printer and any file that is sent to the printer gets directed to the GreenCloud device which will then bring up a 'print preview' screen with options to remove blank pages and or print or not print the preview!  And a lot of other functions too.  Works great and it's free.  You do have to register it and a registration code is emailed to you to unlock the program. I hope that helps you out... worked for me.

  • IPhone\iTunes in the Enterprise

    We are looking into deploying iPhones into our environment. Presently we do not have iTunes on any of our systems. Got around the activation delema using Apple info, which was great...
    My question is as follows: If a member takes the iPhone that is activated and finally connects to iTunes to do whatever, download iPhone Apps\Buy Music..., the system he connects to (iTunes installed) is this the only system this iPhone should connect too?
    What happens if he connects to another laptop system and logs into iTunes Account?
    Will the user have to do a Backup of the iPhone on this laptop that he connected to or can this be done on another system?
    Just trying to invesion how support will be for a iPhone in a corp environment... Do IT Staff tell iPhone users to do their own backup on their own system??? We are presently a Blackberry environment and most data is on our BES Server, so changing BB devices is pretty simple but if we have to swap out a iPhone, how much hoops do i have to jump through to make sure the new device look like the old one...

    MSHume wrote:
    My question is as follows: If a member takes the iPhone that is activated and finally connects to iTunes to do whatever, download iPhone Apps\Buy Music..., the system he connects to (iTunes installed) is this the only system this iPhone should connect too?
    Yes.
    What happens if he connects to another laptop system and logs into iTunes Account?
    Any iTunes-managed media content (music, videos, apps, photos) loaded on the phone will be erased and replaced with content from the second computer. By design, the iPhone syncs with only one iTunes library.
    Will the user have to do a Backup of the iPhone on this laptop that he connected to or can this be done on another system?
    On the laptop that synced with. Stick to one computer for an iPhone.
    Do IT Staff tell iPhone users to do their own backup on their own system???
    Yes, they should back up to their own system. Obviously, MS Exchange data are safe; but, locally stored data (e.g. call history, sms, 3rd party app data) are backed up to the computer the phone is synced with.

  • Photoshop not working properly in Mavericks 10.9.1

    So i have major issues in Photoshop since upgrading to Mavericks!! Ive seen this all over the internet, but didnt find a real definitive answer to the issue, so im just going to post my own delema in the hopes we can find a solution.
    Since the "upgrade" to mavericks 10.9.1 my photoshop does not work well at all.  Using my CS6 is a headache.  All of my brushes "stick", that is, they fail to react to me if i want to, say, change a brush size, opacity, or even change a tool.   This happens after about 3-4 minutes of masking, or painting in general.  It even sticks when using the polygonal lasso tool. i'll have to click away from my project, say, to the layers palette, or off photoshop altogether, to re-stimulate the tool to react again. Strange.  This slows down my workflow to a crashing hault. I like to use shortcuts to keep my work going and the sticking(as i am calling it)reverts me to go through a series of on-the-fly remedies in order to correct a problem that i never had to begin with, that is, until the lovely Mavericks update came out and was installed.
    Additionally i had the other popular "white wall" photoshop problem, but after downloading a plug in that i saw in a similiar forum, it appears to have fixed that issue. Drop down menus would go blank, or white, creating a white-wall effect where you couldnt read any of the windows.  The only solution was to auto save your work frequently, then shut down Photoshop and start over again.  Thank god for that plug in.  MAvericks you suck.
    any one else having this problem? questions? comments? You godda be out there becaue ive literally read hundreds of issues like this.
    Thank you for your time in reading this.
    I use Photoshop cs6, with a BRAnD NEW imac late 2013 w/ 32G RAM, 256G flash storage. i use a Wacom intuos5 touch tablet, and notice a connection between these key elements:
    Wacom tablet
    Mavericks
    Photoshop

    I am having a different problem, using Mavericks (10.9.3) with Photoshop CS 5.1 and a Wacom Intuos 5 tablet (6.3.8-2).
    I used to have the white menu problem, but lately I'll be working along and then suddenly my brush tool, say, will turn into the hand tool, but still shows the brush in the tools palette. If I click on another tool, no matter what, it continues to show the hand tool. I can't brush with it anymore, so it isn't just a display problem. I'm often in full screen mode, and if I hit the "f" key to return to standard screen mode, the normal grey background switches to blue, hitting it again switches it to black, and if I keep hitting the "f" it will continue to cycle through the colors.
    I've tried quitting Photoshop and relaunching, and would still have the hand icon. In the past, I would restart the cpu; today, I walked away and when I returned (within 10 minutes, probably) it was acting normally again.
    This scenario plays out sometimes once a week, sometimes multiple times. I can't find anything relating to this particular issue doing a google search. Any suggestions?

  • BOOT DEVICE NOT FOUND - PLEASE INSTALL AN OPERATING SYSTEM ON YOUR HARD DRIVE

    HP G6-2212SA LAPTOP ( 2 YEARS OLD) BLACK - WINDOWS 8
    I HAVE RUN THE MEMORY TEST PASSED
    RUN THE HARD DISK QUICK CHECK - PASSED
    RUN HARD DISK EXTENSIVE TEST - PASSED
    I HAVE BOUGHT A NEW HARD DRIVE, INSTALLED IT AND RUN ALL THE SAME TESTS WITH ALL THE SAME PASSED RESULTS. I BELIEVE THAT THE PROBLEM IS NOT THE HARD DRIVE, SO I HAVE TAKEN THE NEW ONE OUT AND PUT THE OLD ONE BACK IN, AND HOPEFULLY BE ABLE TO GET A REFUND IF I SEND IT BACK.
    I HAVE FOLL0WED INSTRUCTIONS ON THIS FORUM TRIED MOST THINGS STILL GET THE SAME MESSAGE.
    I HAVE BOUGHT A WINDOWS 8 RECOVERY DISK OFF EBAY, TRIED IT SEVERAL TIMES AND DIFFERENT WAYS BUT WILL NOT LOAD UP
    PLEASE HELP AND ADVISE AS IM IN A DELEMA
    DARREN

    Hi @Darren104
    Welcome to the HP Support Community. I saw your post regarding the Boot Device not Found error message. This HP document Resolve Boot Device not Found Error Message will show you how to reset your BIOS. This will force the BIOS the look at the hardware and it might see your new hard drive. Another reason that it might not be seeing the hard drive is because there is no bootable operating system on the hard drive. You might need to look at taking it out and installing an operating system on it via another computer.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • Best Practice - Changing description for Org Unit/Position or creating new?

    Hello Freinds,
    I just want to know from your experience what's normally practiced in your implementations for OM :-
    For scenarios where there is a need to change the description of a particular org unit or position, do u
    1. just change the description effective a particular date (to maintain history) or
    2. put an end date to those objects and create new ones ?
    Solution 1 is quick and easy, but in IT0001 the description displayed is as on start date of that infotype which is normally a date prior to the change in desc of those objects. As a result this infotype keeps displaying old description.
    Is there any way to change this display to show the current description instead of the description as on start date of this infotype ???
    Solution 2 calls for a lot of related activities, say if i create a new org unit and delemit the old one - then i have to move all the sub org units and positions into this new one ... which is quite time consuming and doesn't really seem practical.
    How do u manage such scenarios ?
    Thanks
    Allen

    We use option #1, although I am not sure this is best practice.  Using option 1 for positions makes it challenging when it comes to reporting on length of time in position.  We frequently have the scenario where a person is reorged not because they applied for another position, but just because the big wigs want to move around the chess pieces.  In these cases we simply modify the position attributes and then run a PA action.  Then if you run a query and use the standard delivered Length of time in position field, it appears as if the person has been in the same position for years (which they have), but their position has been retitled, re-graded, and re-orged numerous times.  This makes it very difficult to get to an employee's length of time in their role. 
    This is a great discussion question I hope more people respond with what they do and why.

  • I want to use windows 7 and vista to store movie files

    Im having trouble!!
    I have windows vista on my destop using itunes and saving movies i pruchase very well, but i cannot purchase HD movies with vista op!
    So i have a laptop with windows 7 on it! Now my laptop is autorised but cannot see the movies of itunes in my server which is iomega (where i store my movies music etc) i also use icloud aswell as a backup ) .
    i dont seem able to use the win 7 laptop to acess my movies stored from my vista destop on my server!
    Please help as i want to start buying hd movies through my wins 7 laptop , but still want acces thorugh the vista comp!!
    I have been given a apple tv 1080 for christmas, i also have 4 other older apple tv!
    All iphones ipod ipads work well on my system!
    Just having this delema with the wins op system and hd movies of itunes
    Please help its driving me insane
    my email is [email protected]

    There is another less expensive option:
    Windows 7 System Builder $99 and full install is limited to one computer (can't be installed later if you get a new computer, but for what you save, so what, and Windows 7 SP2 or even whatever "8" is will be out by then (2013 time frame).
    Amazon and Newegg are good places to find Home Premium, and unless using only in a VM and not native Boot Camp, get 64-bit version.
    NO need for retail higher price that comes with 32 and 64-bit and ability to reinstall on new hardware some point.

  • When I sync my iPhone 4s running 5.1 music is missing.

    When I sync my iPhone 4s running 5.1 music is missing.  I restored my phone and nothing.  I un-synced my music and then re-synced nothing.  I am running the latest iTunes software nothings working. I've also tried syncing through wifi and the usb
    Please help
    PS this would happen in the past.  All my music would be there then some disapeer on the next sync.  Then come back! its a reicuring delema for me!!!

    The only limit is that of the device. No restrictions on how much of it you can use for music. Is part of your music library unchecked?
    tt2

Maybe you are looking for

  • Wireless connection not restored immediately after sleep

    Hi, Since I have updated to Mavericks (OS X 10.9.1), my wireless connection doesn't restore automatically anymore after sleep. This recently also started to happen when I boot my computer. I always have to click the wifi icon, select my network and t

  • 2 devices 1 acount in game center

    please help i have iPhone and iPad and i have one apple ID on the both when i try to sign in game center in my iPad it made new acount i need to delet this new acount and use same acount in all my devices please how can i?

  • Acrobat Page View Problems

    Hi all, My Acrobat 8 documents are only opening in 2-page view even when I select single page-continuous view. It displays my two-page documents bizarely. Any clues? Thanks a lot for your responses.

  • Ejb primary key

    hi, a newbie question. pls bear with me ;-) i have a challenge in building an ejb project which consists of a single entity bean generated from a db table. btw, i am using workshop 8.1. the table consists of three primary keys. i suppose ejbgen will

  • SPRY WITH THICKBOX OR GREYBOX

    I have been having problems getting Thickbox or Greybox windows to popup when I place the anchor tag containing attributes for these calls inside a spry region. It ends up opening up the image as a normal hyperlink would. Once I move this call to eit