Hidden Block

Hi,
I have a hidden block in a form that I populate with data. And on commit, I save that data to the table. Then I want to clear the content from that hidden block. This is the commands I use:
go_block('template_component_nesting');
            clear_record;But I get this error:
FRM-40106:No Navigable Items in Destination block.
What should I do?
Thanks in advance,
Marc.

Yes it will....but practically it will not..... as its size (height) and position (X:1 , Y:1) will make it practiacally invisible..... There will be only a cursor which will flash in the top-leftmost corner of your form.....!!!!
Sim

Similar Messages

  • Master - detail block (many-to-many)

    Hello, , I have 2 tables:
    1-(parts)its primary key : p_id
    2-(suppliers)its primary key : s_id
    and they have many-to-many relationship between them .
    the table Resulted from the relationship is(part_supp)
    How can I create master-detail block Based on this relationship.In other words, which of tables will be the master and which of them well be detail.
    I am using form 6i ..
    please help.....

    M3ATH wrote:
    Hello, , I have 2 tables:
    1-(parts)its primary key : p_id
    2-(suppliers)its primary key : s_id
    and they have many-to-many relationship between them .Many to many relation between two table isn't a good database design. You have to a junction table between them.
    the table Resulted from the relationship is(part_supp)Is this your junction table(part_supp) ?
    >
    How can I create master-detail block Based on this relationship.In other words, which of tables will be the master and which of them well be detail.If part_supp is your junction table between parts and suppliers then, try this..
    Use the junction table as a hidden block, then establish a standard Forms relation between
    Parts and (hidden)part_supp then between part_supp and suppliersHope this helps

  • Problem while hide a block on selection screen on button press

    Hi,
    I have added two buttons on the application toolbar of the selection screen. I have input fields under two blocks on the selection-screen. Initially the second block is hidden. If I press the button 1 the second block should be made visible.
    For this to happen, I captured the button 1 click event using the following statement.
    IF sscrfields-ucomm = 'FC01'.
    Inside the if ... endif, I looped at the screen and made the second block visible. It was working fine.
    loop at screen.
      if screen-group4 = '013'.
         screen-invisible = 1.
         screen-active    = 0.
      endif.
    endloop.
    Later the second button was added. Now when i run the report for the first time, if button 2 is clicked the hidden block appears on the selection screen even though i have not added any code for it.
    Just to check, i commented the logic to display the hidden block on button 1 click event. Even without any code the first time i press any of the two buttons added on the application toolbar the hidden block is displayed.
    I saved a variant for the report.
    During execution of the report, if i select any variant then the hidden block is displayed.
    Can anyone please tell me how to fix this problem.
    Regards,
    T2.

    Hi All,
    The problem is solved.
    Everyone was confusing between the pushbutton on the selectio-screen and on apllication toolbar
    (where you have the execute icon).
    Please find the code below. Thanks for you time and help. I appreciate it.
    REPORT ztest.
    INCLUDE <icon>.
    *  TABLES                                                              *
    TABLES: t001,              " Company Codes
            lfa1,              " Vendor Master (General Section)
            sscrfields.        " Fields on selection screens
    * To capture button press event.
    DATA: gv_button_press       TYPE c.
    * Menu Painter: Program interface for dynamic texts
    DATA: gs_dyntxt             TYPE smp_dyntxt.
    *  SELECTION SCREEN                                                    *
    SELECTION-SCREEN FUNCTION KEY 1.
    SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-s01.
    * Company Code.
    SELECTION-SCREEN BEGIN OF BLOCK ccode WITH FRAME TITLE text-s02.
    SELECT-OPTIONS: s_bukrs FOR t001-bukrs OBLIGATORY MEMORY ID buk.
    SELECTION-SCREEN END OF BLOCK ccode.
    SELECTION-SCREEN END OF BLOCK blk1.
    SELECTION-SCREEN BEGIN OF BLOCK dsel WITH FRAME TITLE text-s04.
    * Vendor Master.
    SELECTION-SCREEN BEGIN OF BLOCK vend WITH FRAME TITLE text-s07.
    SELECT-OPTIONS: s_konzs FOR lfa1-konzs MODIF ID aw1.
    SELECT-OPTIONS: s_txcd1 FOR lfa1-stcd1 MODIF ID aw1.
    SELECT-OPTIONS: s_txcd2 FOR lfa1-stcd2 MODIF ID aw1.
    SELECTION-SCREEN END OF BLOCK vend.
    SELECTION-SCREEN END OF BLOCK dsel.
    * INITIALIZATION                                                       *
    INITIALIZATION.
    * Populate the Application toolbar button attributes.
      PERFORM populate_app_toolbar_buttons.
    * Hide the dynamic screen intially.
      PERFORM hide_screenfields.
    * AT SELECTION SCREEN                                                  *
    AT SELECTION-SCREEN.
    * Capture the button press event.
      PERFORM capture_button_press.
    * AT SELECTION-SCREEN OUTPUT.                                          *
    AT SELECTION-SCREEN OUTPUT.
    * Show/Hide the dynamic selection screen based on button press.
      PERFORM adapt_screen.
    *&  Form  populate_app_toolbar_buttons                                 *
    *   Display Icon on the application toolbar buttons. Also set the      *
    *   function codes for these buttons.                                  *
    FORM populate_app_toolbar_buttons.
      CLEAR gs_dyntxt.
      WRITE icon_fencing     TO gs_dyntxt-icon_id AS ICON.
      MOVE  text-b01         TO gs_dyntxt-quickinfo.   " Dynamic Selections
      MOVE gs_dyntxt         TO sscrfields-functxt_01.
    ENDFORM.                    " populate_app_toolbar_buttons
    *&  Form  hide_screenfields                                            *
    *   Initially hide the Dynamic selection screen.                       *
    FORM hide_screenfields.
      LOOP AT SCREEN.
        IF screen-group1 = 'AW1'.
          screen-invisible = '1'.
          screen-active    = '0'.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    ENDFORM.                    " hide_screenfields
    *&  Form  capture_button_press                                         *
    *   Set the flag based on button press event. Appication bar button    *
    *   tcode is available only at 'At Selection-screen' event.            *
    *   Use the captured data at 'At Selection-screen Output' event.       *
    *   Screen adjustments is possible only under this event.              *
    FORM capture_button_press.
      IF sscrfields-ucomm = 'FC01'.
        IF gv_button_press IS INITIAL.
          gv_button_press = 'X'.
        ELSEIF gv_button_press EQ 'X'.
          CLEAR gv_button_press.
        ENDIF.
      ENDIF.
    ENDFORM.                    " capture_button_press
    *&  Form  adapt_screen                                                 *
    *   Show/Hide the dynamic selection screen based on button press       *
    *   captured at 'At selection-screen' event.                           *
    FORM adapt_screen.
    * If button press flag is initial hide the dynamic selection screen.
      IF gv_button_press IS INITIAL.
        LOOP AT SCREEN.
          IF screen-group1 = 'AW1'.
            screen-invisible = '1'.
            screen-active    = '0'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
    * Elseif button press flag is 'X' show the dynamic selection screen.
      ELSEIF gv_button_press EQ 'X'.
        LOOP AT SCREEN.
          IF screen-group1 = 'AW1'.
            screen-invisible = '0'.
            screen-active    = '1'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    " adapt_screen
    Regards,
    T2
    Message was edited by: Titu Joseph

  • IT0185 Field value is not getting displayed on the Payslip

    Hi Friends,
    I have the similar issue of this post as Unable to View the IT0185 Subtype National Ins# (ICNUM) in Payslip.
    Little confused with PE51_CheckTab entries and other stuff.
    Could anybody please suggest as to how to resolve this?
    thanks in advance.

    I assume that you are referring to a brand new field on the second step that was not on the form of the first step. If this is the case, then you should put the field in a hidden block of the first steps form. Default values and Auto-population from shells/single record BPs only occur of the create step, even if they are not used on that step. As long as you put them on the create step (even in a hidden block) they should initialize.

  • Default Pulldown value is not getting displayed on upper form of Second step of Unifier Workflow

    Hi,
    I'm new to Unifier and facing one issue while using the PullDown field on Upper. If I use the Pull down field with Default option selected in DataDefination on Upper form of Workflow's first step then it works fine, whereas if I use it on upper form of workflow's second step or any other step apart from first then it doesn't displayed. Please let me know how can i get the default value on upper form of any step.
    Thanks in advance.
    Abhishek@

    I assume that you are referring to a brand new field on the second step that was not on the form of the first step. If this is the case, then you should put the field in a hidden block of the first steps form. Default values and Auto-population from shells/single record BPs only occur of the create step, even if they are not used on that step. As long as you put them on the create step (even in a hidden block) they should initialize.

  • SUN ONE Ldap - Default value is not getting displayed

    Hello,
    I have created an attribute in slapd.user_at.conf and it is associated in slapd.user_oc.conf.
    The default value for the attribute has been given in the SUN ONE Ldap. But it is not getting displayed in our application.
    Can any one help me in this for this issue.
    Regards,
    K. Senthil Kumar

    I assume that you are referring to a brand new field on the second step that was not on the form of the first step. If this is the case, then you should put the field in a hidden block of the first steps form. Default values and Auto-population from shells/single record BPs only occur of the create step, even if they are not used on that step. As long as you put them on the create step (even in a hidden block) they should initialize.

  • How can I use my Html/CSS Navigation bar to control an Edge Stage?

    I have an HTML/CSS navigation bar set up in my EDGE created page. The Navbar is not created in edge. I would like to use these buttons to control the stage. 
    Inside the stage the main timeline has labels and stop actions every 1.5 secs to create a horizontally sliding site.
    The labels are as follows: home, work, blog, profile, and contact. I can easily use a symbol created inside edge for example:
    sym.play("home");
    and animate a 6000px width symbol across my 1000px stage in 1000px increments.
    I do not want to use a symbol inside of edge to do this because I cannot create the effect that the html/css navbar has on mouseover inside of edge.
    So I am interested in knowing if I can use this bar to control my main timeline so I don't have to sacrifice design for functionality.
    currently the link list is setup with the standard hyperlink. What code would I use to play the stage on click of the html navbar?
    Many thanks to anyone who can help with this!
    Here is the code for the navbar:
    <div id="menu"><ul class="block-menu">
                        <li><a href="/home" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
                        <li><a href="/demos" class="three-d">
                                  Work
                                  <span class="three-d-box"><span class="front">Work</span><span class="back">Work</span></span>
                        </a></li>
                        <li><a href="/deals" class="three-d">
                                  Blog
                                  <span class="three-d-box"><span class="front">Blog</span><span class="back">Blog</span></span>
                        </a></li>
                        <li><a href="/about" class="three-d">
                                  Profile
                                  <span class="three-d-box"><span class="front">Profile</span><span class="back">Profile</span></span>
                        </a></li>
            <li><a href="/about" class="three-d">
                                  Contact
                                  <span class="three-d-box"><span class="front">Contact</span><span class="back">Contact</span></span>
                        </a></li>
              </ul>
    <span class="block-menu"></span></div>
    Full HTML:
    <!DOCTYPE html>
    <html>
    <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
              <title>Untitled</title>
    <!--Adobe Edge Runtime-->
        <script type="text/javascript" charset="utf-8" src="workapp_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-57204389 { visibility:hidden; }
                  .block-menu {
                                  display: block;
                                  background: #000;
                        .block-menu li {
                                  display: inline-block;
                        .block-menu li a {
                                  color: #fff;
                                  display: block;
                                  text-decoration: none;
                                  font-family: 'Passion One',Arial,sans-serif;
                                  -webkit-font-smoothing: antialiased;
                                  -moz-font-smoothing: antialiased;
                                  font-smoothing: antialiased;
                                  text-transform: uppercase;
                                  overflow: visible;
                                  line-height: 20px;
                                  font-size: 24px;
                                  padding: 15px 10px;
                        /* animation domination */
                        .three-d {
                                  -webkit-perspective: 200px;
                                  -moz-perspective: 200px;
                                  perspective: 200px;
                                  -webkit-transition: all .07s linear;
                                  -moz-transition: all .07s linear;
                                  transition: all .07s linear;
                                  position: relative;
                                  .three-d:not(.active):hover {
                                            cursor: pointer;
                                  .three-d:not(.active):hover .three-d-box,
                                  .three-d:not(.active):focus .three-d-box {
                                            -moz-transform: translateZ(-25px) rotateX(90deg);
                                            -webkit-transform: translateZ(-25px) rotateX(90deg);
                                            -o-transform: translateZ(-25px) rotateX(90deg);
                                            transform: translateZ(-25px) rotateX(90deg);
                        .three-d-box {
                                  -webkit-transition: all .3s ease-out;
                                  -moz-transition: all .3s ease-out;
                                  -ms-transition: all .3s ease-out;
                                  -o-transition: all .3s ease-out;
                                  transition: all .3s ease-out;
                                  -webkit-transform: translatez(-25px);
                                  -moz-transform: translatez(-25px);
                                  -o-transform: translatez(-25px);
                                  transform: translatez(-25px);
                                  -webkit-transform-style: preserve-3d;
                                  -moz-transform-style: preserve-3d;
                                  -ms-transform-style: preserve-3d;
                                  -o-transform-style: preserve-3d;
                                  transform-style: preserve-3d;
                                  pointer-events: none;
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  display: block;
                                  width: 100%;
                                  height: 100%;
                        .front {
                                  -webkit-transform: rotatex(0deg) translatez(25px);
                                  -moz-transform: rotatex(0deg) translatez(25px);
                                  -o-transform: rotatex(0deg) translatez(25px);
                                  transform: rotatex(0deg) translatez(25px);
                        .back {
                                  -webkit-transform: rotatex(-90deg) translatez(25px);
                                  -moz-transform: rotatex(-90deg) translatez(25px);
                                  -o-transform: rotatex(-90deg) translatez(25px);
                                  transform: rotatex(-90deg) translatez(25px);
                                  color: #FFE7C4;
                        .front, .back {
                                  display: block;
                                  width: 100%;
                                  height: 100%;
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  background: black;
                                  padding: 15px 10px;
                                  color: white;
                                  pointer-events: none;
                                  -moz-box-sizing: border-box;
                                  box-sizing: border-box;
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body>
    <div id="menu"><ul class="block-menu">
                        <li><a href="/home" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
                        <li><a href="/demos" class="three-d">
                                  Work
                                  <span class="three-d-box"><span class="front">Work</span><span class="back">Work</span></span>
                        </a></li>
                        <li><a href="/deals" class="three-d">
                                  Blog
                                  <span class="three-d-box"><span class="front">Blog</span><span class="back">Blog</span></span>
                        </a></li>
                        <li><a href="/about" class="three-d">
                                  Profile
                                  <span class="three-d-box"><span class="front">Profile</span><span class="back">Profile</span></span>
                        </a></li>
            <li><a href="/about" class="three-d">
                                  Contact
                                  <span class="three-d-box"><span class="front">Contact</span><span class="back">Contact</span></span>
                        </a></li>
              </ul>
    <span class="block-menu"></span></div>
    <div  id="Stage" class="EDGE-57204389">
    </div>
    </body>
    </html>

    I've come across this from the Edge API:
    Edge.getComposition(compId)
    Anyone having trouble with this same issue should try this:
    var targetComp = AdobeEdge.getComposition('TARGETCOMPID');
       targetComp.getStage().play();
    in their trigger or event handler.
    How I got it to work:
    <li><a href="javascript:var targetComp = AdobeEdge.getComposition('EDGE-57204389');
       targetComp.getStage().play();" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>

  • Why wont BLOBS commit in forms

    I used read-image-file in a 'When-image-pressed' trigger to insert the image. It did'nt work with message '47100 - Cant read image file ...'. I noticed other images in the example tables where all around 100k so i resized mine from 900k to 100k and tried again and it worked and committed but it still wouldnt return the image in a query. I then loaded the image through a procedure using DBMS_LOB and then queried the record in Forms and it worked. So
    Why wouldnt the larger image work, i thought blobs were up to 4gb and
    Why is Forms not commiting the image to the database
    Anyone more answers or ideas?

    While you can use DML statements from triggers (and 6i obviously treats them more logically than 4.5), Forms is structured more towards making DML changes through blocks - that is, you type the new record into the block and when you save the form it gets written into the database as an insert.
    Rather than writing to global variables and adding code to the first block's on-update, you could write the record you want insert to a hidden block based on the appropriate table, so that it fits within the "normal" forms DML structure.
    I don't know whether these being committed is considered a bug, but bear in mind that Forms 4.5 as a product is getting VERY old. I haven't used it since some Oracle Apps 10.7 work something like seven years ago.

  • How to make a subform not print if the fields are empty

    I'm once again working on that kind of client form where our agents fill in a bunch of fields on our forms and I only want those fields that are pertinent to that client to print out and I've grouped the fields that go together into separate subforms.
    There are date fields and currency fields that relayout to floating fields in hidden blocks of text that appear when the last text field is exited, ie:
    Subform1  "On 5/14/12 your application was approved. We will pay $100 to your account"
    Subform2  "On 5/14/12 we received your application. We will need further information before you claim for $250 can be approved" etc. Obviously, both of these subforms cannot appear on the letter.
    Jono gave me a great solution for not printing checkboxes that are not checked with a preprint script which worked perfectly and I tried to adapt that to the subforms but alas my skills are lacking. I tried just putting it in each fill in field but then the blocks of text still remained.
    So basically I don't want the subforms that have empty fields to print.
    I'd appreciate any help that can be offered.

    Hi,
    I think that the logic/script should be placed in the area where the user either approves or rejects the claim. This would avoid a prePrint script to check if fields are empty or not.
    If you are stuck with checking if fields are empty on prePrint, then you would just need to check the relevant fields one at a time or use a loop.
    Hope that helps,
    Niall

  • Making a button dissapear once clicked.

    Hi,
    I've created a button which makes a div appear. But what I want to know is make the button either dissapear once clicked or change its function and name to make the div dissapear.
    Problem is I have already used the onClick function, here is the code
    <script language="JavaScript">
    function setVisibility(id, visibility) {
    document.getElementById(id).style.display = visibility;
    </script>
    HTML:
    <p><a href="#" onclick="setVisibility('hidden', 'inline'); this.onclick=function() { return false; };";>See More</a></p>
          <div id="hidden"><time>12/10/2010</time>
          <br />
          <p>Production for No More's music video is under way amd will be with you soon. </p><time>12/10/2010</time>
          <br />
          <p>Production for No More's music video is under way amd will be with you soon. </p>
          </div>
    Any help would be appreciated.
    Tom

    Thats amazing as usual! Works perfectly.
    New problem: I've now added a "read less" button that then hides the 'hidden' div. It goes a little something like this:
         <p><a href="#" id="hoohaa" onclick="setVisibility('hidden', 'block');setVisibility('hoohaa', 'none');return false;">Read More</a> </p>
         <div id="hidden">
         <br />
         <p><a href="#" onclick="setVisibility('hidden', 'none');";>Read Less</a></p>
         <time>12/10/2010</time>
          <br />
          <p>Production for No More's music video is under way amd will be with you soon. </p>
          </div>
    Can I make it so when you click read less the 'read more' button reappears.
    Cheers
    Tom

  • Changes to objects in Unifier

    This was a question that came in from a Unifier user.  Since it is pretty common, I thought I would post it along with my response.
    We are wanting to approach our clients with Unifier however we have a number of them who change their business processes every six months or so. This could include changing the data that is captured within these business processes as well as the workflows. In addition their organizational business hierarchy may evolve.
    What analysis/design guidelines would you give with regards to shell hierarchy, shell and business processes?

      Changes to data (forms)
      This takes 2 formats usually:
    adding data to forms which means new fields
    removing data from forms, which means removing fields
    Adding data is pretty easy.  You simply
    create the new fields (data definitions and data elements as needed)
    mark the object (BP, shell, attribute form) as Draft in uDesigner
    add the DEs to forms as needed
    save the object and mark it Complete
    Reimport into uStage and test, then import to Production when satisfied
    If you added pulldowns or multi-select fields, you need to add values to the data definitions
    So, in this scenario, you now have existing records without this new data.  If the BP had a workflow, you may have records that reached End, or are still in routing.  You have to decide what you want to do with these existing records.  If they do not need the new data, no worries.  But, if they do need the new data, how do you get it there?  If the record is in routing and will go to a form that has the fields on it, great.  If there are many records at the end step, you could either add an editable form to the end step, allow users to change the data, then add a view form to the end step so no future records can have
    the data edited at that step.  Or you can allow bulk edit of the records so the new data can be added manually or via web services call. Keep in mind that the decisions you make here may affect what you do in uDesigner.
    Removing data is more simple.  If the object has gone to production, you cannot remove the fields from the form as that would rip holes in the database (bad!).  So, you simply add them to a hidden block on the form, which means that users cannot put that data in any more.  Follow steps 2-5 above, except you hide the fields on step 3.
    Changes to workflows
    This takes 2 formats usually:
    adding to a workflow
    removing steps, lines/elbows from a workflow
    In either case, if the BP has gone to production, you cannot make changes to a workflow.  If it has only gone to uStage, you can change the workflow.  Assuming the BP has gone to production:
      mark the object (BP) as Draft in uDesigner
    copy the existing workflow to make a new workflow. Make changes to the new workflow as needed.
    save the object and mark it Complete
    Reimport into uStage and test, then import to Production when satisfied
    You will need to go to configuration for the BP and inactivate the old workflow (assuming you don’t want to use it any more)
    Activate the new workflow
    Do BP setup for the new workflow in existing projects or in templates and update projects
    Changes to shells
    This takes 2 formats usually:
    Adding a new shell to the hierarchy
    Removing shells from the hierarchy
    if you need to add a shell, you create it in uDesigner and import it to Unifier.  You configure it to establish its place in the hierarchy.  You can then go to existing shells and change their location to reflect where they now live in the hierarchy.
    If you need to remove a shell, you need to go to configuration and change the hierarchy to allow child shells of the about-to-be-removed shell to go somewhere else, then go to those shells
    and change their location to their new parent, then inactivate the removed shell in configuration.

  • Can't "Retrieve"  Pic Text

    I am trying to send a MMS (ringtones) to my phone via email to the phone from my PC.  I did this with no problems a few weeks ago.  Now for 2 days in a row, I get the text on the phone.....then hit the "Allow" choice and then I get this message. 
    "Someone sent you a message but it can't be retrieved right now"
    I do not have a block on:   Block Premium Messaging    or   Block Picture and Video Messaging
    Every other block is set to on though. 
    Do I have to unblock the "Block All Data Services"  too?  I do not recall if I had this blocked when I first sent the ringtones to the phone as a MMS text.

    Ok   I finally figured out why I could only get basic texts.....
    I had blocked all data setting in the hidden menu of my Kin TwoM phone settings.   OOPS....notti me. 
    This definitely worked well to keep any data fees off my bill, but I will now watch to make sure my blocks I set on my online plan settings, keep the data fees off with this hidden block feature off. 

  • Pullout sidebar help!  When hidden the scrollable frame blocks interactive content beneath it.

    Ok, I feel like this is one of those things that has a really easy answer and I'm just missing it but I have been kicking it around for a few weeks and can't come up with anything.
    Really basic problem:  I have a pull out sidebar for my app as a scrollable frame and it works fine.  It is the top layer of course because it has to always be available from any part of the app. 
    The issue, as I said in the title, is that even when the sidebar is hidden and you can only see the pullout tab, the entire scrollable frame is still invisibly blocking all interactive content beneath it.  So for example any buttons on that side of the app arent clickable, no video controlls, etc etc.  Anytime you click on that side of the app it thinks you are trying to manipulate the scroll frame.
    I don't know what to do!
    Thank you for any ideas.

    Redesign the page. That's simply how it works. The entire space of the frame is always live.
    Try dragging in the middle where there's no content and you'll see that the content still scrolls.
    Bob

  • Group Chat hidden window blocks mouse clicks in top-left corner of screen

    Hey guys, I'm not sure if this is the right place to report Group Chat bugs or not, but we're using Office Communicator Server 2007 R2 Group Chat, Version 3.5.6907.0. 
    The problem is that Group Chat places a hidden window in the top-left corner of the screen, and intermittently it blocks mouse mouse hovers and clicks.  Many people in our office experience this, so it's not just myself.  Closing Group Chat fixes
    the problem, and when you click Exit on the Group Chat tray icon, you can actually see the "Logging out" window appear where the mouse clicks are being blocked.
    Here's a pic showing where the transparent Group Chat box is lying over my Visual Studio app, so I'm unable to click File, Edit, View, or Git.  I used UISpy to find and identify
    the transparent window.
    - Dan - "Can't never could do anything"

    Another user with the exact issue as described above.  After spending a lot of time troubleshooting the problem I have narrowed down the events that produces the 'hidden window'.  If GroupChatConsole.exe is running and the user locks and then unlocks
    their computer, this problem occurs.  This would explain why closing and re-opening Group Chat appears to 'fix' the problem.  If the computer is locked and unlocked again though (with Group Chat running), the problem returns. It doesn't matter if
    the main Group Chat window is open or minimized to the task bar or notification area.
    We have tried all the basic troubleshooting such as uninstall/reinstall, reboot, etc.  We even imaged a brand new laptop and migrated the user to the newer model, but problem starting occurring again after a few days.
    I love troubleshooting challenging problems, but this is something I have never encountered before... and after tirelessly searching the internet, doesn't seem like many others have, either.  I hope someone else can provide some more insight or
    clues to permanently fix this problem!
    Best Regards,
    -J

  • IMessage contact hidden in blocked list?

    Is there a way to block an iMessage contact and NOT have it appear in the Blocked list?

    Unfortunately, I don't think there's a technical answer to this. You can contact your carrier and see what services they offer to control data usage (generally only amounts and times of day, though). I think you're going to be stuck with some tough parenting decisions like some long uncomfortable conversations with the young man and maybe some physical restrictions on the phone (as in taking it away from him).
    I wish you all the best of luck with a tough situation.

Maybe you are looking for

  • Error message from form mail

    This is the error message I keep getting. Parse error: parse error, unexpected T_STRING in /home/ehryckgi/public_html/contact.php on line 13 Here is the code I am using please help. <?php $your_company = $_GET['company']; $your_name = $_GET['name'];

  • Itunes 11 has messed up the menu

    I had Crystal Black installed previously and after the itunes 11 update I have essentially lost the menu bar completely. See the attached screenshot. Any ideas other than a complex reinstall of itunes? Roland

  • Why does Youtube shows up tiny in Firefox browser on Windows 7?

    Just out of nowhere YouTube went crazy in Firefox on Windows 7. It has been fine, then we went to view YouTube and instead of it showing like a normal website and like YT has always done, it shows up tiny, taking up just the middle of the screen and

  • Quicktime in firefox browser

    If i want to download a movie i place the url in cocoawget or what seems to happen in firefox browser is that the quicktime symbol appears in the broswer and the movie downloads then plays in the browswer. Once i close the broswer where is the movie

  • NullPointerException in LDAP Connector

    Hi guys, I'm trying to use the LDAP connector in my applications. I'm following the tutorial on https://identityconnectors.dev.java.net/api_info.html but I'm experiencing a NullPointerException when I call a SEARCH operation. I'm using: Java SDK 1.6