I NEED A FORM THAT WILL PUT NAME IN ALPHABETIC ORDER.  THIS FORM NEEDS TO HAVE COLUMNS WITH HEADERS.

I NEED A FORM THAT LISTS NAMES IN ALPHBETIC ORDER ON THE LEFT SIDE GOING DOWN.  THIS FORM ALSO NEEDS COLUMNS THAT HAVE PRODUCT IDENTIFICATION ON THE TOP OF THE COLUMNS.

Hi,
  Is your question in the context of the responses that you collect (this is the View Responses tab) or the actual form that your end users will see?
In a nutshell, (1)  a field in your form corresponds to a column in the responses table. (2) the caption text of the form field will be the column header (show up at the top of the column). (3) to list names in alphabetical in your form, you can use choices fields, like multiple choices field or drop down field - you will have to enter the name in alphabetical order manually.
Hope this helps,
Thanks,
Lucia

Similar Messages

  • Is there a Java Obiect that will arrange data in alphabetical order?

    Is there a Java Obiect that will arrange data in alphabetical order?
    So no matter what order you add or put things into the object it will only return them in alphabetical order.
    Edited by: Easter1976 on Nov 5, 2007 9:55 AM

    No, you will either have to create a comparator, a sorter, or write the compareTo in such a way that it sorts your data by your wanted fields.
    So, given the class Student, you probably want something like this:
    public class Student implements Comparable<Student> {
         public int compareTo(Student s) {
              if (getLastName().compareTo(s.getLastName()) != 0)
                   return getLastName().compareTo(s.getLastName();
              if (getFirstName().compareTo(s.getFirstName()) != 0)
                   return getFirstName().compareTo(s.getFirstName();
              return 0;
    }After that, you may sort your list of students with Collections.sort(myListOfStudents);
    Alternatively, you may do it like this:
    Collections.sort(myListOfTypeSomething, new Comparator<Something>() {
         public int compare(o1, o2) {
              return o1.getAlphaSomething().compareTo(o2.getAlphaSomething());
         });

  • Putting names in alphabetical order what program is used

    I was wondering which program do I use to put names in alphabetical order.

    Mon,
    Download Devon WordService. Put it in Macintosh HD, Library, Services. Then go to System Preferences, Hardware, Keyboard, Keyboard Shortcuts, and activate the Sort items.
    To sort your names, select them and then go to File > Services > Sort Lines.
    If your names are in a table, use the table inspector to do the sort, and you don't need WordService.
    Jerry

  • Need a script that will put photo on white background

    I am currently using CS3 Photoshop on a MacPro Intel
    I have about 31,000 photos that I need to take the background out of. Most of the photos were not shot against white, black or green screens. These are mostly images of plumbing products. The majority of these images do have clipping paths. I am currently having to manually select the path, make selection, select inverse, cut the selection, save, close. I have tried to create a script to do this, but haven’t been successful in doing so yet. I have been able to create basic scripts in the past without issues, but this one has me stumped. Any help or direction would be greatly appreciated.

    As long as the files do have clipping paths this should get you started. It applies the clipping path as a vector mask. All you should have to add is the save and close part. If you need help with that let me know what format you want to save and the save options.
    // apply clipping path as vector mask
    var clipPathIndex = clippingPathIndex();
    if( clipPathIndex != -1 ){
         activeDocument.layers[ activeDocument.layers.length -1 ].name = 'Converted Background';// rename bottom layer incase isBackground
         activeDocument.pathItems[ clipPathIndex ].select();
         createVectorMask();
         activeDocument.pathItems[ clipPathIndex ].deselect();
         // or
         //activeDocument.pathItems[ clipPathIndex ].remove();
    // Function: clippingPathIndex
    // Description: Gets the index of the activeDocument's clipping path
    // Usage: clippingPathIndex()
    // Input: None
    // Return: Index as Integer. -1 if there is no clipping path
    function clippingPathIndex(){
         var ref = new ActionReference();
              ref.putEnumerated( charIDToTypeID("Dcmn"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
         var desc = executeActionGet( ref );
         var clippingPath =  desc.getObjectValue(charIDToTypeID("Clpg"));
         return  clippingPath.getInteger(charIDToTypeID("ClpI" ));
    // Function:  createVectorMask
    // Description: Make vector mask from active path
    // Usage: createVectorMask();
    // Input: None
    // Return: -1 if failed
    function createVectorMask() {
      try{
        var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putClass( charIDToTypeID('Path') );
        desc.putReference( charIDToTypeID('null'), ref );
            var mask = new ActionReference();
            mask.putEnumerated( charIDToTypeID('Path'), charIDToTypeID('Path'), stringIDToTypeID('vectorMask') );
        desc.putReference( charIDToTypeID('At  '), mask );
            var path = new ActionReference();
            path.putEnumerated( charIDToTypeID('Path'), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        desc.putReference( charIDToTypeID('Usng'), path );
        executeAction( charIDToTypeID('Mk  '), desc, DialogModes.NO );
      }catch(e){ return -1; }

  • I need a function that will go through and encrypt all the strings

    I want to use one way enryption and need a function that will
    go through and encrypt all the strings in my password column in sql
    server 2003.
    I also need a function that compares a test password string
    is equal to the hash value in the database. Can anyone give me some
    advice in this?

    Apparently it's not as simple as I thought. My first instinct
    was
    update yourtable set password = '#hash(password)#'
    but that will crash
    This is inefficient, but you only have to do it once.
    query1
    select id, password thepassword
    from yourtable
    cfloop query="query1"
    update yourtable
    set password = '#hash(thepassword)#'
    where id = #id#

  • I need a script that will find the computer a user last logged into.

    I am still learning scripting, I need a script that will allow me to pull in usernames from a csv file. Find what computer they last logged into and output that to an csv file.
    I have looked all over and can't find exactly what I need.
     I found the following script but I need  to add the resuitsize unlimited but can not figure out where to put it we have a large environment. Also I need to be able to grab username from a csv file. Any assistance you can provide is appreciated.
    ##  Find out what computers a user is logged into on your domain by running the script
    ##  and entering in the requested logon id for the user.
    ##  This script requires the free Quest ActiveRoles Management Shell for Active Directory
    ##  snapin  http://www.quest.com/powershell/activeroles-server.aspx
    Add-PSSnapin Quest.ActiveRoles.ADManagement -ErrorAction SilentlyContinue
    $ErrorActionPreference = "SilentlyContinue"
    # Retrieve Username to search for, error checks to make sure the username
    # is not blank and that it exists in Active Directory
    Function Get-Username {
    $Global:Username = Read-Host "Enter username you want to search for"
    if ($Username -eq $null){
    Write-Host "Username cannot be blank, please re-enter username!!!!!"
    Get-Username}
    $UserCheck = Get-QADUser -SamAccountName $Username
    if ($UserCheck -eq $null){
    Write-Host "Invalid username, please verify this is the logon id for the account"
    Get-Username}
    get-username resultsize unlimited
    $computers = Get-QADComputer | where {$_.accountisdisabled -eq $false}
    foreach ($comp in $computers)
    $Computer = $comp.Name
    $ping = new-object System.Net.NetworkInformation.Ping
      $Reply = $null
      $Reply = $ping.send($Computer)
      if($Reply.status -like 'Success'){
    #Get explorer.exe processes
    $proc = gwmi win32_process -computer $Computer -Filter "Name = 'explorer.exe'"
    #Search collection of processes for username
    ForEach ($p in $proc) {
    $temp = ($p.GetOwner()).User
    if ($temp -eq $Username){
    write-host "$Username is logged on $Computer"

    If you are querying by user "resultset size" will be of no use.
    You also have functions that are never used and the body code doe snot look for users.
    Here is what you scrip looks like if printed well.  It is just a jumble of pasted together and unrelated items.
    ## Find out what computers a user is logged into on your domain by running the script
    ## and entering in the requested logon id for the user.
    ## This script requires the free Quest ActiveRoles Management Shell for Active Directory
    ## snapin http://www.quest.com/powershell/activeroles-server.aspx
    Add-PSSnapin Quest.ActiveRoles.ADManagement -ErrorAction SilentlyContinue
    $ErrorActionPreference = "SilentlyContinue"
    # Retrieve Username to search for, error checks to make sure the username
    # is not blank and that it exists in Active Directory
    Function Get-Username {
    $Global:Username = Read-Host "Enter username you want to search for"
    if ($Username -eq $null) {
    Write-Host "Username cannot be blank, please re-enter username!!!!!"
    Get-Username
    $UserCheck = Get-QADUser -SamAccountName $Username
    if ($UserCheck -eq $null) {
    Write-Host "Invalid username, please verify this is the logon id for the account"
    Get-Username
    get-username resultsize unlimited
    $computers = Get-QADComputer | where { $_.accountisdisabled -eq $false }
    foreach ($comp in $computers) {
    $Computer = $comp.Name
    $ping = new-object System.Net.NetworkInformation.Ping
    $Reply = $null
    $Reply = $ping.send($Computer)
    if ($Reply.status -like 'Success') {
    #Get explorer.exe processes
    $proc = gwmi win32_process -computer $Computer -Filter "Name = 'explorer.exe'"
    #Search collection of processes for username
    ForEach ($p in $proc) {
    $temp = ($p.GetOwner()).User
    if ($temp -eq $Username) {
    write-host "$Username is logged on $Computer"
    I suggest finding the original code then use the learning link at the top of this page to help you understand how it works in Powershell.
    ¯\_(ツ)_/¯

  • Is there a way to create an export button on a pdf form that will send form info into ongoing excel spreadsheet?

    I'm trying to see if there is a way to create a submit button on my pdf form that will export the form data into a saved (ongoing) excel spreadsheet. The end result i'm hoping for would be a spreadsheet that lists all the information i receive from each form.
    Any help would be greatly appreciated.
    Thank you,

    Not really. But you can combine the data from multiple forms into a single (new) spreadsheet via Tools - Forms - More Form Options - Merge Data Files into Spreadsheet...

  • Is there a way to take an existing PDF and make it into a form that will aggregate the responses?

    Is there a way to take an existing PDF and make it into a form that will aggregate the responses? 

    Sabian has pointed you to an older Acrobat X tutorial.
    It depicts the use of acrobat.com "workspaces".
    "Workspaces" are going away soon.
    See:
    https://forums.adobe.com/docs/DOC-4203 
    So, what is shown in the Adobe TV session is, basically, obsolete.
    For forms you may want to give acrobat.com's (now "Adobe Document Solutions) FormsCentral subscription service a look-see.
    https://new.acrobat.com/en_us/products/formscentral.html 
    Be well...

  • I need an application that will turn off my iPhone on the home screen just by a one click since my power button has sank and is no longer working--anyone have ideas?? I don't like having to use assistive touch and hit three buttons to lock my screen

    I need an application that will turn off my iPhone on the home screen just by a one click since my power button has sank and is no longer working--anyone have ideas?? I don't like having to use assistive touch and hit three buttons to lock my screen

    No such app exisits or can exist.  Apple doesn't allow 3rd party apps to access core functions of the phone.  Time to get your phone replaced or repaired if assistive touch doesn't needs your needs.

  • I need an app that will play one song from a list then pause

    I currently use a DJ style CD player to play backing tracks for the trio that I play with. The CD player has a "single" button that when you engage it will only play one song from the CD and then stop/pause. I need an app that will do the same thing as it relates to a playlist. Any ideas?

    It isn't an answer to your actual question but it might help:
    Try creating a playlist in iTunes with that one song you need to be played. Start that playlist (ipod app) and you'll see that your ipad will only play that song.

  • I need an app that will do word processing

    I have some old word documents that I need to process.
    Is there an app that will process Word and excel documents?

    stedman1 wrote:
    I have used NeoOffice as indicated by steve359 above, and found it to be very good at opening a wide variety of documents. And as an added bonus, it is free.
    Agreed.  The plus to Neo/Libe/Open Office is that you can try them before you decide you need to spend money with MS.

  • I need a programme that will be able to download my upgrade for my Parrot MKi9100-7.plf file

    I need a programme that will be able to download my upgrade for my Parrot MKi9100-7.plf file can anyone help?

    According to the Parrot Support site:
    "The Parrot Software Update Tool is only available for Windows."
    So you would need to install Windows on your iMac, first, in order to download the file.  Your Mac's OS X cannot read Windows based files.

  • How to create a form that will allow the applicant to upload their photo

    I have Adobe Acrobat 9 Pro Extended and I know how to create forms that require text input.
    How to create a form that will allow the applicant to upload their photo? I alo wish to know how to upload a photograph so that I can test the form I created.
    Thank you
    Adrian Watts

    test@ORA10G> with x as (
      2    select '234-1111' as customer, to_date('2-Jan-2008','dd-Mon-yyyy') as call_date, 'Order product' as reason from dual union all
      3    select '234-1132', to_date('3-Jan-2008','dd-Mon-yyyy'), 'Request info' from dual union all
      4    select '231-1154', to_date('4-Sep-2007','dd-Mon-yyyy'), 'Request info' from dual union all
      5    select '234-1111', to_date('2-Nov-2007','dd-Mon-yyyy'), 'Order product' from dual union all
      6    select '234-1132', to_date('9-Jan-2008','dd-Mon-yyyy'), 'Request info' from dual union all
      7    select '231-1154', to_date('9-Sep-2007','dd-Mon-yyyy'), 'Request info' from dual union all
      8    select '234-1111', to_date('5-Dec-2007','dd-Mon-yyyy'), 'Order product' from dual union all
      9    select '234-1131', to_date('7-Dec-2007','dd-Mon-yyyy'), 'Request info' from dual union all
    10    select '231-1154', to_date('1-Sep-2007','dd-Mon-yyyy'), 'Request info' from dual union all
    11    select '234-1111', to_date('8-Jan-2008','dd-Mon-yyyy'), 'Order product' from dual union all
    12    select '234-1131', to_date('3-Dec-2007','dd-Mon-yyyy'), 'Request info' from dual union all
    13    select '231-1154', to_date('4-Nov-2007','dd-Mon-yyyy'), 'Forward to Sales' from dual)
    14  --
    15  select customer,max(call_date), reason
    16  from x
    17  where reason = 'Request info'
    18  group by customer, reason;
    CUSTOMER MAX(CALL_ REASON
    231-1154 09-SEP-07 Request info
    234-1131 07-DEC-07 Request info
    234-1132 09-JAN-08 Request info
    test@ORA10G>
    test@ORA10G>pratz

  • I need a program that will creat registration marks.  can I do this in Adobe elements 11?

    I need a program that will creat registration marks.  can I do this in Adobe elements 11?

    Most of the users look for copyrighting or having a watermark on their images to protect them from illiegal usage.
    If you are looking for this perfect use then below links can help you:
    There are multiple ways to add captions/watermark/copyright info in Photoshop Elements
    Below KB articales should be helpful in this context depending on your need and usage and expertise
    http://kb2.adobe.com/community/publishing/851/cpsid_85114.html
    http://kb2.adobe.com/community/publishing/851/cpsid_85127.html
    http://kb2.adobe.com/community/publishing/851/cpsid_85128.html
    Thanks,
    Garry

  • Does anyone know if it is possible receiving a signature on the quickbooks mobile or if there is an app that i need to dowmload that will allow it i also have go payment it will accept a signature i just need a signature on an invoice so i can email

    does anyone know if it is possible receiving a signature on the quickbooks mobile or if there is an app that i need to dowmload that will allow it i also have go payment it will accept a signature i just need a signature on an invoice so i can email

    No one here would be privi to Apple's plans on the matter. Submit your feedback to Apple requesting such a feature:
    http://www.apple.com/feedback
    In the interim, there is a reminder program for pretty much every need and taste in the App Store.

Maybe you are looking for

  • SFTP adapter - missing maverick java classes

    Hi We have using the BPEL PM Developer (10.1.3.1). We have tried to use the SFTP with the FTP Adapter. We configured the oc4j_ra.xml file, but after creating a sample BPEL process with the FTP adapter we got this error message in the log file: "Missi

  • Hiding Username and Password in Web Report URL

    Hi there, I am calling a report from my webforms using the WEB.SHOW_DOCUMENT built-in. The problem is that when using this, when the report or the parameter form is being displayed on the browser, the username and password is also displayed on the br

  • Table report painter

    Hi, i need a table name for element definition that linked to characteristic inside, is there any body now name of the tables?? many thanks

  • Drill down Report in Xcelsius

    Hi All, I am new to BO i dont know much in BO.Is it possible to create Drill down Reports in Xcelsius. For Example, Sales Org     Revenue A                   10000 B                    20000 If we select Sales Organization A or B then the Report woul

  • How I got Flash Player 9 fixed

    I got Flash Player 9 fixed after trying all kinds of things in these posts.. I had the problem where I would see the quote mark " instated of the content at the download installation page I'm running Windows XP media edition Here is what I did to get