VC FORM CONTROL BUTTONS

how can we enable the fields without touching the Control Buttons on the form Tool bar?
CE 7.2 I am getting a problem in VC form where only if I click on "Enable" button the controls like date, input field, checkbox are getting enabled else all are disabled , any idea why this problem?

Hi,
This is probably because the form is connected to a node of cardinality 0..1 (for example in a service input or output). If you want it to always be enabled you can add a record to the form with the Initialize Data button of the element the form is connected to. You could also change the node to be of 1..1 cardinality.
Please note that if the form data is then sent to a service, the service should be aware that it will always receive a record (for example if it checks if any data was sent).
best regards,
Tal.

Similar Messages

  • InfoButton PJC   Demos for Forms (tooltip buttons) - not working

    Hello everybody,
    I am new to using PJC and JavaBeans in forms. I have on my laptop Oracle Developer Suite 10g (10.1.2.0.1) and Forms Demos version 9.0.4.2.0 I downloaded from OTN. I studied InfoButton PJC application (buttons that show tool-tips at mouse-over).
    Now, I want to create in one of my old forms such a button. I followed exactly the steps of the demo, that is:
    1. I created a form with a button TEST_BUTTON for which I set the Implementation Class property to oracle.forms.demos.enhancedItems.InfoButton.
    2. On the form's canvas I also created a text item named INFO with the following properties:
    X Position = 255
    Y Position = 107
    Width = 100
    Height = 100
    3. At form level, I created the trigger WHEN-NEW-FORM-INSTANCE in order to set the button's properties as follows:
    SET_CUSTOM_PROPERTY('CONTROL.TEST_BUTTON',1,'INFOBUTTON_TEXT','This is the tooltip text');
    SET_CUSTOM_PROPERTY('CONTROL.TEST_BUTTON',1,'INFOBUTTON_FIELDPOS','288,128');
    4. I created in my formsweb.cfg file a configuration section for my form.
    [pjc_demos_dana]
    pageTitle=OracleAS Forms Services - InfoButton Demo Dana
    IE=jinitiator
    baseHTMLJInitiator=demobasejini.html
    archive_jini=frmall_jinit.jar,/forms/formsdemo/jars/infobutton.jar
    form=pjclaunch_dana.fmx
    width=675
    height=480
    separateFrame=false
    splashScreen=no
    lookAndFeel=oracle
    colorScheme=blue
    background=/formsdemo/images/blue.gif
    When executing the form, the button has round margins as said in the documentation; at mouse over the cursor takes the form of a small hand but there is no tool tip. I receive no errors, only that it doesn't show the tool tip.
    I don't understand why it's not working, what I did wrong ...
    When setting the 'INFOBUTTON_FIELDPOS' property - input parameter X,Y - the documentation says: "This property should be set to a string containing a X,Y comma separated pair providing the location of the target field in pixels relative to the top left hand corner of the window. The X,Y pair simply has to define a point anywhere within the target field, it doesn't have to exactly define the corner".
    What is the target field? The text item I created at step 2)? The documentation is not clear here ...
    Any help will be appreciated.
    Daniela

    Dear Safwan Bhai,
    As salaamo alaikum Rahamatulla hi burakathu!!
    Actually I'm having a multi record block in which all the emp no., days of attendance, etc will be displayed when I click on the search button. My requirement is when point the mouse over the emp no, the emp name must be displayed as a Tool tip text. My fields are non-editable, so Post-Change is not working. I placed the coding in the When-new-item-instance - in this case the emp name is displayed, but only for the first field, when I move the mouse to second and third fields, the empname of that particulart field is displayed as a tool tip but in the first field only.
    Any other suggestions?
    Anyway I would appreciate your help.
    Thank you.
    With Kind Regards,
    Perumal Senthil Alagu.

  • Form control grouping

    Hi!
    I have a problem with grouped form controls in Excel. This is the scenario:
    In Excel 2007 I create for example 2 radio buttons put within a group box and then I select all 3 controls and group them.
    I save and reopen the file in 2007 and all is fine.
    I then open the file in 2010 or 2013 and make changes.
    I then save and reopen the file in 2010 or 2013 and all is fine.
    I then open the file in 2007 and the grouping is gone....
    So to sumarize. When grouping form controls in Excel the grouping disappears in 2007 after a file has been edited and saved in 2010 and 2013. This in not a single file issue, I can recreate this in a new file when I want. I have tested this in different
    coorparate environments with the same result.
    I found this article when I searched the forums, and the person is experiencing the exact same thing.
    But as that thread was never answered and pretty old I decided to make a new one.
    Cheers
    Leyan

    Hi,
    Sorry I was on a few days leave. Compatibilty issues was my guess. There is no known way to get around this I persume?
    The company Im helping (who has the files with the controls) are fully migrated to 2013 in the near future I hope. So going through the hard work to create thousands of controls on the fly is probably too much. I was kinda hoping there was a fix or a quick
    workaround out there to help them get through the migration process.
    But as I said, fully migrated in a few months so we decided they just have to wait.
    Thanks for all replies!
    /Leyan

  • Open folders in same window (in toolbar control button mode)

    Hi, when I set a finder window to hide the toolbar from view, using the toolbar control button in the top right, the folders open a new window when clicked.
    Is it possible to set them to open in the same window?
    Thanks

    Hi, when I set a finder window to hide the toolbar from view, using the toolbar control button in the top right, the folders open a new window when clicked.
    Is it possible to set them to open in the same window?
    Thanks

  • Crystal Report/STRUTS: Error (404) when clicking on Control Buttons (Print, Export, Next, Previous, etc...) on report viewer

    Post Author: jwenny
    CA Forum: Deployment
    Need help badly!!!
    We are using the crystal reports plugin for STRUTS.
    We are able to display the report in the crystal report viewer.  However, when we click any control buttons (print, export, etc...), then we get:
    JSPG0036E:  Failed to find resource /Report-viewer.jsp
    We then moved Report-viewer.jsp to the WebContents folder (root directory) and got a different error when we clicked any control button:
    Error:  400 page not found
    Does anyone know how to solve this problem?  For instance, is there a setting or parameter that needs to be set?
    Greatly appreciate any help!

    HI,
    Whenever we print the viewer does an auto postback, I believe due to this some of the values are getting missed. Moreover we are referring to the viewer and reportdocument object, it seems. So can you try this simple code in an application to see if it helps:
    ReportDocument rdoc = new ReportDocument();
    rdoc.Load("C:\TASKECrystalReports\Intraday.rpt");
    rdoc.SetDatabaseLogon("uid","pwd");
    rdoc.SetParameterValues("parameter name","value");
    CrystalReportViewer.ReportSource = rdoc;
    Helps?
    Thanks.

  • Form Controls stop working after December 2014 Updates

    For some users, Form Controls (FM20.dll) are no longer working as expected after installing MS14-082 Microsoft Office Security Updates for December 2014. Issues are experienced at times such as when they open files with existing VBA projects using forms
    controls, try to insert a forms control in to a new worksheet or run third party software that may use these components.
    You may received errors such as:
    "Cannot insert object"
    "Object library invalid or contains references to object definitions that could not be found"
    "The program used to create this object is Forms. That program is either not installed on your computer or it is not responding. To edit this object, install Forms or ensure that any dialog boxes in Forms are closed."  
    * Note In this last error message, the Forms text may also be replaced by the GUID of the control.
    Additionally, you may be unable to use or change properties of an ActiveX control on a worksheet or receive an error when trying to refer to an ActiveX control as a member of a worksheet via code.
    Steps to follow after the update:
    After updating, the cached control type libraries (extender files) may be out of sync. To resolve this issue, you must delete the cached versions of the control type libraries (extender files) on the client computer. To do this, perform a search on your
    hard disk for files that have the ".exd" file name extension and delete all the .exd files that you find. These .exd files will be re-created automatically when you use the new controls the next time that you use VBA. These extender files will be
    under the user's profile and may also be in other locations, such as the following:
    %appdata%\Microsoft\forms
    %temp%\Excel8.0
    %temp%\VBE
    Scripting solution:
    Because this problem may affect more than one machine, it is also possible to create a scripting solution to delete the EXD files and run the script as part of the logon process using a policy. The script you would need should contain the following lines
    and would need to be run for each USER as the .exd files are USER specific.
    del %temp%\vbe\*.exd
    del %temp%\excel8.0\*.exd
    del %appdata%\microsoft\forms\*.exd
    del %appdata%\microsoft\local\*.exd
    del %temp%\word8.0\*.exd
    del %temp%\ PPT11.0\*.exd
    Additional step:
    If the steps above do not resolve your issue, another step that can be tested (see warning below):
    1. On a fully updated machine and after removing the .exd files, open the file in Excel with edit permissions.
    2. Open Visual Basic for Applications > modify the project by adding a comment or edit of some kind to any code module  > Debug > Compile VBAProject.
    3. Save and reopen the file. Test for resolution.
    If resolved, provide this updated project to additional users.
    Warning: If this step resolves your issue, be aware that after deploying this updated project to the other users, these users will also need to have the updates applied on their systems and .exd files removed as well.
    If this does not resolve your issue, it may be a different issue and further troubleshooting may be necessary.
    References with further information: 
    3025036 "Cannot insert object" error in an ActiveX custom Office solution after you install the MS14-082 security update
    http://support.microsoft.com/kb/3025036/EN-US
    3017349 MS14-082: Vulnerabilities in Microsoft Office could allow remote code execution: December 9, 2014
    http://support.microsoft.com/kb/3017349/EN-US
    2726958 MS14-082: Description of the security update for Microsoft Office 2013: December 9, 2014
    http://support.microsoft.com/kb/2726958/EN-US
    2553154 MS14-082: Description of the security update for Microsoft Office 2010: December 9, 2014
    http://support.microsoft.com/kb/2553154/EN-US
    2596927 MS14-082: Description of the security update for the 2007 Microsoft Office suite: December 9, 2014
    http://support.microsoft.com/kb/2596927/EN-US

    In case it is of any help in identifying why this update caused errors, the specific instance I have experienced is as follows:
    The application uses Visual Basic (6.5) for Excel.  The piece of code causing an error (438) was as follows:
    Public currcombo(12) As ComboBox 
    Sub comboset()
    '   set up comboboxes for test selection
     With Workbooks(currCRW).Sheets("client results")
    '   set up test selection combo controls
        Set currcombo(1) = .F14
        Set currcombo(2) = .F15
        Set currcombo(3) = .F16
    . . . . .etc
    The error occurred on the first Set statement where 
    In this case (in two environments: Windows 7 Home Premium 64 bit and 32 bit, Excel 2007)  the cure was to uninstall the problem security update KB2596927.

  • Tutorial Announcement :: How To Use Auto Complete Text Form Control ::

    Hello Everyone...
    Here in this tutorial we gonna to learn a new and amazing feature of (ADDT), we will learn how to use Adobe developer toolbox (ADDT) form controls.
    Form controls help you to add a fantastic features to your forms, that helps you to expand the form abilities and functionality...
    The Auto complete Text Field is an enhanced text field that dynamically completes what you type with matched values from a table. You can also select the values from a list.
    You can use the Auto complete Text Field in user registration forms, such as allowing users to select their country or city easier, Also in other forms that needs the user to pick one of many choices without any difficulties.
    Requirements
    To complete this tutorial you will need to install the following software and files:
    Adobe Dreamweaver Cs3
    Adobe Developer Toolbox (ADDT)
    Don't forget: to try out the Demo type the first three letters :A - B - C
    :: Go To Tutorials ::
    :: Go To Tutorials ::
    Best Regards
    Waleed Barakat
    Developer-Online Creator and programmer
    http://www.developer-online.com

    Heya Waleed,
    I use spry to create an autocomplete form that works great across browsers that have javascript enabled. You can store info in a database and parse the info to xml for a dynamic approach. Take a look at the filter examples in spry.
    http://labs.adobe.com/technologies/spry/samples/data_region/NonDestructiveFilterSample.htm l
    http://labs.adobe.com/technologies/spry/samples/data_region/ZuggestSample.html

  • A webpart or web form control on this page cannot be displayed or imported.The type could not be found or it is not registered as safe.

    Hi,
    After moving my files from SP 2010 to SP 2013 , for all my web parts i am getting A webpart or web form control on this page cannot be displayed or imported.The type could not be found or it is not registered as safe. error. I checked web.config files
    and they are there as safe control and trust level is also full. 
    These webparts work in 2010.
    Do i need to tweak something in code or distributed cache to make this thing work? The errors i see are
    Error importing WebPart. Assembly  c , Version=1.0.0.0, Culture=neutral, PublicKeyToken=216eaf49984a9b29, TypeName. C. A Web Part or Web Form Control on this Page cannot be displayed or imported. The type c Version=1.0.0.0, Culture=neutral, PublicKeyToken=216eaf49984a9b29
    could not be found or it is not registered as safe.
    Getting Error Message for Exception Microsoft.SharePoint.ApplicationRuntime.SafeControls+UnsafeControlException: A Web Part or Web Form Control on this Page cannot be displayed or imported. The type C Version=1.0.0.0, Culture=neutral, PublicKeyToken=216eaf49984a9b29
    could not be found or it is not registered as safe.    
     at Microsoft.SharePoint.WebPartPages.WebPartImporter.CreateWebPart(Boolean clearConnections)    
     at Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(SPWebPartManager manager, XmlReader reader, Boolean clearConnections, Uri webPartPageUri, SPWeb spWeb)    
     at Microsoft.SharePoint.WebPartPages.WebPartGalleryItemBase.InstantiateFromXml(XmlReader reader)    
     at Microsoft.SharePoint.WebPartPages.WebPartAdder.SiteWebPartGalleryProvider.SiteWebPartGalleryItem.Instantiate()    
     at Microsoft.SharePoint.WebPartPages.WebPartGallerySourceBase.AddItemToPage(WebPartZoneBase zone, Int32 zoneIndex, WebPartGalleryItem item, String wpid)    
     at Microsoft.SharePoint.WebPartPages.WebPartAdder.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
    An error occurred while attempting to add the gallery item [Custom] c to the page. The error was: Microsoft.SharePoint.ApplicationRuntime.SafeControls+UnsafeControlException: A Web Part or Web Form Control on this Page cannot be displayed or imported. The
    type c Version=1.0.0.0, Culture=neutral, PublicKeyToken=216eaf49984a9b29 could not be found or it is not registered as safe.    
     at Microsoft.SharePoint.WebPartPages.WebPartImporter.CreateWebPart(Boolean clearConnections)    
     at Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(SPWebPartManager manager, XmlReader reader, Boolean clearConnections, Uri webPartPageUri, SPWeb spWeb)    
     at Microsoft.SharePoint.WebPartPages.WebPartGalleryItemBase.InstantiateFromXml(XmlReader reader)    
     at Microsoft.SharePoint.WebPartPages.WebPartAdder.SiteWebPartGalleryProvider.SiteWebPartGalleryItem.Instantiate()    
     at Microsoft.SharePoint.WebPartPages.WebPartGallerySourceBase.AddItemToPage(WebPartZoneBase zone, Int32 zoneIndex, WebPartGalleryItem item, String wpid)    
    Adit

    Hi Adit,
    According to your description, my understanding is that the error occurred when you deployed the .wsp files to SharePoint 2013.
    I recommend to check if all the assemblies are put into the BIN and GAC.
    If above cannot work, you can check the troubleshooting steps in the link below:
    http://www.bluedoglimited.com/SharePointThoughts/Lists/Posts/Post.aspx?ID=189
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • IPod Shuffle 4th Generation's control buttons not working.

    My iPod Shuffle 4th Generation's control buttons are not working. Sometimes it works after formatting it stopped again.. Please give a solution ASAP...

    Hello.. When I switch on the iPod Green light appears. after 10 - 15 secs 3 times orange light blinks... After that I wont be able to increase / decrease the volume nor change the song. If I need to change the song, I should switch off n switch it on back. Actually I washed the iPod. It was in my jeans pocket.. Put in the washing maching without knowing that iPod was in the pocket. Charge also not staying long...
    **Warranty is there for the iPod. Unfortunately it has two dents, so its not eligible for the replacement..

  • Mac shuts down if I do not keep either the Fn, Command or control button held down ?

    Hi. I have a mac book pro late 2011 model. I am running Mavericks but but I have a problem where my mac shuts down if I do not keep either the Fn, Command or control button held down. Also if/when this shut down happens I need to hold the shift-control-option keys to restart the mac.
    Anybody got any advice for me ?
    Many thanks
    Paul

    Try resetting the SMC.
    Barry

  • Satellite U200-128 & Vista: FN & Control buttons don't work

    I upgraded my notebook's OS from XP to Vista.
    But after I changed my OS, some functions are not operating anymore, I.E. the multimedia keys (which is located just above the keyboard, right next to the power key), and the FN keys (screen backlight dimmer, wifi key, etc).
    Can someone assist me with this?
    I've already downloaded Toshiba software made for U200 for Vista and yet I can't seem to fix it like I did with an XP OS previously.

    Hi
    You have to install the Toshiba Vista Value Added Package to get the Toshiba Control buttons functionality.
    Also the FN buttons should work after the VAP installation.
    The point is that Vista FlashCards controls the FN buttons and the FlashCards are a part of the VAP.
    I would also recommend installing the Button Support because it allows you to customize and preset TOSHIBA special button settings
    Bye

  • Qosmio G40: Vista Ultimate - Control buttons don't work properly

    Hello friends,
    I have a Qosmio G40 for a few months and everything is working well till now.
    The problem is related to the front operation panel.
    If i am using Windows Media Player, the buttons PLAY/STOP/PAUSE/FORWARD/BACKWARD work well, but if i try to use (in any case) the other buttons like REC or TURN LEDS ON or DOLBY, the button makes the usual sound but nothing happens, doesn't open any program that is supposed to open.
    Does anyone have any idea of why this is happening. I've been trying to look for any configuration software of these buttons but can't seem to find any.
    My system is Windows Vista Ultimate.
    Best Regards,
    Ricardo Monteiro

    Hi
    The Toshiba European driver page provides the AV Controller Manager.
    This tool allows you to customize and preset TOSHIBA AV Control button settings.
    Maybe you should install this tool and should check it again.
    Additionally it would be advisable to reinstall the VAP
    Check it out!

  • Equium P300 - Control buttons don't work running Win XP

    Hi I am looking for some help with a problem with a Equium P300 laptop,
    This is my brother's laptop, he bought it about 18 months ago, it came with Vista, he didn't want this as he preferred to have XP so I changed the operating software to XP using the drivers available on Toshiba's website to update to the correct drivers.
    This has worked fine for the last 18 months however recently when the laptop is turned off, the touch sensitive hotkeys stay illuminated, even when unplugged from the power source, and do not function.
    Previously if it has been turned off and you push one of the hotkeys the laptop would turn on but it is no longer doing this.
    I am wondering if anyone has had experience of this previously?
    Or does anyone have any suggestions on how to fix this problem or even what is causing the problem?
    Thanks in advance for any help you can offer
    Keith

    Hi
    In you are using Win XP on this notebook, then you should update the BIOS because there is an special BIOS for Win XP!
    Furthermore the Toshiba Multimedia Control buttons are controlled by Toshiba Controls tool. You can download it from the Toshiba driver page.
    Regarding the illumination buttons;
    As far as I know you can enabled and disable this in BIOS itself!
    Check the BIOS settings,
    Greets

  • Volume control buttons don't work for iTunes in speaker mode

    Using onboard speakers (no headset on my iPhone 4S, the speaker buttons are not working.  In fact the slider ICON in missing in playing music as well as the ringer ICON that comes up when I press the buttons.
    I can go into settings, Sounds and manually move the slider for Ringer and Alerts, with "Change with Buttons" set "on, I can then press the volumn buttons on the side and see the slider move up and down (right and left).  But as soon as I leave that screen and press either volumn up or down on the side, the Ringer ICON comes up but the slider part is gone.
    In this case, there is no sound out of the speakers.  However "Siri" works fine.
    And in phone mode, I can use speakerphone and hear audio out of the speakers.  (In fact in phone mode, speakers or headset works fine).
    All other apps the speakers are inop and the volum control buttons are inop.
    It's like it's in perminent "mute".

    https://discussions.apple.com/thread/3938840?start=0&tstart=0
    I got out my air compressor and literally blew the S* out of the docking port.  I did dock the iPhone to my car dock port as a test, played music through the car.  Then undocked and the volume control and speaker sounds all restored.
    Not 100% it was cleaning the docking port or that I unwedged the software by docking into some different device.

  • M30 - Front Mode and Audio/Video Control buttons don't work

    Hi
    The Front Mode and Audio/Video Control Buttons Don't Work
    Any ideas?
    Thanks

    Hi
    As far as I know the Toshiba Controls utility is responsible for key usage.
    Did you try to install Toshiba Controls?
    Check the Toshiba driver page for this driver.
    Bye

Maybe you are looking for