'Forms' title on alert windows, can it be changed?

For Alerts, the default title in the upper left corner of the window displays 'Forms'. Is there any way to modify this to display something other than 'Forms'? I would like to change it to something such as 'Logoff alert', or 'delete customer alert' etc...
Thanks
Todd Janovicz

... and look at the other things you can do with set_alert_property.
It means you can reuse the same alert for different purposes rather than keep creating new ones.

Similar Messages

  • How Can I change the colour in title bar of Window in Form 9i

    Hello
    All,
    I want to change the colour of title bar in window ?
    how can I ?
    From
    Chriag Patel

    Chirag,
    this is not in a scope of control for Forms and instead determined by the look and feel.
    Frank

  • How i can display default error message in alert window

    how i can display default error message in alert window
    i.e.,
    i have a text field with datatype Alpha
    if i am giving numbers.etc then it is displaying
    FRM-50001: Acceptable characters are a-z,A-z and space
    I want to display this message in alert window
    please tell how to do this

    In the on-error trigger :
    Capture error_code and error_text in a variable.
    Set the alert title to something meaningful.
    Set the alert message equal to the captured error information.
    Display the alert.
    declare
    v_alert varchar2(100) := 'ERROR' ; -- name of alert to use
    v_title varchar2(100) := 'Error !' ; -- text to display as title
    v_msg varchar2(200) := error_code || ':' || error_text; -- message to display
    v_btn number ; -- button pressed
    begin
    set_alert_property( v_alert, TITLE, v_title );
    set_alert_property( v_alert, ALERT_MESSAGE_TEXT, v_msg );
    v_btn := show_alert( v_alert );
    end;
    ----------

  • How to get specific message on Alert Window as Window Title.

    Hi all,
    I want to know if it is possible to get Personal Message on Alert Window, instead of "Microsoft Internet Explorer" in JSP.
    Like on alert window , instead of "Microsoft Internet Explorer", I want to show "My Project" as Window Title.
    Thanks in advance.
    Jitin

    If you don't want it to say "Microsoft Internet Explorer," you can use a different browser. :-)
    But, seriously...
    If you really want to customize the appearance of a dialog, you can make one with DHTML that looks like anything you want. You can make it look like a system dialog if you want, but you don't have to. (In fact, if you make it look like a Windows dialog, it will stick out like a sore thumb if someone is using another OS.)
    I had to create some of these for an online testing application I wrote, because they wanted the tests to be timed, and I discovered that, in Internet Explorer, you could stop the clock just by opening certain dialogs, so I had to suppress "right-clicking," remove the menu bars, and use custom dialogs to communicate with the user. Since then I've re-used these dialogs in a number of other projects. They're pretty handy.

  • Display forms title as a part of IE window title

    Hi,
    Does anyone know how to display forms title as a part of IE window title in Webforms 10g?
    For example: if I am on the Order Entry form, the IE title would be Order Entry - Microsoft Internet Explorer.
    Thanks all,
    L

    Thanks Terrible :-)
    Yes, I did change the pageTitle in the formsweb.cfg to have the Application name. And you are right that is the one time only...
    I would like to somehow passing a forms title as a variable that is appended to the Application title at runtime.
    Gerd, you mention about the java applet which can interact back to the IE-engine. Have you done one before? I am new to this concept.
    Thanks all for your help :-)
    L

  • Can Install & Configure Forms & Reports 11g on Windows XP SP2 (32-bit)

    Hi All;
    can install & configure forms & reports 11g on windows xp sp2 (32-bit)
    regards

    Yes, Oracle Fusion Middleware (Forms/Reports) 11g is certified for Windows XP. Check out Oracle Fustion Middleware Supported System Configuations for more information.
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Acrobat XI standard (Windows) - can't save PDF Form in server

    We created a PDF Form (Acrobat 11 standard) and located in company server. After fill up, it will be close & saved by script. It is working for some persons, but few person face the problem when they save PDF form in server "The file may be read only or another user may have it open. Please save the document with a different name or in a different folder.". It is sure that others not opened PDF form parallely.
    Please guide how to solve this issues.

    The message is telling the user either another program has the file open or another user is using the form.
    Other programs that may trigger the file lock or form in use are Windows Explorer in the Preview mode, anti-virus software, or backup software. It is even possible that the server has lost track of the lock on the file.

  • Forms in a seperate Window / Frame  (Tip / Solution)

    Hello all,
    I think I have a nice solution for the problem to start Oracle Forms in a separate window without an additional Iexplorer Window (not working for Firefox ,
    Webstart is not possible because you don't get the env from default.env).
    So I tell you that, I hope it helps :
    What does the developer do.
    He uses a javascript to open new window and copy the original webutiljpi.htm into this new window. Then he closes the main window and reload the new one.
    That is all
    webutiljp_wini.htm
    <HTML>
    <!-- FILE: webutiljp_wini.htm (Oracle Forms) -->
    <!-- -->
    <!-- This is the default base HTML file for running a form on the -->
    <!-- web using the JDK Java Plugin. This is used for example when -->
    <!-- running with Netscape on Unix. -->
    <!-- and a certificate regsitration applet for the WebUtil utility -->
    <!-- -->
    <!-- IMPORTANT NOTES: -->
    <!-- Default values for all the variables which appear below -->
    <!-- (enclosed in percent characters) are defined in the servlet -->
    <!-- configuration file (formsweb.cfg). It is preferable to make -->
    <!-- changes in that file where possible, rather than this one. -->
    <!-- -->
    <!-- This file uses several extra tags that are not present in the -->
    <!-- default template files. You should ensure that these are -->
    <!-- present in the configuration that uses this template -->
    <!-- The extra substitution Tags are: -->
    <!-- %webUtilArchive% = jar file containing the WebUtil code -->
    <!-- (by default this should be frmwebutil.jar) -->
    <!-- %WebUtilLogging% = Defines the current logging mode. -->
    <!-- Valid values: off|on|console|server|all -->
    <!-- (on == console) -->
    <!-- %WebUtilLoggingDetail% = Specifies the level of error logging.-->
    <!-- Valid values: normal|detailed -->
    <!-- %WebUtilErrorMode% = Should errors be displayed in an alert -->
    <!-- as well as the programmer defined -->
    <!-- locations -->
    <!-- Valid values: console|server|alert|all -->
    <!-- %WebUtilDispatchMonitorInterval% = Counts in second to -->
    <!-- indicate how often the monitor thread -->
    <!-- checks to see if the Forms session is still-->
    <!-- alive. Used with the WebUtil_Session -->
    <!-- package. -->
    <!-- %WebUtilTrustInternal% = Should intranet without domain suffix-->
    <!-- be trusted. -->
    <!-- Valid values: true|yes|false|no -->
    <!-- %WebUtilMaxTransferSize% = Size in bytes of file transfer -->
    <!-- segments. Default and maximum allowed is -->
    <!-- 16384, i.e. 16K. -->
    <!-- <c> by Frank Hartmann -->
    <HEAD><TITLE>Loader</TITLE>
    <script language="javascript">
    function create_html(){
    var quellcode = ' @br@ \
    <HTML>@br@ \
    <HEAD><TITLE>%pageTitle% - WebUtil</TITLE>@br@ \
    <BODY %HTMLbodyAttrs%>@br@ \
    %HTMLbeforeForm%@br@ \
    <!-- Registration applet definition (start) -->@br@ \
    <OBJECT classid="%jpi_classid%"@br@ \
    codebase="%jpi_codebase%"@br@ \
    WIDTH="0"@br@ \
    HEIGHT="0"@br@ \
    HSPACE="0"@br@ \
    VSPACE="0">@br@ \
    <PARAM NAME="TYPE" VALUE="%jpi_mimetype%">@br@ \
    <PARAM NAME="CODEBASE" VALUE="%codebase%">@br@ \
    <PARAM NAME="CODE" VALUE="oracle.forms.webutil.common.RegisterWebUtil" >@br@ \
    <PARAM NAME="ARCHIVE" VALUE="%webUtilArchive%" >@br@ \
    <COMMENT>@br@ \
    @br@ \
    <EMBED SRC="" PLUGINSPAGE="%jpi_download_page%"@br@ \
    TYPE="%jpi_mimetype%"@br@ \
    java_codebase="%codebase%"@br@ \
    java_code="oracle.forms.webutil.common.RegisterWebUtil"@br@ \
    java_archive="%webUtilArchive%"@br@ \
    WIDTH="1"@br@ \
    HEIGHT="1"@br@ \
    HSPACE="0"@br@ \
    VSPACE="0"@br@ >@br@ \
    <NOEMBED>@br@ \
    </COMMENT>@br@ \
    </NOEMBED></EMBED>@br@ \
    </OBJECT>@br@ \
    <!-- Registration applet definition (end) -->@br@ \
    @br@ \
    <COMMENT id="forms_plugin_info" @br@ \
    plug_ver="%jpi_classid%" @br@ \
    appheight="%Height%"@br@ \
    appwidth="%Width%"@br@ \
    appcodebase="%jpi_codebase%">@br@ \
    </COMMENT>\
    @br@ \
    <!-- Forms applet definition (start) -->@br@ \
    <NOSCRIPT>@br@ \
    <OBJECT classid="%jpi_classid%"@br@ \
    codebase="%jpi_codebase%"@br@ \
    WIDTH="%Width%"@br@ \
    HEIGHT="%Height%"@br@ \
    HSPACE="0"@br@ \
    VSPACE="0">@br@ \
    </NOSCRIPT>@br@ \
    <!--xx<SCRIPT LANGUAGE="JavaScript" SRC="java/forms_ie.js"></SCRIPT>xx--> @br@ \
    <PARAM NAME="TYPE" VALUE="%jpi_mimetype%">@br@ \
    <PARAM NAME="CODEBASE" VALUE="%codebase%">@br@ \
    <PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >@br@ \
    <PARAM NAME="ARCHIVE" VALUE="%archive%,%webUtilArchive%" >@br@ \
    @br@ \
    <PARAM NAME="serverURL" VALUE="%serverURL%">@br@ \
    <PARAM NAME="networkRetries" VALUE="%networkRetries%">@br@ \
    <PARAM NAME="serverArgs"@br@ \
    VALUE="%escapeParams% module=%form% userid=%userid% sso_userid=%sso_userid% sso_formsid=%sso_formsid% sso_subDN=%sso_subDN% sso_usrDN=%sso_usrDN% debug=%debug% host=%host% port=%port% fontsize=%fontsize% bold=%bold% statusbar=%statusbar% fg_color=%fg_color% %otherParams%">@br@ \
    <PARAM NAME="separateFrame" VALUE="%separateFrame%">@br@ \
    <PARAM NAME="splashScreen" VALUE="%splashScreen%">@br@ \
    <PARAM NAME="background" VALUE="%background%">@br@ \
    <PARAM NAME="lookAndFeel" VALUE="%lookAndFeel%">@br@ \
    <PARAM NAME="colorScheme" VALUE="%colorScheme%">@br@ \
    <PARAM NAME="serverApp" VALUE="%serverApp%">@br@ \
    <PARAM NAME="logo" VALUE="%logo%">@br@ \
    <PARAM NAME="imageBase" VALUE="%imageBase%">@br@ \
    <PARAM NAME="formsMessageListener" VALUE="%formsMessageListener%">@br@ \
    <PARAM NAME="recordFileName" VALUE="%recordFileName%">@br@ \
    <PARAM NAME="EndUserMonitoringEnabled" VALUE="%EndUserMonitoringEnabled%">@br@ \
    <PARAM NAME="EndUserMonitoringURL" VALUE="%EndUserMonitoringURL%">@br@ \
    <PARAM NAME="heartBeat" VALUE="%heartBeat%">@br@ \
    <PARAM NAME="WebUtilLogging" VALUE="%WebUtilLogging%">@br@ \
    <PARAM NAME="WebUtilLoggingDetail" VALUE="%WebUtilLoggingDetail%">@br@ \
    <PARAM NAME="WebUtilErrorMode" VALUE="%WebUtilErrorMode%">@br@ \
    <PARAM NAME="WebUtilDispatchMonitorInterval" VALUE="%WebUtilDispatchMonitorInterval%">@br@ \
    <PARAM NAME="WebUtilTrustInternal" VALUE="%WebUtilTrustInternal%">@br@ \
    <PARAM NAME="WebUtilMaxTransferSize" VALUE="%WebUtilMaxTransferSize%">@br@ \
    <COMMENT> \
    <EMBED SRC="" PLUGINSPAGE="%jpi_download_page%"@br@ \
    TYPE="%jpi_mimetype%"@br@ \
    java_codebase="%codebase%"@br@ \
    java_code="oracle.forms.engine.Main"@br@ \
    java_archive="%archive%,%webUtilArchive%"@br@ \
    WIDTH="%Width%"@br@ \
    HEIGHT="%Height%"@br@ \
    HSPACE="0"@br@ \
    VSPACE="0"@br@ \
    @br@ \
    serverURL="%serverURL%"@br@ \
    networkRetries="%networkRetries%"@br@ \
    serverArgs="%escapeParams% module=%form% userid=%userid% sso_userid=%sso_userid% sso_formsid=%sso_formsid% sso_subDN=%sso_subDN% sso_usrDN=%sso_usrDN% debug=%debug% host=%host% port=%port% %otherparams%"@br@ \
    separateFrame="%separateFrame%"@br@ \
    splashScreen="%splashScreen%"@br@ \
    background="%background%"@br@ \
    lookAndFeel="%lookAndFeel%"@br@ \
    colorScheme="%colorScheme%"@br@ \
    serverApp="%serverApp%"@br@ \
    logo="%logo%"@br@ \
    imageBase="%imageBase%"@br@ \
    recordFileName="%recordFileName%"@br@ \
    EndUserMonitoringEnabled="%EndUserMonitoringEnabled%"@br@ \
    EndUserMonitoringURL="%EndUserMonitoringURL%"@br@ \
    heartBeat="%heartBeat%"@br@ \
    WebUtilLogging="%WebUtilLogging%"@br@ \
    WebUtilLoggingDetail="%WebUtilLoggingDetail%"@br@ \
    WebUtilErrormode="%WebUtilErrorMode%"@br@ \
    WebUtilDispatchMonitorInterval="%WebUtilDispatchMonitorInterval%"@br@ \
    WebUtilTrustInternal="%WebUtilTrustInternal%"@br@ \
    WebUtilMaxTransferSize="%WebUtilMaxTransferSize%"@br@>@br@ \
    <NOEMBED>@br@ \
    </COMMENT>@br@ \
    </NOEMBED></EMBED>@br@ \
    </OBJECT>@br@ \
    <!-- Forms applet definition (end) -->@br@ \
    @br@ \
    %HTMLafterForm%@br@ \
    @br@ \
    </BODY>@br@ \
    </HTML>@br@ \
    window.name='opener';
    nw=window.open('','_blank','locationbar=0,toolbar=0, resizable=1');
    quellcode=quellcode.replace(/<!--xx/,"");
    quellcode=quellcode.replace(/xx-->/,"");
    quellcode=quellcode.replace(/@br@/g,String.fromCharCode(13));
    nw.document.write(quellcode);
    main_window=window.open('blank:about','opener','');
    main_window.opener=self;
    main_window.close();
    //nw.opener=self;
    nw.document.location.reload();
    </script>
    </HEAD>
    <BODY onLoad=create_html()>
    </body>
    </html>
    Edited by: user4070147 on 30.10.2008 13:37
    Edited by: Ralf Flatau on 30.10.2008 14:03

    SITUATION:
    Usually the forms applet can be started with either 'separateFrame=true' (which will result in an internetexplorer-window being opened, followed by a second window containg the applet) or with 'separateFrame=false' (which will result in the applet being displayed within the standard internetexplorer-window).
    Disadvantages of the first method are:
    - two tasks visible in windows taskbar, potentialle irritating for customers as the IE-window doesn't seem to be good for anything
    - the applet will close/crash on the internetexplorer-window accidentally being closed or another URL being entered
    Main disadvantage of the second method is that so far we have not been able to hide this window's locationbar, menubar etc.
    SOLUTION:
    Via JavaScript it is possible to open and close windows and under certain circumstances it is possible to do this without a popup asking for acknowledgement of the action being raised.
    The JS-function works as follows:
    1) assign the original html-code to a variable
    2) assign a name (e.g. 'opener') to the current window
    3) open a blank page in a new window. For this window we do not specify a name as this would prevent us from being able to open several applets in different windows (i.e. starting a second applet would cause the first applet's window to be used and thus the first applet to be closed).
    4) next, we have to replace some substrings within our variable for parsing reasons
    5) write the variable's content to the new window
    6) open any page in the window named 'opener' (e.g. 'about:blank') and refer to this window's opener. These two steps enable us to close the window without a popup being displayed.
    7) now there's only our applet window being displayed. For some yet unknown reason, the applet itself won't be executed without a reload-command.
    Note: Working with IE7 (with multiple tabs), the '.close()'-operation will not close the IE-window but the current tab.
    CHANGES (HTML):
    Regarding the main changes, it's not really about the code of the standard HTML page but rather about displaying this page programmatically via javascript within a new window which therefore can be customized (menubar, locationbar, size, resizability etc.).
    So what we're doing is mainly creating a wrapper for the original HTML page.
    It might also be possible to have the standard HTML page's code in a separate file that is being loaded from within the script, but this would result in 2 files necessary (the wrapper script and the html page) and we haven't checked if the replacement of variables (%VARNAME%) that is done by forms will still work.

  • Message missing from alert box & Can you disable everything until user selects an answer?

    Question 1 - My alert box window is working, and the title and buttons function as they should, but does anyone know why my message is not showing up?
    Question 2 - How do you program the alert box window so that no other buttons on your application work until the user selects one of your alert window buttons? I can do this manually by setting everything to enabled = false, but I know this happens automatically every other time I've used the alert window component, but it's not working for me now.
    Question 3 - How can I prevent multiple alert windows from popping up? My alert comes up when a user clicks a button called 'Delete'. Would be solved if I had the answer to question 2.
    var myMess:String = '';
    var myTitle:String = '';
    function confirmDelete(){
        selectedAlt = list_dg.selectedItem.ALT_CODE;
        myMess = "Are you sure you want to delete this ALT code: "+selectedAlt+"?";
        myTitle = "Confirm Delete ALT Code Function                                                    ";
        var alertBox:Object = Alert.show(myMess,myTitle,Alert.YES|Alert.NO,this,deleteConfirmHandler);
        alertBox.setSize(450, 125);
    // HANDLER FOR CONFIRM DELETE ALT ALERT WINDOW
    deleteConfirmHandler = function(evt_obj:Object):Void {   
        var myAnswer = evt_obj.detail;
        // returns 1 if yes, 2 if no.
        if (myAnswer == 1){
                deleteAlt();
        else {   
            altDetail.moveAssign_btn.enabled       = false;
            altDetail.moveAvail_btn.enabled        = false;
            altDetail.avail_list.selectedIndex     = null;
            altDetail.assigned_list.selectedIndex  = null;

    I think you were on the right track, it did have something to do with the parent fla file. Once I complied it's parent file (and imported the window and alert classes into the parent), my message appeared in the alert box.
    It doesn't make any sense, because the component is not in the parent file, it's in the sub-parent fla file, but I guess you just have to compile all the files in the hierarchy for it to work... It also doesn't make sense why everything else worked before (the title, the yes and no buttons) except for the message.
    Thanks for the suggestion (to look at the depths, etc), however, I'm still unable to understand why the alert is not modal as it should be. If anyone has any suggestions on how to fix the buttons to make them modal, please let me know. Thanks.

  • Find Multiple Form Titles

    I’m working on a forms 6i to 10g upgrade project. Before we begin we want to audit our forms (about 200 in total). What I want to do is somehow find the form title of each form within my application.
    Is there an easy way to do this or can i create a batch file to do this for me?

    I played around with the "IFF2XML90.bat" batch file provided with Forms 10g and found that it will convert a 6i Form to a Forms 10g .xml file. This being the case, you can use this batch file to convert all of your Forms 6i forms to xml files. Then you can search the xml file for the <FormModule> tag to find the Title property of your form. The xml file will look something like the following:
    <Module version="90040100">
       <FormModule Name="REC_GROUP" Title="MODULE2" ConsoleWindow="MAIN" MenuModule="DEFAULT&SMARTBAR" DirtyInfo="true">As you can see from this example the name of my 6i form is "REC_GROUP" and the title of the Form Module is "MODULE2". You should be able to write a Windows batch file or a UNIX script to look for these XML tags to find the Title of each of your forms.
    Hope this helps.
    Craig...

  • Failed Alert window when application loaded from SWFLoader

    For example i've created two simple application.
    Parent application must to load another child application
    Main.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
                   creationPolicy="all">
        <mx:SWFLoader id="subApp1" trustContent="true" source="../subapp/Subapp.swf"/>   
    </s:Application>
    In child application i only call Alert.show in button click event.
    Subapp.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
                   pageTitle="Subapplication"
                   xmlns:ns1="*" width="600" height="1000"
                   creationPolicy="all">
        <s:Button id="btnAlert" label="Alert" click="Alert.show('test mess', 'Title')"/>
    </s:Application>
    As a result we receive an Alert-window displaced upwards of a window of a browser.
    Screenshot:
    Instead of a usual window which is normally displayed if child application to call directly
    Screenshot:
    The problem can be solved if i specify parent object for Alert call
    <s:Button id="btnAlert" label="Alert" click="Alert.show('test mess', 'Title', Alert.OK, this)"/>
    But it is not the desirable decision as the real child application very big.
    Somebody worked with this sort of problems?
    How it probably to solve?
    Thank you very mach!

    Harbs,
    Things are getting weird here...
    This is a crop of the GUI in Halo:
    and this is what the CS Extension Builder theme looks like:
    There's no more the vertical separator *nor* the arrow in the combobox! Let alone that the plus button has gotten a crazy size.
    Uhm... it seems like there's something wrong.
    And by the way, no matter what theme I chose, my Design tab always shows the bluish GUI:
    Being Halo, shouldn't it be gray? Why on earth it's grayish blue to me?!
    I've had some random warnings, not specifically in this project, like:
    "Design mode: Cannot load CSXSLibrary-2.0-sdk-3.4-public.swc (reason: ERROR: Load Verify). It may require classes (such as Adobe AIR components) that are not supported by design mode. Check the Eclipse error log for more details. main.mxml /01/src Unknown Problem"
    I'm wondering whether FB has some troubles with the preferences...
    Could someone please test whether the change in theme leads to these dramatic changes in appearance?
    Is it correct that the default appearance is this (bluish) one?
    Thanks,
    Davide

  • How to display a view which contain interactive form in an external window

    Anyone know how to display a view which contain interactive form in an external window?
    I managed to display the view in an internal window with the following code:
    IWDWindowInfo windowInfo = (IWDWindowInfo)wdComponentAPI.getComponentInfo().findInWindows("PdfReportWin");
    IWDWindow window = wdComponentAPI.getWindowManager().createWindow( windowInfo, true);
    For external window, I tried this method : wdComponentAPI.getWindowManager().createExternalWindow(String URL, String title, boolean modal) but there are no parameter for view name?
    Maybe this is not the correct way, really appreaciate if anyone can help.

    Hi,
                U need to the following
               1.Create another window
               2.Create a view in it tat contains Interacive form element.
               3. call this window dynamically thru the first window by creating a context element of IWDWindow  type
    The code may help:
      IWDWindowInfo windowInfo =(IWDWindowInfo) wdComponentAPI.getComponentInfo().findInWindows("SearchEmpwind");
          IWDWindow window = wdThis.wdGetAPI().getComponent().getWindowManager().createWindow(windowInfo, true);
          window.setWindowPosition(WDWindowPos.CENTER);
          window.setWindowSize(400, 250);
          window.open();
          wdContext.currentContextElement().setEmpSearchWind(window);
    Regards
    Ishita

  • Possible to move alert window?

    All,
    I have an alert in a form. Like all alerts, it automatically shows up in the center of the screen. Is it possible for me to programmatically position the alert window where I want it? I couldn't find anything in the documentation. There is a way around this, of course, if I just create a separate small window with a text item containing the message , there-by creating my very own 'alert'. I can then do a MOVE_WINDOW, but I'd rather not do this, as it'll require extra work.
    Many thanks
    Harry
    null

    Hi Thomas,
    Thanks for your question. First you are able to accomplish making a window be in the front most position using property nodes without WIN32 call in the Knowledge Base article Can I Force a SubVI Front Panel To Stay in Front of the Main Front Panel?
    You mentioned that "If a window is made frontmost but is not the highest tier, we move everything else to the front using a Windows API call that makes the window frontmost without automatically activate the window". Do you mean without automatically activating the child window or higher tier window?
    Also, I'm curious why you might want to have an inactive window in the front. Do you just need to disable some features of that window?
    Hope this link helps you. If not, I think it will help us troubleshoot more efficiently if you can post a screen shot of your code here.
    Yupeng J.

  • Specify the title of browser window showing report output

    I am using DS 10g.
    When the report output comes in the browser, then its title is not user friendly.
    Can any body tell me how to specify the title of browser window that is displaying the report output.
    The report output has been generated from form.

    hello,
    What DESFORMAT do you use ? (HTML ? HTMLCSS ? PDF ? RTF ? ...)
    Regards

  • Spcify the title of browser window showing report output

    I am using DS 10g.
    When the report output comes in the browser, then its title is not user friendly.
    Can any body tell me how to specify the title of browser window that is displaying the report output.
    The report output has been generated from form.

    hello,
    What DESFORMAT do you use ? (HTML ? HTMLCSS ? PDF ? RTF ? ...)
    Regards

Maybe you are looking for