Extensions for "State" and "Country"

At one time I thought I saw free extensions or snippets for
drop down boxes to be used in input forms, but cannot find them
now. I am looking for drop down boxes for US states and one for
countries. I could always type them in by hand, but it would be
much easier if someone already had that.

Did you check the Adobe Exchange?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"Mr. Brownie" <[email protected]> wrote in
message
news:ep7f8u$kq4$[email protected]..
> At one time I thought I saw free extensions or snippets
for drop down
> boxes to
> be used in input forms, but cannot find them now. I am
looking for drop
> down
> boxes for US states and one for countries. I could
always type them in by
> hand, but it would be much easier if someone already had
that.
>

Similar Messages

  • Invoice ship to State and Country

    For a query I am doing, I need to be able to get the state and country out of the oinv.address2 field which stores the state and country as part of the complete address file.
    For example:
    121 Any Street Cleveland,OH 44111 USA
    Is there a way of getting the state (OH) and USA
    Has anyone done this?

    The brackets are there because you wrote it there too
    Without brackets is as
    select
    coalesce(
    substring(
    substring(address2,
    charindex(',' ,address2, 0) + 1, len(address2)
    ), 0, charindex(' ', address2,0) - 1)
    , '')   as state
    from oinv
    For country use
    select
    coalesce(
    ltrim(substring(
    substring(
    substring(address2,
    charindex(',' ,address2, 0) + 1, len(address2)
    ), 5, 100)
    , charindex(' ',
    substring(
    substring(address2,
    charindex(',' ,address2, 0) + 1, len(address2)
    ), 5, 100)
    ) ,100
    , '')   as country
    from oinv
    if helps reward points or let me know the problem

  • I Can't download WhatsApp. I am in Dubai and asking for state and zip

    I am in UAE and i want to download whatsapp but when i give credit card details he is asking for state and Zip. Then credit card department called me and told me you are using USA website use UAE website for downloading. how can i use UAE website.

    You have to create an iTunes Account on  the iTunes UAE Store, if had an USA iTunes Account you must insert USA Address.
    Anyway here is the UAE iTunes Store Link try to create an account from there
    https://itunes.apple.com/WebObjects/MZStore.woa/wa/switchToStoreFront?l=it&store FrontId=143481
    I hope that this will help you

  • User - defined functions for calculating the taxes of state and country

    hi expects,
        how can write user-defined function in message mapping in which i want to calculate the states taxes (2500) and country taxes (5000) and give the result as grand total in output.please help me?

    Hi,
    Activities
    1. To create a new user-defined function, in the data-flow editor, choose Create New Function (This
    graphic is explained in the accompanying text), which is located on the lower left-hand side of the
    screen. In the menu, choose Simple Function or Advanced Function.
    2. In the window that appears, specify the attributes of the new function:
    Name
    Technical name of the function. The name is displayed in the function chooser and on the data-flow
    object.
    Description
    Description of how the function is used.
    Cache
    Function type (see above)
    Argument Count
    In this table, you specify the number of input values the function can process, and name them. All
    functions are of type String.
    3. In the window that appears, you can create Java source code:
    a. You can import Java packages to your methods from the Imports input field, by specifying them
    separated by a comma or semi-colon:
    You do not need to import the packages java.lang., java.util., java.io., and java.lang.reflect. since
    all message mappings require these packages and therefore import them. You should be able to
    access standard JDK and J2EE packages of the SAP Web Application Server by simply specifying the
    package under Import. In other words, you do not have to import it as an archive into the Integration
    Repository. You can also access classes of the SAP XML Toolkit, the SAP Java Connector, and the
    SAP Logging Service (see also: Runtime Environment (Java-Mappings)).
    In addition to the standard packages, you can also specify Java packages that you have imported as
    archives and that are located in the same, or in an underlying software component version as the
    message mapping.
    b. Create your Java source text in the editor window or copy source text from another editor.
    4. Confirm with Save and Close.
    5. User-defined functions are limited to the message mapping in which you created the function. To
    save the new function, save the message mapping.
    6. To test the function, use the test environment.
    The new function is now visible in the User-Defined function category. When you select this category,
    a corresponding button is displayed in the function chooser pushbutton bar. To edit, delete, or add the
    function to the data-flow editor, choose the arrow next to the button and select from the list box
    displayed.
    Regards
    Seshagiri

  • Do we need to create distinct extensions for CC and CC2014

    I am not using Extension Builder.
    If I am creating an HTML5 extension, do I need to create two distinct .zxps and manifest files for CC and CC2014? (Presuming there will be some users who continue to use CC for whatever reason).
    I guess I can specify a broad version range for the Host elements in the HostList in the manifest e.g. <Host Name="PHXS" Version="[14.0,15.9]"/>
    But looking at the RequiredRuntime:Version and ExtensionManager:Version in the manifests - I'm not quite sure what they mean and whether they preclude using a single manifest for both CC and CC2014.
    Thanks for any ideas.

    You can support CC and CC2014 but you need to develop for the earlier version e.g. CC and RequiredRuntime:Version 4.0. You are correct to extend the version range of the application to include both CC and CC2014 versions. We have many manifest examples that work for both CC and CC 2014 at: https://github.com/Adobe-CEP/Samples

  • Native Mobclix Extension for iOS and Android

    I'd like to announce to everyone that my Mobclix ANE for both iOS and Android is now available.
    You can view the API, supported events, and download a full functioning demo from http://www.airextensions.com or directly by clicking http://bit.ly/mobclixANE
    Support iOS 4.3 and greater,  support for iPad ad sizes, receive event callback on all Mobclix events in actionscript, AdMob and iAd support for iOS, same API for both iOS and Android, support device rotation and more.
    Hope you like it. 
    Mark Andrade
    Sputnik Games

    Well nothing prevent you from mixing flascc with native extension.
    Also, I think that you can also use domain memory in AS3 with the Bytearray class (not sure about that).
    Flascc vs normal as3 is mostly a question of language (portability) Do you want to write as3 or c++?
    Native extension give you speed and native platform access(platform specific feature).
    So, you should think about it this way:
    AS3, run in flash and air. Is sandboxed. Can use domain memory, but it's a bit harder to leverage than flascc.
    Flascc, run in flash and air. Is sandboxed, Can use domain memory. Give you the potential of leveraging the hundreds of opensources lib already out there.
    Native extension, run ONLY in air. Is not sandboxed. Native memory management. Also let you leverage the c++ lib. 
    The best (in my opinion) is to write native code for mobile and desktop (no air or flascc involve) and use flascc for the flash/web platform. It's harder, because you have write portable native code (lots of abstraction), but you mostly have the same problem with native extension.

  • Is there a extensions for master and details pages?

    I want to know if there is an extension for the master page and detail page for Cs4.  I want to display the master page and have separate details pages.  I am using PHP.  I haven't anything on PHP but I have for ASP.  Can any one help me?

    www.webassist.com if you don't mind spending a few pennies.

  • Want to use Reader Extensions for highlighting and adding comments

    Hi,
    The basic use for which we plan to use Adobe LiveCycle Reader Extensions is for highlighting and adding comments.
    In a J2EE application, we create PDF document at runtime using (PDFBox). The purpose to use Adobe LiveCycle Reader Extensions is when the end user sees the PDF created he/she should be able to add highlights and add comments to the PDF document and save it back to server.
    The question is what all I need to do. Just install Adobe LiveCycle Reader Extensions on the server. What should be done specifically when the PDF is created using PDFBox? Add any information to the PDF so that when PDF is viewed by the user he/she can add comments or highlight.
    Can I get sample application and I also need Developer Guide. I think Developer guide comes with the setup? Did not find any place where I can down load a demo setup of Adobe LiveCycle Reader Extensions.
    Can you please guide me in the right direction? I am collecting more information as I search the internet and go through the forum, but it will be very helpful if someone can give correct information.
    Thank You.
    Regards,
    Jay Chandran.

    Hi,
    I was reading Adobe Reader SDK document (Acrobat_SDK_overview.pdf), in that it is mentioned under
    About rights-enabled documents:
    You cannot programmatically rights-enable a PDF file.
    Well I am confused, because my requirement is like this:
    1. PDF is created using (PDFBox) as part in a J2EE application.
    2. After the PDF has been created, from the J2EE application, the PDF will be send to LiveCycle Extensions to right enable it. (There is no user interface, and it is planned to be done programatically using Adobe libraries. The PDF will be send to LiveCycle Server and Right Enabled PDF will be returned.)
    So if there is no way to "programmatically rights-enable a PDF file", how can it be done without having an web interface?
    Just to confirm, PDF can be prgramatically right-enabled using LiveCycle libraries right? I have to right enable PDF files prgramatically and not using LiveCycle web interface.
    Thank You.
    Regards,
    Jay Chandran.

  • No email option in Delivery Extension for SP2010 and SSRS integrated mode

    I just set up SSRS R2 in integrated mode with SharePoint 2010. When I went in to setup a subscription, the only options I had under delivery extension were Windows File Share, SharePoint Library and Null Provider. Did I miss something on the setup to
    allow email as a delivery extension?
    Thanks!
    Frank
    Frank

    We faced the same issue today. We have SSRS 2012 in SharePoint 2013 integrated mode. We need to go to SSRS service application and click on manage. Then navigate to E - mail settings. Check the Use SMTP server and specify the Outbound SMTP server.

  • Storage location extension for Blocked and Quality inspection stocks

    Hi All,
    Could any one explain how to extend a Storage location (which is actually maintained for the Returns) to make use for the Blocked and Quality inspection stocks. Does this require any config settings.
    Thanks in advance.
    Kalyan

    Hi,
    Thanks for the Reply.
    Let me be more clear,in describing my requirement. Actually the present Storage location is maintained for only Returns. But in addition to this I require to make use of this storage location for the purpose of the maintianing Blocked Stock or QI stock.
    Therfore to achieve above what are necessary steps or do i need to maintain any config settings for this.
    Thank You,
    Kalyan.

  • To restore Actions extensions for good and other stuff

    go to Terminal and post this:
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchSe rvices.framework/support/lsregister -kill -seed
    if it doesn't have that specific directory try this:
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchSe rvices.framework/Versions/A/Support/lsregister -kill -seed
    once the scanning is done (can be short or long, depends on how heavy your system is) RESTART the computer.
    when you're back, go to Apple>system preferences>extensions.... guess who's there.
    I hope it helped.
    The Doctor.

    See my reply in your other thread. Re-reading this post I do get the impression, though, that you are messing up the frame rates somehow and thus run into problems...
    Mylenium

  • I have installed the ewoq extension for mobiles and i can see it is instaled in the add on box and yet i cant see it in my pull down menu so that i can select and use tis

    it is there and i am using an earlier version of firefox just the option to use the tools menus and select mobile/destop is not there

    they made the usb camera kit because it does support usb masstorage
    usb is just a connection and drivers are required for everything some drivers are generic like mass storage
    most are not and require the manufactor to make a device driver
    but ios devices don't support 3th party device drivers so you're stuck with the build in ones
    like mass storage
    if you look into the range of supported bluetooth profiles of ios devices you will find the same problem

  • HTML5 Extensions for Photoshop CS5 and above ?

    Hi guys,
    I am trying to get into developing HTML5 extensions for Photoshop, and I'm a little confused about the compatibility of this kind of extension across the different versions.
    I have downloaded this starting point code (hallodom/photoshop-extension-example · GitHub) and it runs without problems on Photoshop CC. I just added the manifest.xml file in a CSXS folder, based on what I got from a dummy projet I created with Extension Builder 3.
    Now I have tried to make this work in CC 2014, without success. All I did is move the extension from the CEPServiceManager4 folder to simply CEP, and update this part of the manifest.xml :
    <HostList>
      <Host Name="PHSP" Version="[15.0,15.9]" />
      <Host Name="PHXS" Version="[15.0,15.9]" />
    </HostList>
    The extension appears in the Extensions menu, but when I launch it, the panel appears but is empty, and I get the following error message :
    Cannot complete command because the extension could not be loaded.
    Also I wanted to know if this kind of extension can be used on CS5, CS6 ? I really would like to make an extension that works at least from CS5 and above.
    Thanks for your help!

    Hi,
    You should probably set the Debug Flag for CC 2014 too, see instruction here:
    undavide/PS-Panels-Boilerplate · GitHub
    (PS: HTML extensions are for CC onwards, not CS6 and previous versions)
    Regards
    Davide Barranca
    www.davidebarranca.com
    www.cs-extensions.com

  • How to add new picklist value to states and countries to Address object

    Hi,
    I like to query and update picklists, state and country, in the address. What're the record type and filed name for them?
    I tried record type, Address and field name, State and Country, with no luck.
    Thanks

    Hi,
    As far as I know you cannot modify the address object at this point of time.
    If you want to add values or modify the picklists for State & Country, you would need to use custom fields and add all required values and then use those fields. (You can remove the Addres Object completely from the layout and then substitue it with the custom picklists that you have designed - possibly cascading picklists with Country as parent and State as child )
    Hope it helps.

  • Announcement: OrindaBuild 5.0 Extension for SQL Developer 1.5.1

    Folks,
    OrindaBuild is now available as an extension for SQL Developer 1.5.1.
    OrindaBuild creates Java source code to run your existing PL/SQL. This is a non-trivial task and for large projects can consume hundreds on man hours as well as delay development.
    OrindaBuild does roughly the same thing that JPublisher does, but writes human readable code, doesn't need SQLJ and doesn't require that you use oracle TYPE objects as parameters for records and arrays.
    Another way of thinking of OrindaBuild is "We reach that parts of your application that Hibernate can't".
    OrindaBuild is available as extensions for JDeveloper and SQL Developer 1.1. After an unreasonably long gestation OrindaBuild is now available as an extension for SQL Developer 1.5.1 The delay has been caused by us rewriting both the JDeveloper and SQL Developer extensions so that code base has now been unforked. We've also standardized the functionality with that of our recently upgraded Eclipse extension.
    To install the demo select 'Help/Check for updates' and then use the 'Add' button to create an update center for Orinda Software using this URL:
    http://www.orindasoft.com/public/sqldev15Center.xml
    Functionality:
    The demo version is fully playable, with the only limitation being that it expires after 1 month. You can install the demo multiple times.
    In addition to generating Java to call PL/SQL it also allows you to create code to run any SQL statement and access database tables.
    OrindaBuild generates code for PL/SQL procedures that take %ROWTYPE and Package Records as parameters. Generated code uses a library. If you buy OrindaBuild you get the source code for the library and end up with a 100% source code solution - i.e. there are no mysterious runtime binary dependencies.
    Limitations:
    The extension does not work with versions of SQLDeveloper prior to 1.5.1 (build 5440). We expect you to buy a licence if you deploy generated code in a production environment.
    For more information see
    http://www.orindasoft.com/public/sdefeatures.php4
    David Rolfe

    It is possible that the patch has replaced you shortcut with one pointing to the version within the 11g home. Try running sqldeveloper directly from the executable in the 151 directory.

Maybe you are looking for

  • Printing from a Mac to a Windows XP printer through a wireless router

    I have searched through many posts and still cannont come up with an answer. I have a Lexmark X5100 printer connected to an XP PC in my home. My iMac is recieving internet wirelessly from a router connected to the PC. I am trying to figure out how to

  • Missing line on next page of Smarf Form - SAP bug?

    Hello! I have a Smart Form which prints whatever items in main window. However, on next page (second and others), <u>sometimes</u> the first item line under the table header is not visible. The space is there, but no content. This happens only occasi

  • How to convert Oracle 10g Database to Oracle ASM Database?

    Please guide how to do this... Thanks, Waheed.

  • CreateObject: web service object

    This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6 978.html

  • Advanced search based on term set

    I have a picture library where I use a term set to tag photos. The managed property is called owstaxIdCuisine. When I perform a keyword search using one term from the term set (e.g. "vegetarian"), I would expect the pictures tagged with this term to