IFrame in extension

Shipping panels means we have to distribute cide which means it's less SaaSy. I am wondering if anyone has built an HTML extension that loads in an external iFrame (so it can be updated quickly) and can still communicate with jsx files?
Kai

Hi,
What you need to do is to make an ajax request which fetches the JS code, and, if you like to dynamically load ExtendScript, then eval the extend script code in the extension. You would end up with JS code (dynamically loaded) that can call ExtendScript (dynamically loaded or not).
Best regards,
Hallgrimur
Hallgrimur Th. Bjornsson | Product Manager | Adobe | Tel: +44 (0) 1314582787

Similar Messages

  • Web browser capability in an extension

    I am writing an extension, for which I need to embed a html browser component in the html pages of the extension.
    Have tried the following without any success
    1. Used with a simple <iframe> - looks like DW does nto support iframe in extensions.
    2. Tried to embed an applet that has web browsing capability (JDIC)
    3. Adobe AIR app (using mx:HTML component) - but running an AIR app inside a browser requires the user to have AIR runtime also.
    4. Adobe Flex app that inernally used iframe inside the swf file.
    1,2,4 works when I open the html in browser, but not within DW.
    Today i came across this link -
    http://livedocs.adobe.com/en_US/Dreamweaver/9.0_Extending/help.html?content=dwr_extending_ ex_09.html
    - that clearly says that DW does not support applets and ActiveX in extensions.
    So, how do i go about with my objective ? Are there any ways i could do this.
    Plz help.
    - Ganesh

    Hi
    Could you give a little more info in the way of detail(s), on exactly what you are trying to do.
    If the info would give too many details away, you can send a reply through the personal messages section from your profile.
    PZ

  • Step 11 of webcenter tutorial portlets Interaction is not working

    I completed the tutorial. Everything worked except for the interaction between the portlets. When I click on Show Details on the Products portlets nothing changes in the Product Information portlet!?
    I reviewed and validated that all steps were done as described but couldn't get the interaction to work.
    1. Ran MyTutorialPortlets view.jsp page and data was displayed correctly.
    2.The webcenter MyPage.jspx shows both portlets with data displayed correctly on initial display. And the partialTriggers on second portlet references the id of the first portlet (no colons were used)
    3. MyTutorialPortlet's oracle-portlet.xml has the productID as a parameter
    Here is the all the relevent code that will help in identifying the error:
    MyTutorialPortlet's oracle-portlet.xml seems correct:
    <portlet-app-extension xmlns="http://xmlns.oracle.com/portlet/oracle-portlet-app">
    <portlet-extension>
    <portlet-name>Products</portlet-name>
    <navigation-parameters>
    <name>productID</name>
    <type xmlns:xsd="http://www.w3.org/2001/XMLSchema">xsd:string</type>
    <label xml:lang="en-US">Product ID</label>
    <hint xml:lang="en-US">Enter Product ID</hint>
    </navigation-parameters>
    <portlet-id>1291666545877</portlet-id>
    <allow-export>true</allow-export>
    <allow-import>true</allow-import>
    <require-iframe>false</require-iframe>
    </portlet-extension>
    <allow-export>true</allow-export>
    <allow-import>true</allow-import>
    </portlet-app-extension>
    MyPage.jspx
    <adfp:portlet value="#{bindings.Products1_1}"
    id="portlet1" background="dark"/>
    <adfp:portlet value="#{bindings.OmniPortlet1_1}"
    id="portlet2" height="230px"
    partialTriggers="portlet1"
    background="dark"/>
    MyPagePageDef.xml
    <parameters/>
    <executables>
    <variableIterator id="variables">
    <variable Name="Products1_1_productID" Type="java.lang.Object"/>
    <variable Name="OmniPortlet1_1_Param1" Type="java.lang.Object"/>
    <variable Name="OmniPortlet1_1_Param2" Type="java.lang.Object"/>
    <variable Name="OmniPortlet1_1_Param3" Type="java.lang.Object"/>
    <variable Name="OmniPortlet1_1_Param4" Type="java.lang.Object"/>
    <variable Name="OmniPortlet1_1_Param5" Type="java.lang.Object"/>
    </variableIterator>
    <portlet id="Products1_1"
    portletInstance="/oracle/adf/portlet/ProductsWSRPProducer/ap/Ei1291666545877default_c189133b_012c_1000_8001_0a0a0a0c1cb8"
    class="oracle.adf.model.portlet.binding.PortletBinding"
    retainPortletHeader="false"
    xmlns="http://xmlns.oracle.com/portlet/bindings">
    <parameters>
    <parameter name="productID" pageVariable="Products1_1_productID"/>
    </parameters>
    <events>
    <event name="Products1_1_Event" eventType="ParametersChange"/>
    </events>
    </portlet>
    <portlet id="OmniPortlet1_1"
    portletInstance="/oracle/adf/portlet/OmniProducer/ap/Portlet100_c1b2d1c1_012c_1000_8002_0a0a0a0c1cb8"
    class="oracle.adf.model.portlet.binding.PortletBinding"
    retainPortletHeader="false"
    xmlns="http://xmlns.oracle.com/portlet/bindings">
    <parameters>
    <parameter name="Param1" pageVariable="Products1_1_productID"/>
    <parameter name="Param2" pageVariable="OmniPortlet1_1_Param2"/>
    <parameter name="Param3" pageVariable="OmniPortlet1_1_Param3"/>
    <parameter name="Param4" pageVariable="OmniPortlet1_1_Param4"/>
    <parameter name="Param5" pageVariable="OmniPortlet1_1_Param5"/>
    </parameters>
    <events>
    <event name="OmniPortlet1_1_Event" eventType="ParametersChange"/>
    </events>
    </portlet>
    Please see if you can provide a solution.
    Thanks

    Here is the code.
    // Form field names
    public static final String PARAMETER1 = "productId";
    public static final String FORM_PARAMETER1 = "form_Parameter1";
    public static final String FORM_SUBMIT = "dosub";
    // Portlet Modes
    public static final String MODE_NAME_PARAM = "mode";
    public static final String MODE_VIEW = "view";
    public void processAction(ActionRequest request,
    ActionResponse response) throws PortletException,
    IOException {
    // Determine what kind of action we have by examining the mode parameter
    boolean viewMode =
    MODE_VIEW.equals(request.getParameter(MODE_NAME_PARAM));
    // Extract the form field parameter and pass it through as a portlet parameter
    String param1 = request.getParameter(FORM_PARAMETER1);
    if (param1 == null) {
    param1 = ProductsBean.DEFAULT_PRODUCT_ID;
    if (viewMode) {
    // Set the new parameter values. These will be intepreted by the
    // container as navigational parameters as the names match the names of
    // the declared parameters.
    response.setRenderParameter(PARAMETER1, param1);
    } else {
    // Determine which action.
    String okAction = request.getParameter(OK_ACTION);
    String applyAction = request.getParameter(APPLY_ACTION);
    if (okAction != null || applyAction != null) {
    // Save the preferences.
    PortletPreferences prefs = request.getPreferences();
    String param = request.getParameter(PORTLETTITLE_KEY);
    prefs.setValues(PORTLETTITLE_KEY, buildValueArray(param));
    prefs.store();
    if (okAction != null) {
    response.setPortletMode(PortletMode.VIEW);
    response.setWindowState(WindowState.NORMAL);
    Thanks

  • Is there a practical and effective iFrame extension for DW CS5 ?

    I have been looking for a oractical and effective iFrame extension for CS5.
    There used to be an excellent one years ago for DW4 and some other versions, that manipulated the iLayer properties inspector so that you had complete and thorough control over all aspects of you iFrame from just one tool bar/property inspector. This was a free given away extension, but absolutely superb in its function and precticality.
    Does anyone know of anything similar for todays versions of DW ?

    I code my own which is very simple with the <iframe> tag.
    http://www.w3schools.com/html/html_iframe.asp
    Four Level offers this extension for DW CS5
    http://www.fourlevel.com/product/iframe/
    Nancy O.

  • Cannot get Extensions with iFrames to work under Windows

    Currently we are unable to add an iFrame to the main HTML panel without the Windows version of Adobe InDesign closing the extension automatically.  This works correctly on the MAC.

    Hi!
    I would suggest the following:
    Insert your Snow Leopard disk, when you are in Windows 7. Install the Bootcamp 3.0 drivers.
    Then restart your computer into Windows 7 and apply the Bootcamp 3.1 update.
    Then, you can try again running Starcraft 2 beta. However, you can not be sure that this beta version
    will be running.
    With regards,
    Dagd

  • Cannot get Adobe Extension Builder Extensions with iFrames to work under Windows

    Currently we are unable to add an iFrame to the main HTML panel without the Windows version of Adobe InDesign closing the extension automatically.  This works correctly on the MAC.

    Okay, for anyone that is also having this problem I believe I figured out the problem. Adobe files are saved under .xpi extensions which is just another type of .zip file. If you do not have winzip installed you cannot install flash player. I now have mine working. Good luck!
    www.winzip.com

  • Photoshop HTML5 extension caches iframe all the time

    I have HTML5 extension in Photoshop CC.
    Adobe Photoshop Version: 14.2.1 (14.2.1 20140207.r.570 2014/02/07:23:00:00) x64
    Operating System: Mac OS 10.9.2
    In my extension I have iframe that points to some extrnal address.
    For some reason PS caches this iframe and does not want to load newest versions of files...
    For example this is index.html that is loaded in iframe:
    <html>
    <head>
    <script src="myscript.js">
    </head>
    <body>
    </body>
    </html>
    When I open extension then myscript.js is loaded properly in iframe.
    Then I upload new version of myscript.js to my server.
    When I restart photoshop and iframe is loaded, the old version of myscript.js is loaded.
    I am sure that myscript.js is not cached on server because when I visit myserver.com/myscript.js in chrome for example I see new version of file.
    And when I debug extension (using CEF debug mode - it looks exacly like chrome debugger) under "network" tab I can see that myscript.js is loaded, but when I preview it, it is still old version of file.
    Is there any option to stop caching on PS side?

    I have exactly the same problem, but In Premiere.
    Did you manage to solve this?
    Thanks,
    Jeff.

  • When I check the content in a test server I get this: ssl_error_bad_cert_domain and the option to accept, but in a iframe I get the same error but theres not op

    I work in an international company and we have a server farm with 54 servers, so I need check content in all of them for 118 countries, I created a little application to do this and the problem is this:
    When I check the url in the main window I get: "Error: ssl_error_bad_cert_domain" but there is "add exception" option and the problem ends there. But my application loads the pages within an iframe and when I try to load them the error appears but there is not any option to continue.
    Could you tell me please which option of the configuration (about:config) I should change to avoid this, because adding an certificate for every country for every server (6372 certificates) it's not an option for me.
    *Note: The error appears because the dns of such servers have several subdomains and the certificate is not valid for the resultant url.

    Facebook uses such servers to store additional content media files and maybe CSS and JavaScript files.
    Reload web page(s) and bypass the cache.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Cmd + Shift + R" (MAC)
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • Opening a link from one iframe into another

    Hello,
    I have a web template in which there are three iframes. Each Iframe has a different web template embedded in it. I want to open a link present in one iframe into another.
    Example:
    iframe 1 (id: left) contains a link google dot com (or a link to a different web template)
    when i click on the link, i want this page to open in iframe 2 (id: right)
    Can anyone help me on how this can be done? I'm working in WAD7.0 and hence iframes.
    Another question related to this is:
    Can we create resizable iframes? In the older version of WAD, HTML was used and this was possible through framesets.
    In NEW WAD 7.0, XHTML does not support framesets. So is there any other way to do it?
    Regards,
    Sameer

    Either file is corrupt, theres' a corresponding .idlk file in the same folder, or it isn't really an indesign file.
    How was the file transfered? What is the file extension?

  • PDF in IFrame

    Hello,
    i have created a WD with a iFrame UI. My purpose is to show only the first site of my pdf-document without the functions for scrolling, saving etc.. Is there any way to do this? Until now i used the code below to display the pdf.
    regards,
    Sharam
         String pdfUrl = null;
         try
              pdfUrl =
                   WDWebResource
                        .getWebResource(wdComponentAPI.getDeployableObjectPart(), WDWebResourceType.PDF, "p1.pdf")
                        .getURL();
         catch (Exception e)
              IWDMessageManager manager = wdComponentAPI.getMessageManager();
              manager.reportException("could not get WebResourceURL" + e.getMessage(), false);
         wdContext.currentContextElement().setPdfUrl(pdfUrl); 

    Hi Sharam Pourmir,
    Try to put the pdf file under your <project name>/src/mimes/Components/<component name>
    In the IFrame just write the file's name in the 'src' property (name & extension are case sensitive).
    It should work.
    Omri

  • BSP extension "download" - event handling problem

    Folks,
    First of all, I apologize if the answer is already out there, but I spent quite some time to find the solution for my problem but finally gave up:
    I implemented the Download extension from Brian's and Tom's book. Since I am using an MVC based app, I put the event handling in the DO_HANDLE_EVENT of a controller instead of the OnInputProcessing event of a page. Here's how my app is designed:
    I have a main controller that has an execute button to trigger a data selection based on some selection criteria. The result of this selection is displayed by means of a subcontroller with tableviews that are wrapped into my “zdownload” extension. Everything works fine: I make my selections, execute the app through the button of the main controller and get my result shown in the tableviews. I push the download icon, select my file format (XLS, HTML etc), get the dialog to choose whether to download or to display the file, perfect!
    But now – after I processed the download successfully - if I click the execute button in the main controller again, I still get the download dialog. It looks like the created event for the download does not get cleared. As I mentioned, I searched through SDN, but all I found were referrals to the call of DISPATCH_INPUT( ) in DO_REQUEST of the main controller, but unfortunately this one is already implemented.
    Any ideas?
    Thanks,
    Guenther

    There is an attribute of the download extension called display_url. You pass a value to the extension telling it what cached URL contains the binary content for your download.  if this display_url attribute has a value assigned to it, then the element will render an iFrame to call the URl.  However if the display_url attribute is empty, it won't render the iFrame.  I suspect that you have a stateful application and after your download event you aren't clearing whatever field that you pass into the display_url attribute.

  • Issues with iFrame elements in Illustrator

    Currently I'm having issues with adding an iFrame element to an extension run in Illustrator.
    I'm using Eclipse 4.3 to run extension build 3, release 3.  I've created the basic project, and I get the extension to function correctly when there's just the basic button.  Further I can make changes to the button (change the text) and it continues to work.
    However, when I add an iFrame element to the extension it seems to crash.  The extension window opens and then immediately closes.  There are no error messages from Illustrator, nor are there any errors in any log files from adobe/illustrator.
    Here is the line I'm attempting to add to the basic starter application in the index.html file:
    <iframe src="http://localhost:8080/tests/testfixture/" width="150" height="150"></iframe>
    Also I can manually load index.html file and it works correctly when opened by Chrome.
    I am using Illustrator CC 17.1.0 32/64 bit.

    Currently I'm having issues with adding an iFrame element to an extension run in Illustrator.
    I'm using Eclipse 4.3 to run extension build 3, release 3.  I've created the basic project, and I get the extension to function correctly when there's just the basic button.  Further I can make changes to the button (change the text) and it continues to work.
    However, when I add an iFrame element to the extension it seems to crash.  The extension window opens and then immediately closes.  There are no error messages from Illustrator, nor are there any errors in any log files from adobe/illustrator.
    Here is the line I'm attempting to add to the basic starter application in the index.html file:
    <iframe src="http://localhost:8080/tests/testfixture/" width="150" height="150"></iframe>
    Also I can manually load index.html file and it works correctly when opened by Chrome.
    I am using Illustrator CC 17.1.0 32/64 bit.

  • URL extensions for embed (E ) arent working in IE7

    I have a movie using QTNEXT and HREF/AUTOHREF to send related pages into IFRAMEs on the page. the QTNEXT params are working just fine in IE7, in that it plays all movies sequentially, but the URL extensions to change the HREF and other options like the controller aren't working at all. Here's the IE7 object code:
    <OBJECT classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab' width='320' height='260' id='qtMovie'>
    <PARAM name="src" value="movie1.mov"/>
    <PARAM name="AUTOPLAY" value="true"/>
    <PARAM name="CONTROLLER" value="false"/>
    <PARAM name="CACHE" value="false"/>
    <PARAM name="enablejavascript" value="true"/>
    <PARAM name="HREF" VALUE="page1.html"/>
    <PARAM name="AUTOHREF" VALUE="true"/>
    <PARAM name="TARGET" VALUE="frame1"/>
    <PARAM name="QTNEXT1" VALUE="<movie2.mov> T<myself> E<AUTOHREF=true HREF=page2.html CONTROLLER=false TARGET=frame2>">
    <PARAM name="QTNEXT2" VALUE="<movie3.mov> T<myself> E<AUTOHREF=true HREF=page3.html TARGET=frame1>">
    <PARAM name="QTNEXT3" VALUE="<movie4.mov> T<myself> E<CONTROLLER=true>">
    </OBJECT>
    If I do the same thing is firefox, using embed, it all works fine:
    <EMBED type="video/quicktime" width="320" height="260" pluginspage="http://www.apple.com/quicktime/download/" id='qtMovie' enablejavascript="true" controller="false" src="movie1.mov" href="page1.html" target="frame1" autohref="true" autoplay="true" cache="false" AllowEmbedTagOverrides="true" QTNEXT1="<movie2.mov> T<myself> E<AUTOHREF=true HREF=page2.html CONTROLLER=false TARGET=frame2>" QTNEXT2="<movie3.mov> T<myself> E<AUTOHREF=true HREF=page3.html TARGET=frame1 >" QTNEXT3="<movie4.mov> T<myself> E<CONTROLLER=true >"></EMBED>
    It seems like for some reason the "E" extension isnt being read by IE7. I'm using qt 7.1.5.
    thanks.

    I haven't heard a report that IE7 has trouble with QT's embed tag though I'm not so attentive since I don't use IE any more. I know that it may have trouble with Flash's embed tag, in which case, for example, if you use Adobe dreamweaver, you can insert an additional java script (AC_RunActiveContent.js) to make it possible for IE users to read Flash movies. You may perhaps want to address your issue at forums for your web application.

  • Need help with set up for extensions

    I'm new to OA Framework development and am just ramping up (do have years of Java development experience) and could use some help. I've read through the OA Framework Developer Guide and gone through a few of the tutorials. My task is to add some extensions to the R12 Customer Standard pages.
    I've looked in the $JAVA_TOP at the following directory structure.
    /oracle/apps/ar/cusstd/...
    I find java classes and the server.xml files but there are no PG.xml files to work with. Are these located in a different structure? What is the best approach to obtaining the base Oracle source files to start with and for configuring your local development environment to extend R12 OA Framework pages? Do you need to include the entire $JAVA_TOP in your development client environment classpath as well?
    Thanks in advance!

    To run the oracle seeded party create/update page, you can refer &lt;&lt;your Jdeveloper Installation directory&gt;&gt;\jdevhome\jdev\myhtml\OA_HTML\test_fwktutorial.jsp.
    Create a new custom jsp similar to test_fwktutorial.jsp. Modify this JSP based on your environment and user setup. Modify the links also. With this, you should run this jsp first. By clicking the link in the JSP run, you can launch party create page.
    The error you posted in RED color is thrown because you are trying to modify the web bean hierarchy in the processFormData method. Example, setting some items property to rendered false or true. All these kind of modifications should be done in the proceeRequest method of the controller.
    Following is from DEV guide to launch the forms application.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Launching Oracle Applications Forms from OA Framework Pages
    To launch an Oracle Applications form from OA Framework, you must first define a button, link or image web
    bean. The web bean then relies on the FormsLauncher applet provided by Oracle Applications (AOL/J) to
    launch the specified form.
    Declarative Implementation
    Step 1: In the OA Extension Structure pane, select the region in which you want to create the web bean to
    launch an Oracle Applications form. Choose New > Item from the context menu.
    Step 2: Set the ID property for the item, in accordance with the OA Framework File Standards, and set the Item
    Style property to button, image, or link. You may also launch an Oracle Applications form from a submit
    button. See the Runtime Control section below for more details.
    Step 3: Set the Destination URI property of the item with a value following this format (replacing the italicized
    text as appropriate):
    form:responsibilityApplicationShortName:responsibilityKey:securityGroupKey:functionName
    For example, if you want to launch the FND Menus form, the Destination URI property should be set to:
    form:SYSADMIN:SYSTEM_ADMINISTRATOR:STANDARD:FND_FNDMNMNU
    Step 4: If you wish to pass parameters to the form, set the Destination URI property with a value using the
    following format (Note that the parameter list is delimited by a space between each "parameter=value" pair):
    form:responsibilityApplicationShortName:responsibilityKey:securityGroupKey:functionName:param1=
    value1 param2=value2 param3=value3
    Note: If you wish to send varchar2 parameter values that contain spaces, use \" to enclose the string value.
    For example, to pass in something of the form:
    TXN_NUMBER=LT INVOICE 1
    Use:
    TXN_NUMBER=\"LT INVOICE 1\"
    Step 5: Refer to the following Chapter 4 topics for information about additional properties you may need to set
    for the specific item: Buttons(Action/Navigation), Buttons (Links), or Images in Your Pages.
    *Runtime Control*
    There are no special programmatic steps necessary to launch an Oracle Applications form from a button,
    image, or link in an OA Framework page. The OAButtonBean, OALinkBean and OAImageBean support the
    special form function URL format described above for the Destination URI property. When OA Framework
    encounters this special value, it generates the appropriate URL and also adds a hidden IFrame (inline frame)
    to the OA Framework page. The hidden IFrame is the target of the FormsLauncher applet provided by Oracle
    Applications.
    Launching an Oracle Applications Form From a Submit Button
    If you wish to launch an Oracle Applications form from a submit button in an OA Framework page, you must
    use the OAPageContext.forwardImmediatelyToForm(String url) method from
    548
    oracle.apps.fnd.framework.webui.OAPageContext. An example of how to use this API is shown in the code
    sample below:
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    if (pageContext.getParameter("Apply")!=null)
    String destination =
    "form:SYSADMIN:SYSTEM_ADMINISTRATOR:STANDARD:FND_FNDMNMNU";
    pageContext.forwardImmediatelyToForm(destination);
    *Usage Notes*
    Microsoft Internet Explorer supports the IFrame element, so when you launch an Oracle Applications form from
    OA Framework, only a splash window appears. Any other windows required by the FormsLauncher applet
    use(s) the hidden IFrame as the target and therefore remain(s) hidden from the user. Netscape Navigator, on
    the other hand, does not support the IFrame element, so in addition to a splash window, the user also sees
    another window used by the FormsLauncher applet.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    let me know if you got struck.

  • Dynamic HTML Content in iFrames of a BSP application

    Hey Folks,
    I am currently having to build a context sensitive URL, which is built dynamically and accordingly load the page within a given view during runtime. The URL points to a simple HTML page.
    The application whcih is embedded in the view is a BSP application. The BSP application comprises of an iFrame which should hold the value of the URL built, within the attribute "src". Is there a way in which the value of this attribute "src" of the tag "iframe" can be populated during runtime for BSP applications?
    Please do let me know of your thoughts on this.
    Thanks and Best Regards,
    Puja.

    @Rodrigo,
    Did you make sure you have included the end tag </iframe>? am not sure about this, but maybe you would need to include the htmlb page extension too?
    <%@ extension name="htmlb" prefix="htmlb"%>
    @Others,
    My problem is that the BSP in question has been generated by a framework, the content of which i need to tweak programatically.
    I forgot to make a mention of the crutial aspect that, the Page Type of my BSP application is 'View'. I could have used the oninitialization event to my convinience , had the page type of the application been 'Page with Flow Logic'. I do not have the various event processing options such as 'onInputProcessing' or 'OnInitialization' or 'OnLayout' here which I can work upon.
    Has any body worked with BSPs of type 'View'. Any help would be much appreciated.
    Thanks and Best Regards,
    Puja.

Maybe you are looking for

  • For connection to 192.168.1.1

    Recently, I can not connect to the ip of 192.168.1.1. I can go into the internet. All my three computers can connect to the router via cable but only one computer can connect to it by wireless adapter. Also I can not succeed when to PING 192.168.1.1

  • DataGrid itemrenderer with switch statement

    Hi, I have datagrid control with this columns <mx:DataGrid id="dgvParagraphs" >     <mx:columns>         <mx:DataGridColumn dataField="type" headerText="Type"/>         <mx:DataGridColumn dataField="title" headerText="Title"/>         <mx:DataGridCol

  • Solaris 8 and iPlanet Directory Server 5.1: Help

    Could anyone help with advice or where to find documentation of how to setup a Solaris 8 client machine to authenticate against iPlanet Directory Server 5.1? The only documentation (eg books, BluePrint articles) I can find cover iPlanet Directory 4.1

  • Business area is mandatory when creating cost center

    Hi , I have an error while creating cost center. business area is a mandatory field when I am trying to create cost center. I want to make it ( business area ) optional . How it is ? Thanks

  • With one VI open, others do not function

    I have a VI that reads voltage from a Baratron gauge, and saves that and the time into a text file for spreadsheet use. If this VI is running then all other VI's either don't run or don't update. For instance, another VI runs 4 different mass flow co