Email / Print Option in E-Recruiting (Urgent -- Plz reply Immediately)

Dear SDN Members..
With the support of sdn team members.. we are able to finish 80%of e-rec job...
Now the only problem we are facing, is with email / Print option...which  we are unable to see in the recruiter page...
In the Corresponce Page we are able to see all the Planned activities..... but we are unable to send those documents.. as a result we are unable to complete those  activies...
Kindly let meknow if we are missing any settings...
Thanks & Regards
Raghav

Hi Raghu,
could you please check the table entries in T77RCF_CS_CHAN and its text table T77RCF_CS_CHAN_T? It seems, that the table entries are missing there. You should have the table entries for the channels 'E_MAIL' and 'PRINTER' in T77RCF_CS_CHAN. In table T77RCF_CS_CHAN_T you should have the descriptions for both channels in your logon language.
In addition you could check with transaction slg1, if there is any entry in application log. Error messages can be found in application log. The protocol ofthen helps resolving problems.
Best Regards, Michael

Similar Messages

  • Urgent Plz reply: java.lang.Class not found exception

    Hi All,
    I am novice to j2me, I am tryiing communicate data between client and Java server. I have given project name client and midlet class name FileViewer.java.
    It is compiling succesfully
    but when I run it , it is giving error
    Unable to create Midlet FileViewer.java
    java.lang.classnot found excetption: FileViewer.java
    at com.sun.midp.midlet.selector.commandaction(+47)
    at javax.microedition.lcdui.Display$displayaccessor.commandaction.(+152)
    at com.sun.kvem.midp.lcdui.EmulEventHandler$eventloop.run(+459)
    Here is the code
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.io.*;
    import java.io.*;
    public class FileViewer extends MIDlet implements CommandListener
    private Display display; // Reference to Display object
    private TextBox tbViewer; // View file contents in a textbox
    private Command cmView; // Command to view file
    private Command cmExit; // Command to exit
    private String url = "http://www.corej2me.com/midpbook_v1e1/scratch/fileViewer.hlp";
    public FileViewer()
    display = Display.getDisplay(this);
    // Define commands
    cmView = new Command("View", Command.SCREEN, 2);
    cmExit = new Command("Exit", Command.EXIT, 1);
    tbViewer = new TextBox("Viewer", "", 250, TextField.ANY);
    tbViewer.addCommand(cmView);
    tbViewer.addCommand(cmExit);
    tbViewer.setCommandListener(this);
    public void startApp()
    display.setCurrent(tbViewer);
    private void viewFile() throws IOException
    HttpConnection http = null;
    InputStream iStrm = null;
    try
    // Create the connection
    http = (HttpConnection) Connector.open(url);
    // Client Request
    // 1) Send request method
    http.setRequestMethod(HttpConnection.GET);
    // 2) Send header information (this header is optional)
    http.setRequestProperty("User-Agent", "Profile/MIDP-1.0 Configuration/CLDC-1.0");
    // 3) Send body/data - No data for this request
    // Server Response
    // 1) Get status Line
    System.out.println("Msg: " + http.getResponseMessage());
    System.out.println("Code: " + http.getResponseCode());
    // 2) Get header information
    if (http.getResponseCode() == HttpConnection.HTTP_OK)
    // 3) Get data (show the file contents)
    iStrm = http.openInputStream();
    int length = (int) http.getLength();
    if (length > 0)
    byte serverData[] = new byte[length];
    iStrm.read(serverData);
    tbViewer.setString(new String(serverData));
    Alert alTest = new Alert("Alert Test", new String(serverData), null, null);
    display.setCurrent(alTest);
    finally
    // Clean up
    if (iStrm != null)
    iStrm.close();
    if (http != null)
    http.close();
    public void pauseApp()
    public void destroyApp(boolean unconditional)
    public void commandAction(Command c, Displayable s)
    if (c == cmView)
    try
    viewFile();
    catch (Exception e)
    System.out.println(e.toString());
    else if (c == cmExit)
    destroyApp(false);
    notifyDestroyed();
    If some body has knowledge why this error is coming plz share wiht me Its urgent .
    Thanks in advance.
    Thanx

    No, the "-g" version just means it has the debug flag turned on when they compile it.
    Your problem is CLASSPATH and how to set it properly.
    Use the -classpath option on java.exe when you run. Read the javadocs on the tools to find out how.
    %

  • "URGENT PLZ REPLY ASAP"

    I am 2 days old in the industry.
    i want code for MS Sql connection and to insert current date into Log_book table data through form submition.

    HELLO
    I hrushi, New into the industry, I just got through ur example it very explanatory,
    PLZ help me with the errors there in "problem is code is not running"
    my architecture is
    IDE : myeclipse
    DATA BASE : MS SQL
    J2EE
    SERVER : TOMCAT 5.0
    OS : WINDOWS XP
    Iam now handling my first task, for "Work Flow Mgmt".
    in which i need the userid n staff no n dept should be taken directly on to the form through session.
    which i was able to do through mapping in Struts and database connection through hibernate
    I am posting my code here for buggs plz can u debug the errors leaving the developed classes
    JSP:
    <%@page contentType="text/html" import="java.io.*,java.sql.*,javax.sql.*,java.util.*"%>
    <%@ page import="java.util.*"%>
    <%@ page import=" java.math.*"%>
    <%@ page import="com.mymcsb.ewms.api.*"%>
    <%@ page import="com.mymcsb.wf.web.*"%>
    <%@ page import="org.apache.commons.lang.*"%>
    < %@page pageEncoding="UTF-8"%>
    <%
    String formType = "BOOK_BORROWER";
    String viewType = (String) session.getAttribute(WfKeys.VIEW_TYPE);
    System.out.println("viewType: " + viewType);
    String categoryId = (String) session
    .getAttribute(WfKeys.WORKITEM_CATEGORY_ID);
    RoutedData formData = (RoutedData) session
    .getAttribute(WfKeys.FORM_DATA);
    ApplicationContext applicationContext = (ApplicationContext) session
    .getAttribute(Keys.APPLICATION_CONTEXT);
    boolean isOriginator = true;
    if (viewType.equals(ViewTypes.REFERENCE_VIEW)
    || viewType.equals(ViewTypes.PROCESS_VIEW)) {
    isOriginator = false;
    System.out.println("documentTitle: "
    + formData.get("documentTitle"));
    %>
    <%
    String lStrBookTitle = request.getParameter("booktitle");
    System.out.println("BT "+lStrBookTitle);
    String available = "N";
    String bookavailable="N";
    if(lStrBookTitle != null && !lStrBookTitle.trim().equals(""))
    try
    Class.forName(" sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con = DriverManager.getConnection("jdbc:odbc:book","scott","tiger");
    PreparedStatement pst = con.prepareStatement("select available from book_details where upper(document_title) like '%"+lStrBookTitle.toUpperCase()+"%'");
    ResultSet rs = pst.executeQuery();
    if(rs.next())
    available = rs.getString("AVAILABLE");
    bookavailable="Y";
    catch(Exception e)
    System.out.println("Error "+e);
    else
    lStrBookTitle="";
    %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Book Borrower</title>
    <script>
    function fnSearch()
    if(document.ChkAvailabilty.booktitle.value=="")
    alert("Enter book title...");
    return false;
    else
    document.ChkAvailabilty.action="index.jsp";
    document.ChkAvailabilty.method="post";
    document.ChkAvailabilty.submit();
    </script>
    <script>
    function ewms_action_validate(){
    return ewms_validate();
    function ewms_validate() {
    return true;
    function fnSearch(documentNo) {
    document.frmReturn.action =
    "/wms/retrieve_lib_log?documentNo=" + documentNo;
    document.frmReturn.target = "_top";
    document.frmReturn.submit();
    </script>
    </head>
    <body bgcolor=#ffffcc text=green>
    <h1><center> Library pages..</h1></center><hr>
    <form align="center" name="frmReturn"><input type="hidden"
    name="FormType" id="FormType" value="<%=formType%>" />
    <table width="400" border="1" height="82" align="center">
    <tbody>
    <tr>
    <td width="150"> DOCUMENT NO</td>
    <td> <input type="text" name="DocumentNo"
    onchange="fnSearch( this.value)"
    value="<%=formData.get("DocumentNo")%>"></td>
    </tr>
    <tr>
    <td>  DOCUMENT TITLE</td>
    <td>  <%= formData.get("documentTitle")%></td>
    </tr>
    <tr>
    <td>  NAME</td>
    <td>  <%=formData.get("name")%></td>
    </tr>
    <tr>
    <td>  STAFF NO</td>
    <td>  <%=formData.get("staffNo")%></td>
    </tr>
    <tr>
    <td>  SECTION</td>
    <td>  <%=formData.get("staffSection")%></td>
    </tr>
    <tr>
    <td>  BOOK BORROW DATE</td>
    <td>  <%=formData.get ("dateTaken")%></td>
    </tr>
    <tr>
    <td>  DUE RETURN DATE</td>
    <td>  <%=formData.get("dateTaken")%></td>
    </tr>
    <tr>
    <td>  BOOK RETURN DATE</td>
    <td> <%=formData.get("dateReturn")%></td>
    </tr>
    <tr>
    <td width="1000">  REMARK</td>
    <td> <TEXTAREA wrap="virtual" name="Comments" rows=3
    cols=20 MAXLENGTH=100></TEXTAREA><BR>
    </tr>
    </table>
    </form>
    <form align="center" name="ChkAvailabilty">
    <table width="350" border="0" height="82">
    <tbody>
    <tr>
    <td><input type="text" name="booktitle" value="<%=lStrBookTitle%>">
    <input type="button" name="booksearch" value="Search" onclick="fnSearch()">
    </td>
    </tr>
    <%
    if(!lStrBookTitle.trim().equals(""))
    if( bookavailable.trim().equalsIgnoreCase("Y"))
    {%>
    <tr>
    <td>
    Available = <%=available%>
    </td>
    </tr>
    <%}else{
    %>
    <tr>
    <td>
    Title not in library
    </td>
    </tr>
    <%}
    %>
    </tbody>
    </table>
    </form>
    </body>
    </html>
    librarylog is my classfile name it hibernate file
    CLASSFILE :-
    package com.mymcsb.tnb.logic;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.action.ActionRedirect;
    import org.apache.struts.actions.MappingDispatchAction ;
    import org.hibernate.Criteria;
    import org.hibernate.Session;
    import org.hibernate.criterion.Restrictions;
    import com.mymcsb.ewms.RoutedDataImpl;
    import com.mymcsb.tnb.entity.LibraryLog;
    import com.mymcsb.util.HibernateUtil;
    import com.mymcsb.wf.web.WfKeys;
    public class BookBorrower extends MappingDispatchAction {
    public ActionForward search(ActionMapping mapping, ActionForm form,
    HttpServletRequest req, HttpServletResponse res) {
    HttpSession session = req.getSession(false);
    RoutedDataImpl rd = null;
    String documentNo = req.getParameter("DocumentNo");
    rd = doCreateRoutedData(documentNo, rd);
    session.setAttribute(WfKeys.FORM_DATA , rd);
    ActionForward af = mapping.findForward("success");
    ActionRedirect ar = new ActionRedirect(af);
    ar.addParameter("view", "create");
    ar.addParameter("catid", ((String)session.getAttribute( WfKeys.WORKITEM_CATEGORY_ID)));
    return ar;
    private static RoutedDataImpl doCreateRoutedData(String documentNo, RoutedDataImpl rd) {
    Map<String, String> data = new HashMap<String, String>();
    //search for documentNo
    List result = doGetLibraryLogByDocNo(documentNo);
    System.out.println("result size: " + result.size());
    if(result.size() > 0) {
    LibraryLog lg = (LibraryLog)result.get(0);
    data.put("documentTitle", lg.getDocumentTitle());
    data.put("name", lg.getName());
    data.put("staffNo", lg.getStaffNo());
    data.put("staffSection", lg.getStaffSection ());
    if(rd == null) {
    rd = new RoutedDataImpl(data);
    } else {
    for(Iterator iter = data.keySet().iterator(); iter.hasNext();) {
    String key = (String)iter.next();
    rd.set(key, data.get(key));
    return rd;
    public static List<LibraryLog> doGetLibraryLogByDocNo(String documentNo) {
    Session session = HibernateUtil.currentSession ();
    Criteria cri = session.createCriteria(LibraryLog.class);
    cri.add(Restrictions.eq("documentNo", documentNo));
    List<LibraryLog> result = cri.list();
    return result;
    EJB/LOGIC
    package com.mymcsb.tnb.entity;
    import java.io.Serializable;
    import java.util.*;
    public class LibraryLog implements Serializable {
    private Integer docId;
    private String documentNo;
    private String documentTitle;
    private String name;
    private String staffNo;
    private String staffSection;
    private Date dateTaken;
    private Date dateReturn;
    private String remark;
    public Date getDateReturn() {
    return dateReturn;
    public void setDateReturn(Date dateReturn) {
    this.dateReturn = dateReturn;
    public Date getDateTaken() {
    return dateTaken;
    public void setDateTaken(Date dateTaken) {
    this.dateTaken = dateTaken;
    public Integer getDocId() {
    return docId;
    public void setDocId(Integer docId) {
    this.docId = docId;
    public String getDocumentNo() {
    return documentNo;
    public void setDocumentNo(String documentNo) {
    this.documentNo = documentNo;
    public String getDocumentTitle() {
    return documentTitle;
    public void setDocumentTitle(String documentTitle) {
    this.documentTitle = documentTitle;
    public String getName() {
    return name;
    public void setName(String name) {
    this.name = name;
    public String getRemark() {
    return remark;
    public void setRemark(String remark) {
    this.remark = remark;
    public String getStaffNo() {
    return staffNo;
    public void setStaffNo(String staffNo) {
    this.staffNo = staffNo;
    public String getStaffSection() {
    return staffSection;
    public void setStaffSection(String staffSection) {
    this.staffSection = staffSection;
    }

  • I am using Numbers app for the ipad and it has been working absolutely fine but now, when I want to email a spreadsheet as a PDF via the 'share and print' option, the file now doesn't appear as an attachment to the recipient. Any ideas please?

    I am using Numbers app for the ipad and it has been working absolutely fine but now, when I want to email a spreadsheet as a PDF via the 'share and print' option, the file now doesn't appear as an attachment to the recipient. Any ideas please?

    Hi mafiose15,
    Thanks for visiting Apple Support Communities.
    Restoring your iPod to factory settings is the best way to try and get it back to working order. You can use the instructions below to restore it:
    How to restore iPod
    Verify that you have an active Internet connection, because you may need to download new versions of the iTunes and iPod Software.
    Download and install the latest version of iTunes if necessary.
    Open iTunes. Connect your iPod to your computer using the USB or FireWire cable that came with your iPod.
    After a few moments, your iPod will appear in the Source panel in iTunes.
    Select your iPod in the Source panel. You will see information about your iPod appear in the Summary tab of the main iTunes window.
    Click Restore.
    If you are using a Mac, you will be asked to enter an administrator’s name and password.
    A progress bar will appear on the computer screen, indicating that stage one of the restore process has begun. When this stage is done, iTunes will present one of two messages with instructions specific to the iPod model you are restoring.
    Disconnect iPod and connect it to iPod Power Adapter (typically applies to older iPod models).
    Leave iPod connected to computer to complete restore (typically applies newer iPod models).
    During stage two of the restore process, the iPod displays an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remain connected to the computer or iPod power adapter during this stage.
    Note: The progress bar may be difficult to see, because the backlight on the iPod display may be off.
    After stage two of the restore process is complete, the iTunes Setup Assistant window will appear. It will ask you to name your iPod and choose your syncing preferences, as it did when you connected your iPod for the first time.
    You can find the instructions in this article:
    Restoring iPod to factory settings
    http://support.apple.com/kb/ht1339
    All the best,
    Jeremy

  • I switched to Apple Mail in the last two months.  When I attempt to print an email message, I get a blank piece of paper.  When I attempt to use the print options suggested in "Mail Help", the program crashes and has to be reopened.  Any ideas?

    I switched to Apple Mail in the last two months.  When I attempt to print an email message, I get a blank piece of paper.  When I attempt to use the print options suggested in "Mail Help", the program crashes and has to be reopened.  Any ideas?

    Which version of Mail are you using as well as which Snow Leopard version you are using? 

  • TS2551 forced to upgrade to get on IPhoto & now an ! shows up everytime I try to view/email/print a photo!  How do I fix this?

    I had to upgrade to get on IPhoto and now an ! shows up each time I click on a photo to email/print.  How do I fix this problem?  Thank you

    What do you mean by "get on iPhoto"?  What was the exact message that you got?  It may have been a message to upgrade the library rather than the application.  The only time the app needs to be upgraded is when the library has been opened by a later version of the application.
    As for the ! it shows up when iPhoto has lost/broken the file path to the original files in the library. So apply the two fixes below in order as needed: 
    NOTE: since you gave no indication of the version of iPhoto or system you're using the following is based on iPhoto 9 (11) and Lion or later.
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #3, followed by #4 and then #1 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Very urgent urgent plz somebody help me to this question..

    hai plz somebody reply me?
    I have created materialized view for my report.
    but i cant seem them used in sql inspector tab.its directly querried from tables..
    but i want to use materialized view in my report to enhance theperformance..plz help me..
    i checked my privlleges...but i am struggling for this 1week..i could not find where it goes wrong..
    grant CREATE TABLE to <user>;
    SQL> grant CREATE VIEW to <user>;
    SQL> grant CREATE PROCEDURE to <user>;
    SQL> grant CREATE ANY MATERIALIZED VIEW to <user>;
    SQL> grant DROP ANY MATERIALIZED VIEW to <user>;
    SQL> grant ALTER ANY MATERIALIZED VIEW to <user>;
    SQL> grant GLOBAL QUERY REWRITE to <user> with admin option;
    SQL> grant ANALYZE ANY to <user>;
    SQL> grant SELECT ON V_$PARAMETER to <user>;
    the above privellegs have been given to the owner of the EUL.
    But i cant see the usage of materialized view..i have sent plus option,query governor tab-always when summary table visible option..but still not solved?
    plz reply me urgently its very urgent...
    regard
    luxmi

    If Swahili is not on the list and you would like to recommend it to Apple, please tell them at http://apple.com/feedback
    This is the User support forums operated by users just like yourself.  Apple rarely appears here.

  • Provide print option on module pool screen

    Experts,
    There is a urgent requirement where in I have to provide PRINT option just as in standard SAP screens, on to my module pool screen, ie I need to provide a option in the menu of the module-pool screen,up on selecting it should work as in the standard SAP-screen print option.
    Correct answers will be promptly rewarded.
    Regards,
    Ram.

    Hi,
    Enable the print function from Menu painter and code the printing functionality.
    For coding the print functionality refer to the link :
    http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba5ef35c111d1829f0000e829fbfe/content.htm
    Thanx & Rgds.

  • (( Hello -ENABLE REPORT PRINTING - OPTION NOT SHOWING  ))

    2010-07-28
    Hello,
    I am trying to print a report in APEX 4.0
    using the free account APEX.ORACLE.COM .
    I learning how to do this using the tutorial at:
    http://st-curriculum.oracle.com/obe/db/apex/r40/apexstart/apexstart_b/apexstart_b_ll.htm
    In the tutorial it says:
    (about 40% down the page)
    17 .
    Select Yes in the ****Enable Report Printing**** drop-down menu and select Portrait in the Orientation drop-down menu under Page Attributes. Then click the Page Header tab.
    The screenshot the tutorial shows looks like this:
    HTTP://mankindwins.com/__7700-2900-APEX-GLOBAL-201/850-500-SCREENSHOTS-FOR-EMAILS-203/ENABLE-REPORT-PRINTING--SCREENSHOT-FROM-TUTORIAL.jpg
    However, when I go into the page for my application, the screen looks
    like this:
    HTTP://mankindwins.com/__7700-2900-APEX-GLOBAL-201/850-500-SCREENSHOTS-FOR-EMAILS-203/PRINT-ATTRIBUTES--FROM-INSIDE-APEX-PAGE.jpg
    As you can see, there is no option for:
    ****ENABLE REPORT PRINTING****
    What do I have to do this make this option appear?
    How do I get the
    ****ENABLE REPORT PRINTING****
    option to appear?
    I believe I saw something somewhere that said you had to do
    so-and-so to ****enable report printing****.
    How do you do this?
    Thanks for your help!
    DAVID888
    Edited by: DAVID888 on Jul 28, 2010 11:30 PM

    Hi,
    What model number is listed o the back of the printer?
    The HP Wireless Direct feature is only available for the CE658A model, not for the CE657A model.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Can't get duplex print option for pdf files using  Adobe ReaderXI 11.0.04, Mac 10.8.5 with HP8600

    I get two-sided option for normal printing, but
    I can't get duplex print option for pdf files using  Adobe ReaderXI 11.0.04, Mac 10.8.5 with HP Officejet Pro 8600.  HP says it's an Adobe problem. I'm stuck.
    Thanks in advance.
    VO

    It depends where the pdf is located. If in the Finder or in an attachment to
    an email in Entourage, the message is ³You can¹t open the application
    ³Acrobat Reader 5.0² because PowerPC applications are no longer supported².
    If an attachment in an email that has come via Safari, the message is
    ³Safari can¹t open the file because no available applications can open it².
    In each case the menu bar is Finder or Entourage or Safari as the case may
    be.

  • Photosmart 6510 print option not highlighted

    With windows 7, I can print when using Word but if I want to print emails or from the internet I can only do so on my ophotosmart 6510 by first saving to the desktop. The save option is available but there is no response from the print option which is in light grey. These are the only 2 options on offer
    This question was solved.
    View Solution.

    Hello plg4,
    Welcome to the HP Support Forums!
    I see that when you try to print from the Internet or Email, you are only able to save. I would like you to try running the HP Print and Scan Doctor. This should clear up the issues, let me know the results.
    Regards,
    JERENDS
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • Print options - uncropped

    I've looked around in the community for answers to this and have yet to find a satisfactory answer - something which amazes me!
    The question is - how do I print an image that doesn't have the same aspect ratio as the paper without cropping? i.e. Just size the picture so that it fits within the sheet, leaving white space where necessary (similar to letterbox format on TV).
    Various suggestions involve modifying the image or calculating the size of paper required. But guys, this is not Microsoft - it's Apple, and things like this should "just work" or be easy!

    Hey ElenaDO,
    Unfortunately you cannot do double sided printing. You can however change your draft quality by clicking the ePrint settings below your printer's email in your ePrint Center account. Once you've clicked ePrint settings, click print options. In this section you can change paper size as well as color. I hope this helps you.
    Although I am an HP employee, I am speaking for myself and not for HP.
    If I have resolved your issue, feel free to provide Kudos and make sure you mark this thread as solution provided.

  • I can access a website and select the 'print' option but the print misses out

    I can access a website and select the 'print' option but the print misses out photos that should be included in the print. It happens on more than one website. If I use Explorer it doesn't happen. I guess there must be a setting or something that I have not found? Any help very gratefully received. Than you.

    I don't know if this will help, but I found it by accident. When I send Word projects to recipients, it doesn't always read properly depending on their format. If they have a PC It distortes my  program, or they may have newer versions of Word. If you have your document showing select 'print' and on my print menu at the bottom left corner it has a button that says 'PDF'. Click on that and it gives you several options for a PDF. What I do if I'm emailing to someone is select the email option then you can always print from the email. Hope that helps.
    jr

  • What list do they use to know who to trust? When receiving email prints

    I want to choose the option of only accepting email prints from people I know. What list do they use to know who to trust?

    If this is not a wireless network, this may all be rubbish!
    To which computer is the Linksys ADSL cable attached? If it is the PC, than the"Internet sharing" is done on the PC, so the Apple needs to log on to an existing connection. The Linksys will probably need to be told the Mac address of the Apple so that it gives the Apple permission to log on (Airport address - same thing). The Apple will need to have the Password to log on to the network- you should have set up a WEP password when setting up the router. They also need to be on the same Network i.e. both on WORKGROUP, or whatever. You need to set your FIREWALL to allow Internet, file and printer sharing. (The XP built in firewall doesn't seem have this option).
    You should see your Apple on the network, you log on to it by double clicking the icon, typing your Mac "Short name" into the "User name" slot, and your Apple's password into.... wait for it..... the PASSWORD slot
    On the Apple, from Finder>go>network this should bring up a panel with a folder with your network name on it, clicking on this folder should bring up the name of your computer, clicking on this should then invite you to open folders on your PC (Assuming you've set up a shared folder(s)).
    If your printer is plugged into your PC..... Have fun!
    Hope this helped - I'm sure that this is the sequence I used to, eventually, get mine talking. But different routers (Mine's Netgear) and different Firewalls may have different rules, but the principle will be pretty similar.

  • What is the Print Option on the iPhone do?

    While viewing an email on my iPhone I tapped a button the Print option was there.
    I don't understand how to use this since I do not carry a printer around with me.
    Thanks.

    iPhone User Guide (For iOS 4.2 and 4.3 Software)

Maybe you are looking for

  • Export Report times out - how do I export all my customers?

    We have about 35,000 customers in our BC database. I'm trying to export them for use in a direct mailing campaign (and other reports for other reasons) but the export always times out. The reports are very simple; ie. Custom Report -> Add customer re

  • Windows 8.1 Problems

    Hi Everyone, I recently purchased Windows 8.1 and I've been having so many problems, I'm not sure what to do. I get constant blue screens with various messages. I've reinstalled windows 8.1 about 5 times already trying to fix problems. I've run chkds

  • Placing barcode on report

    Question 1 =========== I have a simple records as follow: Customer Amount Account_no John Walsh 1500 123456 Mary Joe 700 985000 Lisa Black 2510 456000 Kim Blackson 980 254100 I would like in the report to ruen the account no column into barcode numbe

  • EPM 11.1.2 - supported browsers

    Hi, where can i find documentation related to which web browsers are supported (versions)? thnx

  • Implement two way replication on few tables

    Is there a way where I can implement 2 way replication. For instance I've two database A and B In a table in database A get updated or changed ..the effect should be shown on B and vice versa.... Need ideas...