I just want to send one form from numbers not all forms.

I just want to send one form from numbers not all forms.

I'm sorry, but I don't want to give you bad advice at this point. I don't use Numbers and I would not know how to extract a sheet from the file - which it sounds like you need to do - based on my very, very limited experience with spreadsheet files.
Maybe this would be of some help to you.
http://help.apple.com/numbers/ipad/1.7/
Lets just keep the discussion alive and hopefull someone else will pop in with an idea.
You should probably post your question in here as well. You would probably get more help since this is the iWorks for iOS forum.
https://discussions.apple.com/community/app_store/iwork_for_ios

Similar Messages

  • I just want to save mail that i open, not all junk mail- how do i do this

    I use an AOL account on Mail
    How do i set up a rule:
    where I just want to save mail that i open - not all mail- how do i do this. I cant find a rule that would do this.
    I dont want to have to manually copy each email that i open to my hard drive.
    Any suggestions?
    Thanks

    Hi Ross!
    Try this:
    Open Mail preferences > Accounts > Advanced.
    Below "Keep copies of messages for offline viewing:" select Only messages I've read.
    ali b

  • I want to send my mails from Gmail to all of my groups but no one of them can see the others and secondly I like to send them in groups. If this app is free is better if not its ok

    1.- send my emails from gmail to groups
    2.- no one from the group be able to see the others that I send the mail. Is there any app...just name it

    1.- send my emails from gmail to groups
    2.- no one from the group be able to see the others that I send the mail. Is there any app...just name it

  • I want to send a response from the servlet and then call another servlet.

    Hi,
    I want to send a response from the servlet and then call another servlet. can this happen. Here is my scenario.
    1. Capture all the information from a form including an Email address and submit it to a servlet.
    2. Now send a message to the browser that the request will be processed and mailed.
    3. Now execute the request and give a mail to the mentioned Email.
    Can this be done in any way even by calling another servlet from within a servlet or any other way.
    Can any one Please help me out.
    Thanks,
    Ramesh

    Maybe that will help you (This is registration sample):
    1.You have Registration.html;
    2.You have Registration servlet;
    3.You have CheckUser servlet;
    4.And last you have Dispatcher between all.
    See the code:
    Registration.html
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <HTML>
      <HEAD>
        <TITLE>Hello registration</TITLE>
      </HEAD>
      <BODY>
      <H1>Entry</H1>
    <FORM ACTION="helloservlet" METHOD="POST">
    <LEFT>
    User: <INPUT TYPE="TEXT" NAME="login" SIZE=10><BR>
    Password: <INPUT TYPE="PASSWORD" NAME="password" SIZE=10><BR>
    <P>
    <TABLE CELLSPACING=1>
    <TR>
    <TH><SMALL>
    <INPUT TYPE="SUBMIT" NAME="logon" VALUE="Entry">
    </SMALL>
    <TH><SMALL>
    <INPUT TYPE="SUBMIT" NAME="registration" VALUE="Registration">
    </SMALL>
    </TABLE>
    </LEFT>
    </FORM>
    <BR>
      </BODY>
    </HTML>
    Dispatcher.java
    package mybeans;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.ServletException;
    import java.io.IOException;
    import javax.servlet.RequestDispatcher;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Dispatcher extends HttpServlet {
        protected void forward(String address, HttpServletRequest request,
                               HttpServletResponse response)
                               throws ServletException, IOException {
                                   RequestDispatcher dispatcher = getServletContext().
                                   getRequestDispatcher(address);
                                   dispatcher.forward(request, response);
    Registration.java
    package mybeans;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Registration extends Dispatcher {
        public String getServletInfo() {
            return "Registration servlet";
        public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            ServletContext ctx = getServletContext();
            if(request.getParameter("logon") != null) {          
                this.forward("/CheckUser", request, response);
            else if (request.getParameter("registration") != null)  {         
                this.forward("/registration.html", request, response);
    CheckUser.java
    package mybeans;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    public class CheckUser extends Dispatcher {
        Connection conn;
        Statement stat;
        ResultSet rs;
          String cur_UserName;
        public static String cur_UserSurname;;
        String cur_UserOtchestvo;
        public String getServletInfo() {
            return "Registration servlet";
        public void service(HttpServletRequest request, HttpServletResponse response)
        throws ServletException, IOException {
            try{
                ServletContext ctx = getServletContext();
                Class.forName("oracle.jdbc.driver.OracleDriver");
                conn = DriverManager.getConnection("jdbc:oracle:oci:@eugenz","SYSTEM", "manager");
                stat = conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
               String queryDB = "SELECT ID, Login, Password FROM TLogon WHERE Login = ? AND Password = ?";
                PreparedStatement ps = conn.prepareStatement(queryDB); 
               User user = new User();
            user.setLogin(request.getParameter("login"));
            String cur_Login = user.getLogin();
            ps.setString(1, cur_Login);
            user.setPassword(request.getParameter("password"));
            String cur_Password = user.getPassword();
            ps.setString(2, cur_Password);
         Password = admin");
            rs = ps.executeQuery();
                 String sn = "Zatoka";
            String n = "Eugen";
            String queryPeople = "SELECT ID, Surname FROM People WHERE ID = ?";
           PreparedStatement psPeople = conn.prepareStatement(queryPeople);
                      if(rs.next()) {
                int logonID = rs.getInt("ID");
                psPeople.setInt(1, logonID);
                rs = psPeople.executeQuery();
                rs.next();
                       user.setSurname(rs.getString("Surname"));
              FROM TLogon, People WHERE TLogon.ID = People.ID";
                       ctx.setAttribute("user", user);
                this.forward("/successLogin.jsp", request, response);
            this.forward("/registration.html", request, response);
            catch(Exception exception) {
    }CheckUser.java maybe incorrect, but it's not serious, because see the principe (conception).
    Main is Dispatcher.java. This class is dispatcher between all servlets.

  • I want to send a value from JSP file to another JSP file without..

    I want to send a value from one.JSP file to another two.JSP file without to show the content HTML of the one.JSP in two.JSP (with include), only take the values processed in a Bean :
    ===================
    Bean
    package pck;
    import java.io.*;
    public class yyyy {
         public String getXxx() {    
              return cccc;
    ========================
    one.JSP
    <jsp:useBean id="idBean" class="pck.yyyy" scope="??"/>
    <%idBean.setXxx(ccc);%>
    ========================
    two.JSP
    <%@ include file="one.jsp"%>
    <%=idBean.getXxx()%>
    but without to show the content HTML of one.JSP in two.JSP.
    Can someone help me?, please.

    Why don't just put the common code in a separate file and include it in both. i.e. the code that is in one.jsp that is needed by two.jsp could be put in a common file and included in both pages, thus the HTML is separated off. If this will not work, set a boolean value in two.jsp that can be used by one.jsp to decide if the HTML should be displayed or not.
    Steve

  • My computer was stolen, I just purchased a new one and I want to redownload my old purchases. Not all of my purchases are on my itouch. How do I get the other purchases back?

    My computer was stolen, I just purchased a new one and I want to redownload my old purchases. Not all of my purchases are on my itouch. How do I get the other purchases back?

    You can recover any purchased songs that are on iPods using the procedure here.
    If this is not available, you can ask Apple to allow you to download your music again. Note that, first, they DO NOT HAVE TO DO THIS. Purchase of music from the iTunes store entitles you to one download of that item. Second, note that if Apple does allow you to download a second time, they have to pay royalties on each download, whether you pay for it or not. Last, if they allow it, please back up your purchases.
    To request a redownload, contact iTunes support from the menus in iTunes or use this page.
    Best of luck.

  • GRRRRRR I dont want a discussion I JUST WANT TECH SUPPORT - WILL SOMEBODY FROM ADOBE SORT THIS!!!

    GRRRRRR I dont want a discussion I JUST WANT TECH SUPPORT - WILL SOMEBODY FROM ADOBE SORT THIS!!!

    Just what I say Jeri.  I was persuaded to take up a montly sub for CS a year ago.  I pay every month but have never used any upgrade even once. We couldnt install it and despite spending hours trying to get support u just cant get anything - We are totally fed up with the whole time wasting excercise.
    Cant we simply get a set of discs for the current upgrade and go back to working sensibly.
    We could go bust here just mucking about with this stupid cloud thing - It could become a lifes work just trying to sort the ****** thing out. 
    To add insult to injury I now see that the D Debit is GBP46.88 /mnth for absolutely NOTHING.  Its a joke in bad taste.
    At one time it was Adobe that had the best cus service around and Quark that were the crooks.  Amazing how things turn around dont u think!!!

  • HT4759 I just want to send my photo to my new I phone

    I just want to send my photo to my new I phone

    Your photo from where? What is preventing you from sending it to your new iPhone? We would really need a little more information in order to help you here.
    GB

  • HT4928 what if i wanted to delete one of my purchases not just hide it?

    what if i wanted to delete one of my purchases not just hide it can i do that?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    No, Apple will always maintain the fact that you bought the app in your purchase history. You can't not have bought it.

  • HT1725 I have tried to download the podcast "Ab Trimmer" from Exercise Tv and it does not allow the download to be completed. Comes up with Unable to Download podcast prompt. I now just want this to be moved from my download list, how do I do this?

    I have tried to download the podcast "Ab Trimmer" from Exercise Tv and it does not allow the download to be completed. Comes up with Unable to Download podcast prompt. I now just want this to be removed from my download list, how do I do this?

    The fix was to completely remove all Apple Software following guides in previous posts.
    Then download and re-install latest iTunes 64-bit, making sure to Run As Administrator.
    This fixed it. Now the next thing seems to be that as I move from one device to another to close and restart iTunes between each one. Treat it gently. It seems to break easily and a lot.

  • I just installed LV2011 and one dll from my vi won't load with the error "application configuration is incorrect"

    I just installed LV2011 and one dll from my vi won't load with the error "application configuration is incorrect", which is Windows lingo for "missing package dependencies".  All the computers at my company with 2010 loaded seem to do OK.  When I do a Dependencies Walk I get missing Visual C debug dll's missing plus IEshims and wer which both have a whole tree of dependencies missing on my machine.  The Windows install is the same "Windows XP version 2002 Service Pack 3" on my PC and the working PC's. So I'm thinking I have to uninstall 2011 and go back to 2010.  Is this correct?  Those VC debug dll's were installed on the machines with 2010 in them but were not installed in mine.
    I've heard the advice to recompile the dll with debug turned off but I don't have access to the source code.
    Thanks in advance.

    u87 wrote:
    Thanks for the reply.  This at least tells me that going back to LV2010 is not likely to solve the problem.  The missing dll's are:
    MFC90D.dll
    MSVCR90D.dll
    IESHMS.dll
    WER.dll
    And, once again, IESHMS and WER have other dependencies.  So perhaps i need to install the Visual C++ development environment.
    IESHIMS.dll is an Internet Explorer DLL that gets usually delay loaded by shdocvw.dll. As delay load it can not cause DLL load errors but only runtime errors. Maybe your DLL has it as direct dependency but that is unlikely since it does not have a documented interface.
    WER.dll is Windows error reporting for Vista/Win7.
    MFC90D.dll is the Microsoft Foundation classes and MSVCR90D.dll is the MS C runtime library, both as debug variant.
    So all the DLLs you mention are actually MS DLLs! You haven't identified the DLL that you try to access in LabVIEW that causes these error messages. IESHIMS and WER are usually delay loaded by any component that needs it and should not likely be used by non MS code.
    What is the DLL you try to load into LabVIEW and by whom? Get the provider of that DLL to provide you a non Debug build of the DLL. Installing Visual C on all the machines just to make the DLL load is not a solution, besides that it is likely not legal since I doubt you have that many licenses.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • I want to take remote access from an iTunes library off of my iPad ...when I hit edit from the remote app it pulls that library up ..if I delete it I just want to make sure that I'm not remotely wiping out the library, just access to it from my iPad ?

    I want to take remote access from an iTunes library off of my iPad ...when I hit edit from the remote app it pulls that library up ..if I delete it I just want to make sure that I'm not remotely wiping out the library, just access to it from my iPad ?

    Call the apple store you got it from and ask them. Sometimes in the past they've extended the 'no questions asked return' but only Apple can tell you for sure.

  • I have multiple email accounts in my iPhone. Before the 6.0 update... I could select what account to send from. Now it's a default. Do I have to go change the email default everytime I want to send an email from a different account?

    I have multiple email accounts in my iPhone 4. Before the 6.0 update... I could select what account to send from each time. Now it's a default. Do I have to go change the email default setting everytime I want to send an email from a different account?

    In Mail Preferences/Accounts/each GMail account, set up the SMTP Outgoing Server for each account separately, going into SMTP name/edit/Advanced and specify the Username of each account.  The Outgoing servers must be two different servers, authenticated by the Username and Password of each.
    Otherwise, the GMail SMTP server will change the from address to that of the account where the SMTP server was setup.
    Ernie

  • I want to send an email  from my java application

    i want to send an email from my java application

    Then do so...
    You'll probably want to use the JavaMail API (http://java.sun.com/products/javamail) to do that.

  • Whenever I open a new Firefox Browser, the other Firefox Browsers that I have minimized to the bottom of the screen all restore, (reopen up) onto the screen with the new opened Firefox Browser, how do I stop this? Just want the new one to open on screen

    Whenever I open a new Firefox Browser, the other Firefox Browsers that I have minimized to the bottom of the screen all restore, (reopen up) onto the screen with the new opened Firefox Browser, how do I stop this? Just want the new one to open on screen and the existing stay minimized.
    == This happened ==
    Every time Firefox opened
    == I think when a I updated or downloaded a newer version of FireFox at Firefox's suggestion.

    Hmm that does sound a bit strange - I use a system quite similar to yours (XP, FF 3.6.3), and don't see this behaviour.
    I would recommend trying to start Firefox in Firefox [[Safe Mode]] (make sure you close '''all''' running Firefox instances first), and see if this problem persists.
    If not, it could be some add-on causing this behaviour - restart Firefox in Safe Mode, disable all add-ons, and enable them one by one to find the guilty one.
    If it still happens in Firefox Safe Mode, some other program (or something in Windows itself) most likely is the cause. We may be able to help with this too, so let us know what works and provide as much additional information as possible to let us help you solve this.
    Please let us know how above works out, and if we can be of further assistance. Detailed feedback is appreciated and helps us to help you better, plus enables us to better help other users with similar issues.

Maybe you are looking for

  • Chkconfig does not create right symbolic links

    Hello all, I am just adding a script to automate start / stop during Oracle Linux reboot. I figured out that the symbolic links are not created in the right order. To prove that, I create a small script for test purposes. ============================

  • XML validation with StAX

    Hi, I have a requirement to validate XMLs during JAXB unmarshalling and during StAX parsing. The schema is packaged in a jar. I am able to successfully read the schema, and validate the XML during unmarshalling by setting the schema in the unmarshall

  • Excel Charts import into iweb

    Can you import charts created in excel or charts from financial websites (i.e. daily stock market charts) into iweb? If yes, can you please explain? Thanks

  • Xfa.event.cancelAction cancels all subsequent actions

    I have created an expenses form which has a number of mandatory and optional fields.   To ensure no expenses are submitted with a value of 0, I have added a check which sets xfa.event.cancelAction = 1 on the presubmit event of my email submit button.

  • Somehow the text in my FireFox has changed to Italic making it hard to read.

    The text in FireFox has changed to Italics & the print is small. How to I revert it back to original text?