Connection to menu module

Hi,
I have a problem, i create a menu but now i don't know which code i need to insert and where i need to put this.
Somebody can help me, its urgent.
Thank you
Diana

Hi Diana,
When you state you 'create a menu' are we talking about a menu module (eg mmb/mmx) or some other kind of menu (eg pop-up menu) ?
A menu module cannot run independantly, it needs to be included/attached to a form which is done in the forms property sheet. But please make it clear which menu you are talking about and we should be able to take it from there.
Regards,
Sunny Patel.

Similar Messages

  • Creating Menu module by creating the menu in database

    Hi,
    In the properties of a form when i attach a menu module thru file it's fine but i have to attach the menu module.thru database.I know we have to create the menu in the database. but cannot figure out how. Can anyone guide me how this can be done.
    Sample code welcome.
    Thanks

              I use xml to generate all input fields. But it's similar to database. xml is a kind of database.
              You can use customer tag to generate the form. Inside the tag class you select the form elements from table and construct the form. It's not difficult.
              If you use javascript take care the difference between the IE and Netscape. You better pass a browserType attribute and deal with them differently.
              You should create form element type carefully. Each element can have question type, name , text, validation class, preceding message and so on. Each element can have a toHtml method.
              for the jsp you can:
              tag to get connection.
              tag for the form
              tag for each form element.
              Hope this can give you some idea.
              "Lou Trujillo" <[email protected]> wrote:
              >
              >Has anyone created a form by reading all the input tags, select tags, etc from a table in a database.?
              >I need to create a jsp page that gets all the controls(radio buttons,check boxes,list boxes..) and values from Oracle.
              >Also the form can have javascript associated with some controls.
              >I would appreciate any ideas.
              >TIA
              >
              >Lou
              >
              >
              

  • I am getting error while attaching Menu Module to FORM

    Hi to everyone, I have created a Menu Module(mmx file), now i am trying to attach that menu to a FORM, I have entered the proper Menu Module address in the property window of that FORM, but i am continously facing the following problem.
    FRM-40738: Argument 1 to builtin CALL_FORM cannot be null
    Also i have applied following code in that Menu Module
    call_form('F:\Database Files\Contingent Database\Forms & Reports\Forms\BILL DETAIL.fmx');
    but the required FORM is not running.
    Please help me to sove out this problem

    I did this today, in this way,
    I create the menu then CRT-SHIFT K, then CRT -T
    then check you have the mmx
    - now you put full path to the form
    Menu module like c:\aaa\bb\menuname
    I did not put extension
    Hope this will work.

  • Attaching menu module to form module in 9i

    hi,
    pls i would love someone to help me solve this problem
    i was trying to attach a compiled menu module to a form
    it generates this error
    frm:10221cannot open the file .....
    i place the modules in the the forms9i oracle home path to make it easy for me to run but i still have the problem.
    pls i need to solve this problem out fast
    thankz

    Hai
    this is vas. I think you did it all may be try.
    first create a menu and generates it and save it on same folder where the form stays.(respective folder) and compile both forms and menu in screen.and go to form name properties, change it to menu module --> menu name.mnx ,now save it
    and try this
    i hope it will work
    check it and reply me back.this will work only in individual form and menu not in application
    for application u ,there is a different way
    thanks
    bye
    vas

  • Selected state issue with Menu Module V2

    OK so I am getting an issue with Menu Module V2. I have used this before with success but this time I have hit a wall. I possed this question to BC live chat and they bugged out real quick.
    The site in construction is http://www.urbanista.com.au
    What is happening is that in the top right tools nav with the headings Home, Services, People, Contact Us using Menu Module V2. The Heading Services has a drop down and this is where the issue resides. Roll over any of these nav devices and you will see they will highlight orange. Home is already auto activating its Selcted state. Click on Contact Us and it will do the same.  Roll over and click on Services and it appears to have worked. While in Services roll over the drop down again and you will see all links have activated the Selected state. This is the issue. If you view the code of the Services UL you will see only the Services state has been alocated the Slected state. See below:
    <li id="Services" class="selected">
    <a href="/services.htm">Services</a>
    <ul>
    <li id="tools-panningdev">
    <li id="tools-housing">
    <li id="tools-urban-renewal">
    <li id="tools-project-management">
    <li id="tools-feasibility-tools">
    <li id="tools-governance-systems">
    <li id="tools-communications">
    <li id="tools-projects">
    </ul>
    </li>
    The CSS that runs the nav is as follows:
    ul.dropdown {
        font-weight: normal;
        font-family: Arial, Helvetica, sans-serif;
        font-style: normal;
        text-decoration: none;
        ul.dropdown li {
        background-color: transparent;
        color: #999;
        padding-top: 5px;
        padding-right: 10px;
        padding-bottom: 5px;
        padding-left: 10px;
        font-size: 12px;
        ul.dropdown li.hover,
        ul.dropdown li:hover {
        background-color: transparent;
        color: #FFF;
        ul.dropdown a:link,
        ul.dropdown a:visited    {
        color: #FFF;
        text-decoration: none;
        ul.dropdown a:hover        { color: #ff871f; }
        ul.dropdown a:active    {
        color: #b33b00;
        /* -- level mark -- */
        ul.dropdown ul {
        width: 150px;
        margin-top: 1px;
        background-image: url(/images/nav-transparency.png);
        background-repeat: repeat;
        color: #FFF;
        ul.dropdown ul li {
        font-weight: normal;
    ul.dropdown li.selected a {
        color: #ff871f;
    The last entry 'ul.dropdown li.selected a {color: #ff871f;}' is required in order to allocate a Slected State. Without it not Selected state is active and the links al remian white.
    I have tried all manner of combinations and additonal tags with no success. Any suggestions greatly appreciated. I have not modified the default Javascript provided by BC in the system apart from allocating the required ulTagClass as specified. The Javascript in the supplied 'container.html' is as follows:
    <script type="text/javascript" >
        // ids need to be unique per page, use different ones if you are including multiple menus in the same page
        // id of the nav tag, used above
        var divTagId = "myMenu1";
        // desired id for 1st <ul> tag
        var ulTagId = "myMenu1List";
        // desired class for 1st <ul> tag
        var ulTagClass = "dropdown dropdown-vertical";
        if ((null !== ulTagId) && ("" !== ulTagId)) {
            document.getElementById(divTagId).getElementsByTagName("ul")[0].setAttribute("id",ulTagId );
        if ((null !== ulTagClass) && ("" !== ulTagClass)) {
            document.getElementById(divTagId).getElementsByTagName("ul")[0].className = ulTagClass;
        // this will set the selected state
        if ((null !== ulTagId) && ("" !== ulTagId)) {
            catSetSelectedCSSItem(ulTagId);
    </script>
    Lastly this is one of the recomended navs by BC at the following address: http://lwis.net/free-css-drop-down-menu/
    I have used these before with success but for the life of me this has stumped me big time.

    Hi Matthew,
    Having a super quick look at the code I'd say it's because of:
    ul.dropdown li.selected a {
        color: #ff871f;
    This affects all the child elements.
    To override this down the line you could do something like:
    ul.dropdown li.selected ul li a {
        color: #fff;
    This would override the parent link color when selected.
    You could probably then also add:
    ul.dropdown li.selected ul li.selected a {
        color: #ff871f;
    For the dropdown selected states.
    That's a quick look though so don't quote me too much

  • How to create a table less structure with dynamic menu module

    Hi guys,
    I am using dynamic menu module for creating a main menu for http://firstsite08.businesscatalyst.com/
    but it is generating table structure. What changes to do i had to make to generate a table less structure from dynamic menu module.

    Hi Andy,
    When you create a Menu, the option dropdown for the menu has Default, but under that you will see HTML CSS Only option which creates a ul li structure.
    For the Menu Module options you can find more information from the knowledgebase: http://kb.worldsecuresystems.com/134/bc_1345.html?bc-partner#main_Menu_Modules
    If you would like to use the version 2 menu module you can find a bit of a guide I wrote here: http://forums.adobe.com/docs/DOC-1903

  • Menu Modules in Forms4.5 and Forms6i

    I have some doubts regarding in forms4.5 and forms6i
    Recently I have migrated Forms 4.5 into Forms 6i. In forms4.5 I
    can crete a menu
    module and can attach into form without canvas. But I cannot in
    Forms 6i, I would like to call a menu module " FULL_SCREEN"
    property in forms6i, There are three types are in menu types,
    FULL_SCREEN,BAR,PULL_DOWN. I have used all these properties in
    forms6i, No difference. My question is I would like to call a
    menu module in " FULL_SCREEN" type in Forms6i. Can u help to
    come out of this.
    Thanks in advance
    Reddy
    mail: [email protected]

    If I remember right, the MENU% tables were not part of Forms 3, but SQL*Menu. Check the FRM40_MNU% about menu info (only if you store forms in a database).

  • Menu module error run time

    I've created a menu module as normal at forms 9i once i ran it , I got the follwoing error :
    Error opening Oracle*Terminal file fmrweb.
    Any idea to overcome this error?
    Thanks in advance

    Hi, plz suggest how disable or invisible the submenu items. there is no reply for my last post.
    using set_menu_item_property I am not able to achive this.
    here submenu items means e.g TRANSACTIONS-----------> ACCOUNTS ----------> PURCHASE, SALES
    In TRANSACTIONS a menu in the menu bar, and ACCOUNTS is the menu again and PURCHASE ,SALES are items.
    like this any number of submenus we can create for menu bar. But how enable or disable these items.
    with thanks
    gms

  • Right to left menu module

    in windows2000 and form6i and codepage=ar8mswin1256 (arabic)
    i use menu module in my main form ,but my menu cannot be right to left
    i change the direction property but doesnot work.
    if you know please help me.
    thanks.

    The ME edition can have an English user interface (or Arabic, Hebrew, French, and maybe others, I dunno).
    In your shoes I'd buy World Tools from www.in-tools.com. I actually like Harbs' interface for RTL tools better than Adobe's.
    It's possible to fake up Arabic tools in English ID in a variety of ways. Ellis suggests a good one. If you are handy with Javascript, all of the RTL text manipulation tools are available via scripting. If you find the ancient Thomas Phinney blog post from 2008 or thereabouts, when the World-Ready Composer was first introduced, all of those scripts still work.

  • Menu module

    Hi All,
    I created the menu module with main menu
    File,Edit,Query
    and
    save
    cut
    copy
    paste
    enter
    execte
    respectively as individual menu.
    when i compile the menu module i got the following error.
    circular reference detected in menu module.
    Please anyone correct this error.
    thanks in advance
    rampa

    Your on-line help directs you:
    Search for the keyword "menu editor" and select the subject titled as :
    "Creating Objects in the Menu Editor" ... and afterwards the related topics:
    Creating a main menu ,
    Creating lower-level menus ,
    Creating submenus
    Greetings,
    Sim

  • Is it possible set programm menu module background color?

    HY,
    is it possible set programm menu module background color?
    thanks

    Hy,
    thanks for your answer, but, if i understand well,
    it's for individual menus and submenus (lower-level menus, displayed by default as vertical Lists of menu items) menu items
    I am speaking about a main menu (the top-level menu, displayed by default as a horizontal strip)
    And, when create a VA in menu module isn't possibile set color but only font.
    I believe it need create VA in set_visual.....
    Thanks again
    Rosario

  • Where Is the MAINMENU Defined in the "Menu Module" Property of MAINFORM

    Hello Ya'll Gurus,
    I am trying to locate both the MainMenu.mmx and it's source MainMenu.mmb files that is being executed in the application run time, but so far with no luck. I am desperately in need of your help, and the pressure is on...
    I have found the following information in our environment and hopefully it will help in resolving my problem:
    The following is the command that runs our application:
    c:\orant\BIN\ifrun60.EXE C:\MMS\Production\mainform.fmx <userid>/<psswd>@mms
    The following are the images of the property palettes for the MainForm and MainMenu forms:
    Image for the mainform.fmb property palette:
    !http://dot.state.ak.us/nreg/jtomasic/MainForm_Property_Palette.GIF!
    Image for the mainmenu.mmb property palette:
    !http://dot.state.ak.us/nreg/jtomasic/MainMenu_Property_Palette.GIF!
    Please help me with the following questions:
    Q1: Since "C:\MMS\Production\mainform.fmx" is included in the command line that runs our application and the "Menu Module" property of the "mainform.fmb" form is "MAINMENU", does it mean the "MAINMENU.mmx" is being executed through mainform.fmx when the application starts running?
    Q2: If the answer to the above (Q1) question is yes, the 'MMS' defined in the Menu Filename is then not being used at all, correct? and where can I find the "MAINMENU" file specified in the "Menu Module" property of the "mainform.fmb" form?
    Q3: The attached Libraries for the MAINFORM include HMMSHELP, MAINLIBR and MENULIBR. Are these libraries loaded to the MAINFORM dynamically or statically? BTW, the MENULIBR.pll is also attached to MAINLIBR.pll and what does that mean?
    Q4: The 'Main Menu" property in the mainmenu.mmb form is defined as "MAIN_MENU" which ties the "MAINMENU" specified in the Menu Module property of the "mainform.fmb" form, correct?
    Thanks in advance for any/all the help on this.

    Q2: If the answer to the above (Q1) question is yes, the 'MMS' defined in the Menu Filename is then not being used at all, correct? and where can I find the "MAINMENU" file specified in the >"Menu Module" property of the "mainform.fmb" form?Looking at the onlinehelp, the property "Menu filename" may be used if the menu is stored in the database. As far as i know this is not possible since forms 6i (but i may be wrong here). If i'm right, the property is no longer important.
    About finding the MAINMENU. I don't know where you find it. If you get no error it seems that it is somewhere on your machine. I would look into the directory C:\MMS\Production first. If its not where, check the FORMS60_PATH-variable and search in the directories listed in that variable.
    Q1: Since "C:\MMS\Production\mainform.fmx" is included in the command line that runs our application and the "Menu Module" property of the "mainform.fmb" form is "MAINMENU", does it >mean the "MAINMENU.mmx" is being executed through mainform.fmx when the application starts running?If i'm right about Q2, the answer is Yes.
    Q3: The attached Libraries for the MAINFORM include HMMSHELP, MAINLIBR and MENULIBR. Are these libraries loaded to the MAINFORM dynamically or statically? BTW, the MENULIBR.pll is >also attached to MAINLIBR.pll and what does that mean?What do you mean with dynamically or statically?
    Q4: The 'Main Menu" property in the mainmenu.mmb form is defined as "MAIN_MENU" which ties the "MAINMENU" specified in the Menu Module property of the "mainform.fmb" form, >correct?I don't understand your question. Forms searches the menu-module which is specified in the property "Menu Module" and "starts showing" the menu which is defined as the "main menu"

  • Menu Module v2 support for selected state?

    I can't figure out if menu module v2 supports the selected state. I remember reading somewhere that it was slated in the future, but it seems the file /ModuleTemplates/Menu/Default/container.html has accommodations for it.
    A resource if so, would be highly appreciated.

    By default I does, the JavaScript is there in the layouts and no different to the normal version in that regard.

  • CGEN-03003 error when generating a menu module

    When I generate a menu module in Designer 2.1,
    I get the following error.
    Please help me !
    Greetings Rob
    CGEN-03613 ERROR: Did not generate the module.
    CGEN-01086 WARNING: Module: Attached library 'REWARD.pll' not found in forms search path. Using full path name.
    CGEN-03003 ERROR: Module: Failed to create .mmx file for menu module MENU
    Generation of Module 'M_HOOFDMENU' Unsuccessful

    We have the same problem, and the problem was in the xsd import:
    The wdsl import a schema that import other schema, the second import use a relative path, that was wrong.
    So check the xsd import sequence....

  • How to place buttons instead of menu in menu module

    hi iam having a form with menu module ,instead of menu i need buttons... can any one help me

    hi
    still i am not sure what do u want to achieve?
    if u wanna create u r own toolbar then try something like this, but while creating buttons then u have to use codes too.
    There is an easier way to get the "toolbar" you want to have.
    1. Build a mmb with all the functions you want to have both in the menu and in the toolbar.
    2. For each menuitem, you can define in the properties
    - If it should be shown in the menu, then set "Visible In Menu" to Yes
    - If it should be shon in the horizontal toolbar (or vertical toolbar), then set "Visible In Horizontal Menu Toolbar" ("Visible In Vertical Menu Toolbar") to Yes
    - For showing an item in a toolbar, you will have to set the property "Icon Name" additionally to the name of an existing icon (the same way you do for buttons)
    3. Compile and generate the menu
    4. Build a form and attach your menu as Menu-Module in the properties of the form.sarah

Maybe you are looking for

  • Using song as alarm tone

    I have a Nokia 6710 Navigator. I have downloaded an mp3 onto my phone, which I want to use as my alarm tone. I have selected the song as my alarm tone, and at the set time the song begins playing. My issue is that, when playing as an alarm, only 1 mi

  • Did my PC come with a full version or free trial of Works?

    How do I know if I only got a free trial with my new Asus? The description online, when I bought the PC, said it came with Works 9. But now it's asking me for a code when I'm using Word and I'm reading online that I probably have a free trial and not

  • Syntax errors in update query with inner joins and sub query.

    Below is the query: UPDATE sp_CFQ_Coord_Corrections  INNER JOIN (CFQ_Coord_Corrections  INNER JOIN CFQ_Referrals ON CFQ_Coord_Corrections.CorrID = CFQ_Referrals.RecID)  ON sp_CFQ_Coord_Corrections.ID = CFQ_Referrals.RecID  SET CFQ_Coord_Corrections.M

  • Rendering the content of a blob from discoverer

    Hi Gurus, I've got to render, on the web browser, the contents of a blob stored in a table. I don't know, at design time, the type/mime of the blob's content, It's actually stored aside the blob in another column of the same table. It could be suffic

  • Mac mini late 2012 or imac late 2012?

    Hello i want to buy a new mac for my home studio and i am between the new mac mini : 2.3 GHz Quad-core Intel Core i7 4gb ram ...later i will upgrade to 8gb 1TB Serial ATA hard drive or Fusion Drive( what is better?) or the new Imac: Intel Quad Core i