Auto replacing my tag brackets with lt and gt :(

Hi everyone,
I have an Interactive report that converts some '<a href ...>X</a>' text of mine by replacing the '<' and '>' with '&lt' and '&gt'. How can I make it so that a link is actually embedded (a link that says 'X'), rather than what shows up as '<a href ...>X</a>'
This OTN thread covers it somewhat: Re: issue with html in sql - < is replaced to &lt ; - but the 'column formatting' (called report attributes for me) doesn't have a 'display as html' option:(
Edited by: user10225290 on Jan 21, 2009 9:26 AM

Hi,
Is the content of the column just the URL you want to link to?
I have just tested creating an Interactive Report using:
SELECT EMPNO,
'&lt;a href="f?p=' || v('APP_ID') || ':11:' || v('SESSION') || '"&gt;' || EMPNO || '&lt;/a&gt;' EMPNO_LINK,
ENAME
FROM EMPand the second column showed up, and works as, a proper link.
Andy

Similar Messages

  • Auto-replace two minus signs with a proper dash

    I wish Keynote would offer to do this! I've been cutting-and-pasting them into K06. K08 now offers a space to enter personal auto-replace 'requests', but putting "--" into the first column and a cut-and-paste dash (from--hold your breath--MS Word) doesn't work.
    Any hints, please?
    Thanks

    I'm really happy to have learned the "Option + -" dash: as that produces exactly what I'm looking for and it takes no more keystrokes than "--" to produce, this is solved without fussing with auto-correct.
    Thank you!

  • GenerationType.AUTO doesn't work correctly with Kodo and MySQL

    Greetings,
    I'm migrating applications from JBoss/Hibernate to WebLogic/Kodo. The following column annotation:
    @Id
    @Column(name="CUSTOMER_ID")
    @GeneratedValue(strategy = GenerationType.AUTO)
    public long getCustomerId()
    is supposed to generate auto-increment primary key in mysql. This is what happens with Hibernate. With Kodo, this seems to be equivalent with GenerationType.TABLE as a table named openjpa_sequence_table is created, containing sequence values. So what should one do in order to be able to use true auto-increment strategy with MySQL and Kodo ?
    Many thanks in advance,
    Nicolas

    Hi Nicolas,
    By setting the generation strategy to AUTO, you're essentially letting the JPA provider choose which strategy to use. It looks like Kodo is using the TABLE strategy by default and Hibernate is using the IDENTITY strategy here. You can set the strategy to IDENTITY if you want Kodo to behave similarly to Hibernate. However, it's worth pointing out that there may be a reason for Kodo not using the IDENTITY strategy by default.
    The docs at: http://edocs.bea.com/wls/docs103/kodo/full/html/ref_guide_pc_oid.html#ref_guide_pc_oid_pkgen_autoinc
    point out the following:
    "Statements inserting into tables with auto-increment / identity columns cannot be batched. After each insert, Kodo must go back to the database to retrieve the last inserted auto-increment value to set back in the persistent object. This can have a negative impact on performance. "
    - Matt

  • [Solved]Replaced my /var partition (with dd) and am having boot issues

    I recently got a new hard drive and have split /var and root across the two drives. However now I am having issues booting the computer. Each boot it mounts the /var and /home partition (both of which are on the new drive) and hangs for a large period of time before booting. (it does eventually boot fine)
    The reliant section of journalctl is:
    an 05 04:54:33 ArchPC systemd[1]: Started Trigger Flushing of Journal to Persistent Storage.
    Jan 05 04:54:34 ArchPC systemd[1]: Started Load Random Seed.
    Jan 05 04:54:34 ArchPC systemd[1]: Started Recreate Volatile Files and Directories.
    Jan 05 04:55:58 ArchPC systemd[1]: Job dev-disk-by\x2duuid-e6fa1ae1\x2d5579\x2d439d\x2d94cc\x2d11b2c0e67070.device/start timed out.
    Jan 05 04:55:58 ArchPC systemd[1]: Timed out waiting for device dev-disk-by\x2duuid-e6fa1ae1\x2d5579\x2d439d\x2d94cc\x2d11b2c0e67070.device.
    Jan 05 04:55:58 ArchPC systemd[1]: Dependency failed for /dev/disk/by-uuid/e6fa1ae1-5579-439d-94cc-11b2c0e67070.
    Jan 05 04:55:58 ArchPC systemd[1]: Job dev-disk-by\x2duuid-e6fa1ae1\x2d5579\x2d439d\x2d94cc\x2d11b2c0e67070.swap/start failed with result 'dependency'.
    Jan 05 04:55:58 ArchPC systemd[1]: Job dev-disk-by\x2duuid-e6fa1ae1\x2d5579\x2d439d\x2d94cc\x2d11b2c0e67070.device/start failed with result 'timeout'.
    Jan 05 04:55:58 ArchPC systemd[1]: Starting Swap.
    Jan 05 04:55:58 ArchPC systemd[1]: Reached target Swap.
    However I am not sure where this could be, unless it is attempting to mount my windows partition?
    As a side note, during this I also moved my windows install to the same drive as my root and it will no longer boot from ether its new or original drive.
    Thanks.
    Last edited by jarrah-95 (2013-01-04 09:24:59)

    Jarrah-95,
    Thanks for your 'solution' post.  I had a problem on boot with the boot process 'stalling' with a "recreate volatile files and directory" message that would after about a 30 second delay eventually finish the boot process.  Based on your post I ran 'blkid' and discovered my 'swap' partition in my /etc/fstab file had the wrong UUID for the 'swap' entry.
    After entering the 'correct' 'swap 'UUID',  the boot cycle is restored and fast as ever.  Back to the basics wins again.
    Next task is to find out how I created the mistake.
    best regards,
    marvinudy

  • Replacing HTML tags using HTMLEditorKit etc.

    Hi
    Not sure if this is the best place to ask this. I've searched without finding much.
    Basically I am trying to create a HTML template system for output. User's can change the templates to change the program output.
    The templates are basic HTML with custom tags inserted, that reside in a templates directory. For example, a simple template might be:
    <html><body>
    <table width="100%"><tr><td width="25%">Here is the output:</td>
    <td> <insertOutputHere> </td>
    </tr></table>
    </body></html>
    ^^ Users would be able to edit these template .htm files to affect the output .htm files. For instance, changing where the <insertOutputHere> tag is, or formatting the table it is output to.
    I am using the Swing HTMLDocument, HTMLWriter, HTMLEditorKit classes to load and parse the .htm files, iterate the tags and replace any custom tags (defined in code) with the program output. I have been able to locate these custom tags no problem, but I don't know how to replace this tag entirely with my output (Which will be formatted HTML string). I have been trying to use the insertBefore, insertAfter methods with limited success. In particular I have an 'include' custom tag which includes other files by recursion - it works except the <include> tag is not removed, and depending on which insert method I use, it usually goes into an infinite loop of parsing the <include> tag WITHOUT removing it, then picking it up again when its done.
    Basically I'm looking for any advice as to how to go about COMPLETELY REPLACING these tags with a well structured HTML string. I can post some code if need be but I barely comprehend what I've done, LOL.
    TIA

    I've looked over my mess of comments :)
    setOuterHTML is what I was previously using and it was quite unpredictable at times, as far as I could tell it is very strict with it's requirements for structured HTML (EG no floating line breaks, everything must be "paragraph-ised" which b0rks up the layout) and I can't rely on anyone using/extending these classes to write well structured HTML.
    I remember the problems being quite odd, such as the output for one custom tag being displayed twice for some and not at all for others, and while it isn't critical data, it was still displayed in a way that it could be interpreted as correct - I just knew it wasn't.
    So I dropped setOuterHTML to try insertAfterEnd - this leaves the tags in there and, like roughly explained above, it would pick up tags infinitely because they were not being replaced.
    Here is a relevant method to give a better idea of what I've done:
           public HTMLDocument parseHTMLfile(String filename, Custom_HTML_Tag tags[]) {
          //create a document
             HTMLDocument doc = (HTMLDocument)kit.createDefaultDocument();
             fileDepth++;
             try {
             //read in the file
                BufferedReader rd = new BufferedReader(new FileReader(filename));
                kit.read(rd, doc, 0);
                if (tags != null) {
                //replace tags with page content
                   ElementIterator it = new ElementIterator(doc);
                   Element e;
                   while ((e = it.next()) != null) {
                   //look for includes
                      if (e.getName().equals("include")) {
                         if (fileDepth >= 5){
                         //WARNING:
                            System.out.println("fileDepth has reached 5, include may be recursive. aborting.");
                            continue;
                         String href = (String)e.getAttributes().getAttribute(HTML.Attribute.HREF);
                      //grab parent of current file (IE the folder in which it sits)
                         File f = new File(filename);
                         String include = f.getParent() + sep + href;
                         f = new File(include);
                         if (f.exists()) {
                            HTMLDocument htmld = parseHTMLfile(include, tags);
                            StringWriter sw = new StringWriter();
                            HTMLWriter w = new HTMLWriter(sw, htmld);
                            w.write();
                            doc.setOuterHTML(e, sw.toString());
                         else {
                         //couldnt find include file - warning
                      for (int i=0; i < tags.length; i++) {
                         if (e.getName().equals(tags.getName())) {
    //doc.setOuterHTML(e, tags[i].getText());
    doc.insertAfterEnd(e, tags[i].getText());
    //System.out.println("found tag: " + tags[i].getName() + ": " + tags[i].getText());
    catch (BadLocationException ble) {// cant happen?
    System.err.println("ERROR (" + 999 + "): Could not parse document " + filename + "; BadLocationException");
    System.err.println(ble);
    catch (FileNotFoundException fnf) {
    System.err.println("ERROR (" + 999 + "): Could not parse document " + filename + "; File not found");
    //System.err.println(fnf);
    catch (IOException ioe) {
    System.err.println("ERROR (" + 999 + "): Could not parse document " + filename + "; I/O Error:");
    System.err.println(ioe);
    fileDepth--;
    return doc;
    setInnerHTML kills it with the 'Can not set inner HTML of a leaf' error
    Thanks

  • Feature Request: Tagging coupled with Smart Folders

    Would love to see the next version of Safari add tagging, as has been mentioned here before, but more importantly I'd like to see Smart Folder capability added as well.
    I'm a big fan of Smart Folders in Mail; makes it easy to file -- I just drop everything in my "Saved Mail" folder, then set up the Smart Folders as needed (e.g., "Client Mail", "Mom", "Amazon - Sold, Ship Now", etc.
    Applying the same process to Safari bookmarks would be wonderful. For instance, let's say I have a bookmark for the plastic modeling website Starship Modeler (starshipmodeler.com); I could tag it with "Modeling" (obvious), "Shopping" (since it has a store), "Sci-Fi", and then even more specific tags like "Star Wars" or "2001 A Space Odyssey". I could then make a smart folder that would find bookmarks tagged only with "shopping" and "Star Wars", and it'd show up there. But it would also show up in my smart folder just for "modeling", etc.
    Right now I have hundreds of bookmarks if not more. I've tried a number of tagging programs but none really fit the bill. Native tagging, along with smart folders, would make Safari far and ahead my favorite browser (which it already is, but more so, eh?).

    Hi,
    Put a bug in Apple's ear by providing feedback here.
    http://www.apple.com/feedback/macosx.html
    Carolyn

  • Very slow performance with UNION and UNION ALL

    I am returning three datasets as one with a UNION ALL between each of three SQL statements. The first one returns either 3 or 4 rows, the second one returns about 10 rows and the third one returns one row. The SQL statements are a little complex but they're all working on very small datasets ( < 1000 rows ) so when I run each of the three SQL statements by themselves, they run to completion and return data in less than 1 second.
    However.
    When I join the three statements together with a UNION ALL statement between them, the statement runs until I manually abort it. I've run it for up to two hours and it shows no signs of either 1) erroring or 2) running to completion. And, I've tried replacing the UNION ALL with UNION and I get the identical results - nothing returned, no error message.
    I've checked the obvious -- same column names, same number of columns, etc. I think that if there were something obvious like that, I would get an error message as soon as I attempted to execute the statements.
    I will be happy to post the code if you'd like, but I'm wondering if anyone has experienced these or similar symptoms when joining together SQL statements with UNIONs and if so what you did to get around it.
    Thanks in advance,
    Carl

    Or I guess you could use subquery factoring (WITH clause) and MATERIALIZE hints to create the temp tables inline, e.g.
    WITH table1 AS
         ( SELECT /*+ materialize */ somecolumns FROM sometable )
       , table2 AS
         ( SELECT /*+ materialize */ somecolumns FROM othertable )
       , table2 AS
         ( SELECT /*+ materialize */  somecolumns FROM anothertable )
    SELECT somecolumns FROM table1
    UNION ALL
    SELECT somecolumns FROM table2
    UNION ALL
    SELECT somecolumns FROM table3It might also be valuable to investigate exactly what is happening and why, as this might suggest a way to address the root cause.

  • Sql Query to replace the square bracket and the whole text inside with a single charecter

    Hi All,
    I  have a question.
    I am using Sql Server 2012.
    I have a  situation where i need to replace the entire text and the square bracket with a single charecter.
    Eg:-> 
    I have atext    san[123456dd]text
    i just wanted to replace all teh text inside the sqaure bracket to another charecter say 'X' 
    My end result should be sanXtext.
    Could anyone help me regarding this?
    Samproo

    Prashanth ,
    Thanks 
    It works if i have a single square bracket like 
    'san[123456dd]text'but presently i do have multiple square brackets like'san[123456dd]text[898989dd]note'I wanted to have teh result as 'sanXtextXnote'
    Samproo

  • RH6 crashes with th and conditional build tags

    Hello together,
    The attached code worked fine with RH X5, but leads to a
    crash with X6. To fix, you have to replace the <th> by
    <td>, but it is not too easy to find the topic within a
    project. The fix is quite easy, but it is hard to find in a big
    project.
    This happens, when the conditional build tag is used.
    Thanks and best regards,
    Katrin Lusser

    Hello Peter,
    My wife created the topic with X3 or X5.
    She just tried again with X6 and after several changes (set
    heading, insert, delete, etc.) she had the same constellation.
    Unfortunately, until now, she could not find out the exact way to
    reproduce. But it is definitely possible. We will post here, when
    we find out, how to do it.
    Best regards,
    Michael

  • What usb auto switch is compatible with OSX and Windows for sharing the same printer

    I just bought a new iMac for myself to replace my old Dell PC.  My husband still has his PC with Windows Vista and our work stations are set up to share the same MFC with a Belkin auto switch.   Unfortunately that software is not compatible with my OSX and I am having trouble searching for another auto switch that is compatible with both computer operating systems.  Can anyone recommend one to me?

    Hmmm, we bought a brand new V300 from Epson and hooked it up it didn't work. We went through all the steps, downloaded all the drivers, and after several days of frustration, it still did not work so we returned it.
    Apple hasn't been able to give us technical advice, Epson couldn't help. The only scanners sold locally are the printer/scanner combos.
    I was looking at the Fujitso ScanSnap 1500M earlier tonight... am wondering if I can get by with this scanner since most of my scanning nowadays has to do with business documents. It sure would be nice to organize clutter and the text said something about compatible with the "cloud" as well.
    I use my iPad all the time to show galleries & collectors the quality of my paintings... type up proposals, etc. Thanks for letting me know about it's compatibility with my iPad, iPhone and Mac.
    Thank you for your input, AppleMan1958. you are wonderful.

  • UPDATE to "Premiere Pro's #1 missing feature": Auto-Tagging Bins with Shortcuts

    In a previous thread (http://forums.adobe.com/thread/1179075?start=0&tstart=0) I suggested that Adobe give us FCPX and FCP7-style subclip creation.
    I just got some new ideas that improve this previous FR:
    AUTO-TAGGING BINS with user assignable SHORTCUTS
    1.   Creating an auto-tagging Bin could be as simple as adding a special character such as ‘#’ in front of its title.  So for example, renaming a Bin from ‘Interviews’ to ‘#Interviews’ would automatically add the tag ‘Interviews’ to the metadata of all clips within it.  Users could even add several auto-tags to a single Bin.  For example, by naming a Bin ‘University #Interviews #Staff’, any clips added to that bin would automatically inherit the searchable metadata tags ‘Interview’ and ‘Staff’, but not ‘University’ since it doesn't have the ‘#’ symbol added in front of it.
    2.  Contrary to FCPX’s 'keyword collections' approach, my approach would also allow Bin/Sub Bin tagging hierarchies.  Imagine the following Bin structure: A parent Bin named ‘Interviews’ containing 3 sub-Bins named ‘Staff’, ‘Students’ and ‘Sound bites’.  Adding an auto-tag to the parent Bin, (e.g. changing the name to ‘#Interviews’) would automatically propagate that tag to the contents of all sub-Bins!  The organizational power of this would be amazing!
    3.  At any time, a user could remove metadata tags from clips simply by dragging the clips out of an auto-tagging Bin, or by removing the auto-tag from the Bin itself.
    4.  Any number of Bins, whether enabled for auto-tagging or not, could be given keyboard shortcuts.  Doing so could be as simple as selecting a new ‘Assign shortcut’ option from the Bin’s context menu, which would automatically bring up the ‘Keyboard Shortcuts’ window, with a new ‘Bins’ root folder twirled open and ready for use (in addition to the current root folders: ‘Application’, ‘Panels’ and ‘Tools’).  For easy visual reference, this ‘Bins’ root folder would automatically be populated with the names of every Project Window Bin, in their current hierarchy.  So, using the previous example, the Bin ‘Interviews’ would have a twirly arrow to twirl down/up its sub-Bins ‘Staff’, ‘Students’ and ‘Sound bites’.
    5. Any time a user adds a shortcut to a bin, that shortcut would appear at the end of the Bin’s name (e.g. adding the shortcut ’2′ to the Bin ‘Interviews’ would result in the Bin’s name appearing like this: ‘Interviews {2}’).  Thus users would always have a quick visual reference for remembering shortcuts.
    6. These options would give users 4 great ways to add clips/sub-clips to Bins for sorting and/or auto-tagging:
    Use a Bin’s shortcut to send a clip’s in/out range from the Source Monitor to the Bin.
    Use a Bin’s shortcut to create sub-clips of 1 or more selected clips in the Timeline (something you can’t do in FCPX!)
    Drag&drop a clip’s in/out range from the Source Monitor to a Bin.
    Drag&drop 1 or more clips from the Timeline to automatically create subclips that inherit any present auto-tags.
    IMHO, FCPX still has superior organizational tools vs PP, at the moment, but with the suggested features above, PP would truly one-up FCPX in this regard!
    Hopefully all of this is clear.  Thoughts?  Comments?

    In a previous thread (http://forums.adobe.com/thread/1179075?start=0&tstart=0) I suggested that Adobe give us FCPX and FCP7-style subclip creation.
    I just got some new ideas that improve this previous FR:
    AUTO-TAGGING BINS with user assignable SHORTCUTS
    1.   Creating an auto-tagging Bin could be as simple as adding a special character such as ‘#’ in front of its title.  So for example, renaming a Bin from ‘Interviews’ to ‘#Interviews’ would automatically add the tag ‘Interviews’ to the metadata of all clips within it.  Users could even add several auto-tags to a single Bin.  For example, by naming a Bin ‘University #Interviews #Staff’, any clips added to that bin would automatically inherit the searchable metadata tags ‘Interview’ and ‘Staff’, but not ‘University’ since it doesn't have the ‘#’ symbol added in front of it.
    2.  Contrary to FCPX’s 'keyword collections' approach, my approach would also allow Bin/Sub Bin tagging hierarchies.  Imagine the following Bin structure: A parent Bin named ‘Interviews’ containing 3 sub-Bins named ‘Staff’, ‘Students’ and ‘Sound bites’.  Adding an auto-tag to the parent Bin, (e.g. changing the name to ‘#Interviews’) would automatically propagate that tag to the contents of all sub-Bins!  The organizational power of this would be amazing!
    3.  At any time, a user could remove metadata tags from clips simply by dragging the clips out of an auto-tagging Bin, or by removing the auto-tag from the Bin itself.
    4.  Any number of Bins, whether enabled for auto-tagging or not, could be given keyboard shortcuts.  Doing so could be as simple as selecting a new ‘Assign shortcut’ option from the Bin’s context menu, which would automatically bring up the ‘Keyboard Shortcuts’ window, with a new ‘Bins’ root folder twirled open and ready for use (in addition to the current root folders: ‘Application’, ‘Panels’ and ‘Tools’).  For easy visual reference, this ‘Bins’ root folder would automatically be populated with the names of every Project Window Bin, in their current hierarchy.  So, using the previous example, the Bin ‘Interviews’ would have a twirly arrow to twirl down/up its sub-Bins ‘Staff’, ‘Students’ and ‘Sound bites’.
    5. Any time a user adds a shortcut to a bin, that shortcut would appear at the end of the Bin’s name (e.g. adding the shortcut ’2′ to the Bin ‘Interviews’ would result in the Bin’s name appearing like this: ‘Interviews {2}’).  Thus users would always have a quick visual reference for remembering shortcuts.
    6. These options would give users 4 great ways to add clips/sub-clips to Bins for sorting and/or auto-tagging:
    Use a Bin’s shortcut to send a clip’s in/out range from the Source Monitor to the Bin.
    Use a Bin’s shortcut to create sub-clips of 1 or more selected clips in the Timeline (something you can’t do in FCPX!)
    Drag&drop a clip’s in/out range from the Source Monitor to a Bin.
    Drag&drop 1 or more clips from the Timeline to automatically create subclips that inherit any present auto-tags.
    IMHO, FCPX still has superior organizational tools vs PP, at the moment, but with the suggested features above, PP would truly one-up FCPX in this regard!
    Hopefully all of this is clear.  Thoughts?  Comments?

  • Replacing optical drive with SSD and HD with new HD

    Hi folks, recently my macbook pro unibody's  (2011) hard drive started encountering some fatal errors.  I've gone through all possible fixes, and it looks like the only option left is to replace the HDD.  As much as this initially bummed me out, I'm a little excited about the prospect now.  I think I would like to go ahead and replace the optical drive with a SSD while I have the computer open to replace the HDD.  This will breathe some serious new life into my macbook pro. 
    My question is, which SSD's and HDD's are compatible with the macbook and which brands do you guys (the community) recommend?  Should I upgrade my ram while I'm in there? How difficult of a job is this?  I am mechanically inclined but I have much more experience working on tractors than electronics.  Thanks for any advice or input you can offer!

    Go to OWC to get the Data Doubler bracket for your model. You can also find HDDs and SSDs there. Be sure to put the SSD where the HDD is located and put the HDD in the optical drive bay. Upgrading RAM is always a good idea. I've done all these in my 2011 MBP. OWC also provides tools needed and online video tutorials.
    For optimum use of this combo only install OS X on the SSD. Install everything else on the HDD. Then follow these instructions for setting it up to have the computer boot from the SSD but use your Home folder that is on the HDD:
    How to use an SSD with your HDD
    If you are going to use an SSD as a boot drive together with your existing HDD as the "data" drive, here's what you can do.
    After installing the SSD you will need to partition and format the SSD using Disk Utility. Then, install OS X on the SSD. After OS X has been installed boot from the SSD. Use Startup Disk preferences to set the SSD as the startup volume.
    Open Users & Groups preferences. Click on the lock icon and authenticate. CTRL- or RIGHT-click on your user account listing in the sidebar and select Advanced Options from the context menu. You will see a field labeled "Home dir:" At the right end you will see a Change button. Click on it. In the file dialog locate the Home folder now located on the HDD (HDD/Users/account_name/.) Select the folder, click on Open button. Restart the computer as directed.
    When the computer boots up it will now be using the Home folder located on the HDD.
    Another more technical method involving the Terminal and aliases is discussed in depth here: Using OS X with an SSD plus HDD setup - Matt Gemmell. This is my preferred approach because I can select which of the Home's folders I want on the HDD and which I don't want. For example, I like to keep the Documents and Library folders on the SSD because I access their content frequently.
    Be sure you retain the fully bootable system on your HDD in case you ever need it.
    Be sure to use Trim Enabler 3.3 to activate TRIM on the SSD.

  • I synced my sisters phone with my itunes and now all her contacts have disappeared and been replaced with mine and also photos... she has never done a back-up is there any way we can get all her contacts and pictures back?

    I synced my sisters phone with my itunes and now all her contacts have disappeared and been replaced with mine and also photos... she has never done a back-up is there any way we can get all her contacts and pictures back?

    Look under iTunes>Preferences>Devices...is there a backup listed for her phone? First thing done when you sync is an iPhone backup. If you have not synced since screwing her phone up, restoring from that backup(if it exists) should restore her content. Do not sync after you restore her phone, eject it. So, first disable auto-sync on that same device pane in iTunes before you proceed. If this doesn't work, is your sister bigger than you? If so, run 'cause her data is gone .

  • I just replaced my mac pro with an iMac and i can't get it to work with my epson stylus 3800 printer?

    i just replaced my mac pro with an iMac and i can't get it to work with my epson stylus 3800 printer? i have downloaded the 3800 software three times and the imac keeps telling me there is no software to run the printer? Any help here?

    Care to share which OS you are using?

  • We have 2 iphone 4s which have just been updated with IOS5 and whilst setting up icloud the phone contacts were merged and now i have lost my phone contacts on first iphone 4 which have been replaced with phone contacts from my second iphone 4. help?

    We have two Iphone 4 handsets. I updated first handset with IOS5 and activated Icloud with my existing Itunes account details - no problems. I then did the same on the second handset and instead of setting up a different Icloud account for the second hanset I mistakenly used the same details as on the first handset and merged the contacts thinking it would add all contacts to both handsets but it instead replaced contacts from first handset with those from the second handset.
    How do I get back my contacts from the first hanset?
    I read somewhere Icloud saves the last 3 backups which suggests all my contacts that have disappeared are somewhere but how do i find them ???
    Help ???

    Here's how to do it.
    1. App Store, iTunes Store should have the same AppleID on Computer and iPhones. (Free to share apps, music and books... )
    2. Person A uses the same purchasing account for everything (ie. email, contacts and ...).
    3. Person B have the same purchase account see no. 1 (for App Store and iTunes Store) but create a second AppleID for iCal, e-mail, contacts  and etc.

Maybe you are looking for

  • Installation problem on CS4 Master Collection

    WHen I attempt to install CS4 master collection on Vista Ultimate X64 While the installer is "checking system profile" the next window shows "Loading Setup" I then get a System Check error page. The window label is "Adobe Creative Suite 4 Master Coll

  • INSERT & UPDATE changing date format to mm/dd/yyyy!!!

    I have INSERT & UPDATE ASP/VB forms which have a date field which submits to Access....except when the date is entered as dd/mm/yyyy, it decides to convert it to mm/dd/yyyy....absolutely terrific!! :o(( I've added this: <% Session.LCID = 2057 %> I've

  • Role of technical guy in ESA/CAF

    Hi all,   I don’t know if this is a correct forum or not But I wanted to know firsthand from the ESA community.    I worked as a J2EE consultant for 5 years. I moved to SAP integration, NetWeaver and EP about year and half back. I have had roles vary

  • I have deleted email on my Mac and synced my phone but those deleted emails are still in my phone inbox.

    How can I deleted these emails without having to go back more than a year and delete manually?

  • Ipod Completely

    Ipod touch is completely frozen. The touch screen is not working I cant do anything with it. I tried to reset it but that did not help. Help me somebody.