How Can I Put Fields Into a Calendar Grid?

Hello All
I have a project that requires me to create a form in a calendar format.  Each day (or square) in the calendar will need drop-down menus in it with various times of the day from which the user can select.  Additionally, the user will need to input his name and email address at the top of the calendar.  This is a very simple matter if I create it as a PDF form (which I have done).  However, we want to try this as a WEB form.  It doesn't seem that formscentral offers tables in which you can put fields.  I looked for a way to use a .png image of the artwork as a background and just insert fields where needed, but this too seems to be not an option.  Originally, I thought that formscentral would take my fillable document and convert it to a web form, but the technology is obviously not there.  Thankfully, I'm on the 99 cent trial, so I can bail out if there is no way to accomplish the job of putting fields on a calendar grid.  Any help or suggestions would be appreciated.  None of us can code in HTML.  I've put in an image to give a better idea of what it is we're after.
Thanks
--Daryl

in the future. you should start out with a symbol, then you can select the symbol you want to replace and choose the symbol you want to replace it with.
for now i would use a script.
go here: http://www.wundes.com/JS4AI/
there are several scripts in that could apply here.
CopyToMultipleObjects
CopyToObject
SwapObjects
i use swap objects a lot, but i modified it so there are no dialogue windows. you can pretty much guess what they do by their name and when replacing the hexagons with your symbols using any of those scripts, your symbol wil be centered with the replaced hexagon.

Similar Messages

  • How can  we put  Documents into SDN

    Hi friends,
      I have one document  about Reporting... i prepared   that with screen shots.. now i want to put into SDN .. it will be helpfull to many people..
       can any one suggest me.. how can we put  into SDN...( i mean i dont have any idea abt WIKI  and Blogs.... so,    can any one plz guide me..)
    Thanks
    AK
    null

    Hello Ajay,
    here is an <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d3522851-0e01-0010-e795-fbb9fc59c905">article about SDN documents</a>. It decribes how to <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/68f93647-0a01-0010-8891-92cea7f0313f">complete this form</a>, which has to be send to SDN. Good luck with that...
    Reward points if helpful,
    regards, Martin

  • How can I put video into my ipod

    Please tell me how can I put the videos in my ipod by using itunes? I try to put the DVD but it didnt appeare in my itunes. I cant add the video to my library

    Would you happen to know what format the Music Video is that you are trying to import? iTunes can only support a few kinds: MPEG, MPEG-4, and MOV.
    Make sure you are converting the file to an iTunes compatible format.
    If it is a WMV or AVI, it will probably not work. In this case, find a third-party program to convert these files for you. Search Google for free options.

  • HT2729 How can I put songs into the album they came from but were split because of multiple artists on a tune?

    I need help in finding out home to combine songs from the same CD into one Album. When putting CD into the iMac, it auto loads into iTunes. If the artist is singing duet and the songs show more than one artist, it gets separated in iTunes. I want to combine all tracks together like they are on the CD.

    One way around this is to edit the album info for each song on that album and make the album artist 'various artists', or you can remove that duet artist and make all the artists the same.
    Seems to be a glitch or change with how iTunes sees albums now. THey alphabetize them by artist and, as you've noticed, if the artists are different, it sees them as different albums.
    I had many albums like this and spent a whole weekend editing the info to 'various' to clean it up.

  • How can I put Planning into Read Only Mode ?

    We need to backup our Essbase cubes to tape every night. How can I update Oracle HSP* tables so that I put Planning into Read Only Mode ? I want to prevent Asia and Europe users from updating Planning while Essbase is in READ-ONLY mode (BEGINARCHIVE).

    Hi,
    You should put the planning application in Maintenance mode if you are doing any backups, this can be done from planning web.
    Select Administration > Application Settings.
    For Show, select Advanced Settings.
    Click Go.
    Select System Settings.
    For Application Maintenance Mode, select an option for Enable Use of the Application For:
    All users —All users can log on to the application or continue working with the application if they are currently logged on.
    Administrators —Only other administrators can log on. Other users are forced off and prevented from logging on until the option is reset to All Users.
    Owner —Only the application owner can log on. All other users are prevented from logging on. If they are currently logged on, they are forced off the system until the option is reset to All Users or Administrators. Only the application owner can restrict other administrators from using the application.
    Hope this helps
    John
    http://john-goodwin.blogspot.com/

  • How can I put quicklinks into the toolbar like in Internet Explorer

    In Internet Explorer you can Add Favorites to the toolbar - how can I do this in Firefox?

    Firefox has a bar for Bookmarks (equivalent of Favorites). To display the bar, you can right-click a blank area to the right of the tabs and turn on the Bookmarks Toolbar. This also is available from the following menus:
    orange Firefox button > Options > Bookmarks Toolbar ''or''<br>
    classic View menu > Toolbars > Bookmarks Toolbar
    Does that do what you need?

  • How can I put movie into my new ipod video ??

    I would like to know how I can put a movie (dvd) into my ipod video ??

    Commercial or home made?
    If you mean commercial-we aren't allowed to tell you, it violates terms of service.
    Home made-you will need to convert the mpeg2 files into mpeg4 files that comply with the iPod accepted format.

  • How can I put this into a table

    I have the following code inside a table.
    <table border="0" width="760">
    <tr>
    <td class="TitleText">
    <cfoutput query="qrySerialNumbers"
    group="materialNumber"><b>Material
    Number:</b> #materialNumber#<p>
    <cfloop from="1" to="#quantity#" index="i">
    <cfif #len(i)# is 1>
    <b>Serial Number
    #i#:</b>    <cfinput
    type="text" name="serialNumber" required="Yes" Message="Serial
    Number must be entered."><input type="hidden"
    name="gfmPartNumberID" value="#gfmPartNumberID#"><br>
    <cfelse>
    <b>Serial Number
    #i#:</b>  <cfinput type="text"
    name="serialNumber" required="Yes" Message="Serial Number must be
    entered."><input type="hidden" name="gfmPartNumberID"
    value="#gfmPartNumberID#"><br>
    </cfif>
    </cfloop>
    <p>
    </cfoutput>
    </td>
    </tr>
    </table>
    It gives me the desired output layout and the data is
    correct.
    But I want to put in the <td> and <tr> tags to
    make each line a proper table format so that I can control the
    spacing, instead of using   The output layout should be
    the same as what I have now.
    I cannot seem to get this to work.

    You currently have the entire query being outputted inside a
    single table cell.
    You might want something like this:
    <table>
    <cfoutput query="something" group ="whatever">
    <tr><td>#grouped data#</td>
    <td><cfoutput>#ungrouped
    data#<br></td>
    </tr>
    </cfoutput>
    </table>

  • How can I put files into the trash without login every time?

    Every time I want to put items in the trash, after dragging things to the basket, I have to sign in.  Why? Can I set the defaul to allow me to do so without login?

    The procedure below will reset the permissions of a user's home folder in OS X 10.7.4 or later, including 10.8 or later. If you're running an earlier version of 10.7, update to the latest version first. This procedure should not be used under OS X versions older than 10.7.4.
    Back up all data before you begin.
    Step 1
    Click the Finder icon in the Dock. A Finder window will open.
    Step 2
    Press the following key combinations, in the order given:
    Command-3
    Shift-command-H
    Command-I (the letter "I" as in "Info.")
    The Info window of your home folder will open.
    Step 3
    Click the lock icon in the lower right corner and authenticate with the name and login password of an administrator on the system. If you have only one user account, you are the administrator.
    Step 4
    In the Sharing & Permissions section of the window, verify that you have "Read & Write" privileges. If not, use the "+" and "-" buttons in the lower left corner to make the necessary changes.
    Step 5
    By default, the groups "staff" and "everyone" have "Read Only" privileges. With those settings, the files at the top level of your home folder will be readable by other local users. You can change the privileges to "No Access" if you wish, but then your Public and Drop Box folders will be inaccessible to others. Most likely, you don't need to change these settings.
    Step 6
    If there are entries in the Sharing & Permissions list for users or groups other than "me," "staff," and "everyone," delete them.
    Step 7
    Click the gear icon at the bottom of the Info window and select Apply to enclosed items... from the drop-down menu. Confirm. The operation may take several minutes to complete. When it does, close the Info window.

  • How can I put JTree into drop-down List of JCombobox

    I want to create a drop-down list which shows a list of nodes. When the user clicks on a node, it should open to show the leafs. Clicking on a leaf should close the ComboboxPopup and show its value. Creating a renderer only represent my tree, but I can't trap the events.
    Here is my simplified code.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.JTree;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.border.*;
    import java.util.*;
    public class ComboBoxTreeDemo  extends JPanel
         static JFrame frame;
         ComboBoxRenderer renderer;
         JTree tree;
         public ComboBoxTreeDemo()
              setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
              DefaultMutableTreeNode root =  new DefaultMutableTreeNode("top");
              DefaultMutableTreeNode sub1 =  new DefaultMutableTreeNode("sub1");
              DefaultMutableTreeNode sub2 =  new DefaultMutableTreeNode("sub2");
              root.add(sub1);
              root.add(sub2);
              tree = new JTree(root);
              String[] string = {"1" };
              JComboBox jcb = new JComboBox(string);
              renderer = new ComboBoxRenderer(this);
              jcb.setPreferredSize(new Dimension(100,22));
              jcb.setEditable(true);
              jcb.setRenderer(renderer);
              JPanel jpa = new JPanel();
              jpa.setLayout(new BoxLayout(jpa, BoxLayout.PAGE_AXIS));
              jpa.setAlignmentX(Component.LEFT_ALIGNMENT);
              jpa.add(jcb);
              add(jpa);
              setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
         private static void createAndShowGUI()
              JFrame.setDefaultLookAndFeelDecorated(true);
              JFrame frame = new JFrame("ComboBoxTreeDemo");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JComponent newContentPane = new ComboBoxTreeDemo();
              newContentPane.setOpaque(true);
              frame.setContentPane(newContentPane);
              frame.pack();
              frame.setVisible(true);
          class ComboBoxRenderer extends JPanel implements ListCellRenderer
              ComboBoxTreeDemo cbt;
              public ComboBoxRenderer(ComboBoxTreeDemo cbt)
                   this.cbt = cbt;
                   setLayout(new BorderLayout());
                   add(cbt.tree);
              public Component getListCellRendererComponent(JList list,Object value,int index, boolean isSelected,boolean cellHasFocus)
                   return this;
         public static void main(String[] args)
              javax.swing.SwingUtilities.invokeLater(new Runnable()
                   public void run()
                        createAndShowGUI();
    }

    Thank you for the excellent reference Peddi. I had played with the OAMessageChoiceBean component yesterday, but I was able to tell from your instructions that "Picklist Display Attribute" and "Picklist Value Attribute" really are not for binding to the database EO. That was the key piece of information that had me confused.
    In addition to adding the messageChoice component to the page, I needed to write some code to synchronize the picklist value with the corresponding code value, which I placed in am OAFormValueBean (hidden form field) which I could then bind to my application's database EO in the controller, running in the processFormRequest procedure:
    /** Synchronize the catalog code with the selected catalog name */
    protected void syncCatalogValues(OAPageContext pageContext,
    OAWebBean webBean, MyApplicationAMImpl am) {   
    OAMessageChoiceBean mcb =
    (OAMessageChoiceBean) webBean.findChildRecursive("CatalogName");
    OAFormValueBean cc =
    (OAFormValueBean) webBean.findChildRecursive("CatalogCode");
    String catalogDescription = mcb.getText(pageContext);
    if (catalogDescription != null) {
    String catalogCode = am.getCatalogCode(catalogDescription);
    cc.setValue(pageContext, catalogCode);
    Along with a little code to get the catalogCode value from the LOVVO, that's all it took.
    Thanks again. This was a great help.
    Pete

  • How can I put text into a cell with a formula?

    I'm trying to sort a budget in Numbers 3.1. I have a sum of column of cells that I'm adding up. The cell that has a total number looks like this: =SUM(F). I want to have that sum have a $ sign in front of it. I've ready everywhere that I could do ="$" SUM(7), but that doesn't work in 3.0, only in Numbers 09 I guess. Is there a new solution for 3.1?

    Tyna,
    Just Format the cell as Currency.
    Jerry

  • How can I copy movies into iPhone from my PC?

    How can I put movies into Iphone from PC.
    When I'm trying to put video files into library (mp4 format) it not appear in my iTunes library.

    You sync it to your iPad.
    http://i1224.photobucket.com/albums/ee374/Diavonex/Album%204/9d04e8509b150edc93a 9a8b2adc4dc59.jpg

  • How do I remove a date and time mark on a stored photo so I can put it into a calendar

    How do I remove a date and time mark on a stored photo so I can put it into a calendar.....?

    In Iphoto, yes.  You can use PhotoShop Elements or some other editor.  You can also crop.  (You might be able to make the retouch brush smaller.)

  • How can i put below  table into internalt table

    how can i put below  table into internalt table and want to add both internal table into 3rd internal table.
    SELECT  * FROM J_1IEXCHDR  WHERE STATUS = 'P'.
    WRITE: / J_1IEXCHDR-LIFNR,
              J_1IEXCHDR-DOCNO,
              J_1IEXCHDR-EXYEAR,
              J_1IEXCHDR-BUDAT.
    SELECT * FROM J_1IEXCDTL  WHERE TRNTYP = J_1IEXCHDR-TRNTYP
                              AND DOCYR  = J_1IEXCHDR-DOCYR
                              AND DOCNO  = J_1IEXCHDR-DOCNO.
       WRITE: / J_1IEXCDTL-EXBAS,
                J_1IEXCDTL-EXBED,
                J_1IEXCDTL-RDOC1,
                J_1IEXCDTL-ECS.
    ENDSELECT.
    ENDSELECT.
    please help
    thanks in adavaced.

    hi laxman,
    use for all entries and get the required data.
    SELECT * FROM J_1IEXCHDR into table itab1 WHERE STATUS = 'P'.
    if not itab1[] is initial.
    SELECT * FROM J_1IEXCDTL into table itab2 for all entries in itab1 WHERE TRNTYP = itab1-TRNTYP
    AND DOCYR = itab1-DOCYR
    AND DOCNO = itab1-DOCNO.
    endif.
    so itab2 will have the common records...This will solve ur problem..
    also u can do other method declare an final internal table with the common fields of the two internal table.
    then after getting data in itab1 and itab2.
    loop at itab1.
    move-corresponding itab1 to itab3.
    read table itab2 with key <give the fields> = ......
    if sy-subrc eq 0.
    move-corresponding itab2 to itab3.
    endif.
    append itab3.
    endloop.
    Regards,
    nagaraj

  • How can we put the report which is generated by the program into spool??

    How can we put the report which is generated by the program into spool??
    I had generated a file in Unix which had the report but now the requirement has changed.
    Regards,
    Shashank.

    Hi Shashank,
    If the program is executed in the background and it has the write statement then the spool will automatically generated.
    Reward points if useful.
    Regards,
    Atish

Maybe you are looking for