How do I have a text field combined with a date field?

I want to add in a series of blank boxes to fill in - that have a date option next to each box. Does anyone know how to do this?

Currently we only support a table of fields or multiple fields on one line. In late january we will be providing the ability to put multiple fields on one line. I think that might meet your needs.
Randy

Similar Messages

  • How do you have multiple apple id's with one itunes

    how do you have multiple apple id's with one itunes

    I have multiple IDs and use the single computer sharing itunes. By 'sharing' I mean we open the pc, open itunes and log in with our individual ID as required.
    While Im logged in I plug in  my device. I transfer my purchases from my device as per the file menu (not the check for auto downloads). I move them as required to whichever playlist I like.
    Then when my son wants to use itunes or update his device, he logs in, plugs in his device, transfers purchases from his device, puts whatever music he wants into his playlist and/or drags direct to the device regardless of who purchased it and then syncs.
    Im not sure how it works associating the pc with only one ID or all that other business- I know I don't fiddle with any of that.

  • How can I have multiple WINDOWS (NOT tabs) with INDEPENDENT content?

    How can I have multiple '''windows''' (''not ''tabs) with '''independent''' content?
    I used to be able to open separate windows with Firefox, and the content could be completely different in each window. No matter what I did in any window, no OTHER window open at the time, nor any of the content therein, was affected. This is no longer the case and it is extremely frustrating for me.
    I do ''not ''like tabs and do not use them. I prefer multiple windows plus I am so used to using them, for so many years now! But with v9.0.1 I suddenly can no longer do what I've always done with my browser without this aggravating problem constantly reminding me that I can't have what I want in firefox anymore.
    Or can I? Does anyone have a solution I don't realize exists?
    Thanks,
    Sowelu

    AppleScriptObjC can use pretty much everything in the Cocoa API, so yes, it is possible.
    Note that a view is not the same as a window, and a window can have multiple views. There are also many ways to implement "tabs";  take a look at some of Apple's applications - they use various mixtures of toolbars, checkboxes, and radio buttons, for example.  An application such as this will be a lot more involved than what you have done so far though, using custom classes and subclassing existing ones, so be prepared to do a lot of reading and researching.

  • How to add a scrolling text in portrait with iMovie

    how to add a scrolling text in portrait with iMovie

    This is how i was able to do it. Edit html source.
    <div align="center"><marquee id='scroll_news4' bgcolor=#ff9966 "><font color="#000000" size="+1" ><strong>Outlook is down! IT is working on it! </strong></font></marquee></div>
    <input type='Button' value='Stop' id ='b1' onClick='button_click()';>
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    function button_click()
    if(document.getElementById('b1').value=="Start"){
    document.getElementById('b1').value="Stop";
    document.getElementById('scroll_news4').start();
    }else{
    document.getElementById('b1').value="Start";
    document.getElementById('scroll_news4').stop();
    // End -->
    </script>

  • Hi i have a learning HTML file with a data file include a swf files how can i open it in my ipad?

    hi i have a learning HTML file with a data file include a swf files how can i open it in my ipad?

    iPad do not support flash natively.
    Look in the app store, some browsers do support flash with limited functionality.

  • Workingdays with one date field

    Morning all,
    I have a report which uses only one date field. This report takes averages of lenses and jobs per day.
    The report works fine when it is running on daily basis however when it runs on monthly basis it messes up the averages.
    For example:
    Daily report:
    Job -1
    Lens - 1
    Average per day (job) -1
    Average per day (lens) - 1
    Month to date report
    Date Range: Month to date (01/08/2008 to 28/08/2008)
    Job - 6
    Lens - 438
    Average per day (Job)- 0.21 (where it should be 0.31)
    Average per day (lens)- 15.64 (where it should be 23.05)
    If you see above example, monthly should be taking Weekends and bank holidays in account.
    I have done similar thing but used two different date fields however here I am facing only one date field which is being used.
    So What I have done is, I modified the formula like this
    WhileReadingRecords;
    DateVar Array Holidays;
    DateVar Target:={lab_rework.rework_date};
    NumberVar Add:= -2;
    NumberVar Added := 0;
    WHILE Added > Add
    Do (target := target -1;
        if dayofweek (target) in 1 to 7 and not (target in holidays)
            then Added:=Added-1
            else Added:=Added);
    Target;
    I added this formula into my Report Selection formula like this
    ({@WeekdaysOnly} in MonthToDate)
    Oh and background of the report history:
    Crystal Reports: 2008
    Database: Informix
    Report: Record Selection formula ({lab_rework.rework_date} in MonthToDate);
    Report Group by: Report grouped by Reason Code
    Report Average formula:
    Whileprintingrecords;
    Numbervar FAvg;
    Numbervar myaverage=0;
    Numbervar CAvg=0;
    myaverage := {#Total Lenses}; 
    CAvg:= myaverage /Day(Maximum(MonthToDate));
    //({@EndDate}-{@StartDate}+1);
    FAvg:=FAvg + CAvg;
    CAvg
    Anyone who can help me using only one formula which I can use to take in account working days?
    The expected results aren't coming up correctly.
    Regards
    Jehanzeb

    Nope, no need for that.
    I sorted it out after editing my working days formula
    here is the solution I used
    WhileReadingRecords;
    Local DateVar Start := Date(Year(CurrentDate),Month(CurrentDate),1);// place your Starting Date here
    Local DateVar End :=   Currentdate;// place your Ending Date here
    Local NumberVar Weeks;
    Local NumberVar Days;
    Local Numbervar Hol;
    DateVar Array Holidays;
    Weeks:= (Truncate (End - dayofWeek(End) + 1 - (Start - dayofWeek(Start) + 1)) /7 ) * 5;
    Days := DayOfWeek(End) - DayOfWeek(Start) + 1 +
    (if DayOfWeek(Start) = 1 then -1 else 0)  +
    (if DayOfWeek(End) = 7 then -1 else 0); 
    Local NumberVar i;
    For i := 1 to Count (Holidays)
    do (if DayOfWeek ( Holidays<i> ) in 2 to 6 and
         Holidays<i> in start to end then Hol:=Hol+1 );
    Weeks + Days - Hol;
    //Holidays Code
    //Holiday Array Formula for the report Header:
    BeforeReadingRecords;
    DateVar Array Holidays := [
    Date (2003,12,25),   // you can put in as many lines for holidays as you want. 
    Date (2003,12,31),
    Date (2008,08,25)
    0
    Regards
    Jehanzeb

  • Billing report with due date field

    Dear Friends,
    Can you please tell the logic of Billing report with due date field.
    Input.  billing document no, date range, sales organisation
    Output : billing document no, sales organisation, Amount. Due date.
    If any clarification required, Please let me know.
    Thanks in advance
    Ranjan

    Is it VF05 is suffiant for your purpose?
    use further selection criteria tab.
    Amit.

  • How do I create an interactive PDF file with variable data

    We would like to basically do a 'mail merge' of our list of customers with an interactive PDF file (including videos, menus, etc - not just form fill out and web links) to create a single PDF file that contains multiple mail pieces ... one for each customer ... with each mail piece being customized for that customer.  Customizations would include different greetings (Dear Bob, Dear Dana, etc), as well as different charts based on data unique to the customer, different photographs, etc.
    I've seen that InDesign and Acrobat Professional can be used to create an interactive PDF (such as from http://tv.adobe.com/watch/ask-the-adobe-ones/14-calling-rufus-about-interactive-pdf-making).  However I don't understand how I can insert data from a database, csv file, excel file etc into the PDF file so that each page, or each set of pages, within the PDF can be customized.
    Can anyone point me to a tool to use for this?
    Thanks,
    Bob Kendall

    For that kind of volume and unattended operation, you want InDesign Server – which is the server/high volume edition of INDD.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Thu, 3 Nov 2011 06:58:07 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: How do I create an interactive PDF file with variable data
    Re: How do I create an interactive PDF file with variable data
    created by Ti26E31DSxxx<http://forums.adobe.com/people/Ti26E31DSxxx> in PDF Language and Specifications - View the full discussion<http://forums.adobe.com/message/4005459#4005459

  • How to compare two rows from two table with different data

    how to compare two rows from two table with different data
    e.g.
    Table 1
    ID   DESC
    1     aaa
    2     bbb
    3     ccc
    Table 2
    ID   DESC
    1     aaa
    2     xxx
    3     ccc
    Result
    2

    Create
    table tab1(ID
    int ,DE char(10))
    Create
    table tab2(ID
    int ,DE char(10))
    Insert
    into tab1 Values
    (1,'aaa')
    Insert
    into tab1  Values
    (2,'bbb')
    Insert
    into tab1 Values(3,'ccc')
    Insert
    into tab1 Values(4,'dfe')
    Insert
    into tab2 Values
    (1,'aaa')
    Insert
    into tab2  Values
    (2,'xx')
    Insert
    into tab2 Values(3,'ccc')
    Insert
    into tab2 Values(6,'wdr')
    SELECT 
    tab1.ID,tab2.ID
    As T2 from tab1
    FULL
    join tab2 on tab1.ID
    = tab2.ID  
    WHERE
    BINARY_CHECKSUM(tab1.ID,tab1.DE)
    <> BINARY_CHECKSUM(tab2.ID,tab2.DE)
    OR tab1.ID
    IS NULL
    OR 
    tab2.ID IS
    NULL
    ID column considered as a primary Key
    Apart from different record,Above query populate missing record in both tables.
    Result Set
    ID ID 
    2  2
    4 NULL
    NULL 6
    ganeshk

  • I have an HTC 8m and with no data connection other than WIFI??? Any advice

    I have an HTC 8m and with no data connection other than WIFI??? Any advice

    Try removing then reinserting the SIM card; it may just not be connecting fully. If that doesn't work, the SIM card may be corrupt (it happens), and you can get a new one at no charge at a Verizon corporate store, or by calling customer service (800) 922-0204.

  • How can I have a text field that auto detects a previous entry?

    Like I have a text field example "First Name" and I want to be able to add another text field that will auto detect that input.

    Hi,
    Sorry we do not support this.
    To add a feature request please go to http://forums.adobe.com/community/formscentral?view=overview and click on "Submit Feature Request" in the Resources section on the right.
    To vote for an existing feature request already entered in our database, please go to  http://forums.adobe.com/community/formscentral?view=overview and click on "View Feature Request" in the Resources section on the right.
    Thanks,
    Lucia

  • Is there a fax cover template?  If not, how can I have 2 text fields on one line?

    Is there a fax cover template?  If not, how do you add two text fields on one line?    

    No fax cover template. This forum posts explains how to put multiple fields on one line:
    http://forums.adobe.com/message/5032849

  • How can I have popup text when user types something wrong?

    I have some textarea and textfields created dynamically. I have set of rules in a text file. How can I have these rules popup when users make mistakes(e.g., forgets to capitalize the name)?
    Please provide your input.
    Thx.
    M

    Mike
    From your addendum I'm guessing you are wanting to do this with a JSP or servlet. If so Ali's suggestion won't work becuase he's working with Swing components. It is always helpful if you specify the technology you're using: JDeveloper is a tool for writing many different types of Java programs.
    If you want to produce pop-up windows in JSP then you have to use JavaScript.
    If you're using DataWebBeans and want to use JavaScript you have to change (ie subclass) the WebBeans so that they have HTMLFieldRenderers that allow you to attach Javacript to a TextField (or whatever). This is not a small job but is worth it for the flexibility you'll gain.
    If you're using datatags I should imagine it's easier because you can add JavaScript functionality directly to the HTML input fields e.g. in the Input page, but I imagine you'll still have to subclass your own datatags to do the same for the Update pages.
    GoodLuck().youllNeedIt, APC
    null

  • How can I have Tibetan text correctly displayed on firefox?

    I would like to view websites with tibetan unicode text displayed. how can I view this text correctly, rather than just squares and muddled bits of letters? I've tried downloading tibetan fonts from Play, but they don't work. Thanks.

    I could only find a Tibetan Spellchecker add on firefox. But have you tried the keyboard: [https://play.google.com/store/apps/details?id=org.ironrabbit.bhoboard]
    [http://en.ironrabbit.org/howto]

  • How do I have incoming text/phone calls reflect contact name

    Inadvertant change of a setting - unsure which - that now does not have incoming text/phone messages reflect contact name if in Address Book.  Only phone number appears. Help restore old setting

    Longshot, but try resetting:
    Hold both the home and power buttons at the same time until the Apple boot logo appears. No data will be lost.
    As for the font size, try Settings > General > Accessibility > Large Text, and change it to the desired size.

Maybe you are looking for

  • ITunes will not recognize my iPod Touch 4 so I am not able to restore

    I am trying to restore my iPod Touch 4th Generation so I can get rid of the jailbreak but whenever I plug in my device, the computer recognizes it but not iTunes. I have managed to get it to recognize it a few times which is when I try to restore it,

  • VALUE BASED  PARTITIONING BETWEEN AN EXCEL AND DATABASE

    Can any1 help I have an EXCEL FILES and DATABASE. I want to make partitioning value-based between these sources. Thanks you in advances.

  • Jobs in 10g

    Hi, We have imported a schema from 9i user ABC to 10g user ABC using traditonal EXP utility from SYSTEM. There were few jobs in ABC users that have also been imported to the new database. Now these jobs are actually under ABC user, but they show LOG

  • HELP!  Strange sync issue

    This is by far the strangest problem I have come upon and can't find anything in any forum discussing it. My site is www.aloversscent.com. We are trying to put up 4 videos. I am editing in FCP and compressing in Compressor to H.264 and then making th

  • Strange problem with prompts

    Hi, I'm having a strange problem occuring in a prompt. The design is this: I have a "search" dashboard page that let's a user search for specific projects (project is a dimension) using a wide variety of multi-select boxes, dropdowns, etc. Once a use