Confirmation messages are truncated in window

The confirmation message shown after recompiling views, etc. has the top half of the text cut off. If I resize the window, the text becomes visible. Is there a way to change the default size of the popup windows to avoid the resizing? I am using Windows Vista and Oracle 11g. I've tried changing the theme in Preferences with no change. I've also searched this forum without finding anyone with a similar issue.

I upgraded to version 2.1 and that resolved the problem. So far the new version has displayed additional improvements including compiling views after a database import - where invalid dependent views are also recompiled.

Similar Messages

  • Hi every time I navigate to a new page on facebook, I get the same confirmation message, Are you sure you want to navigate away from this page? Press OK to continue, or Cancel to stay on the current page. What I want to know is how to stop this message

    When I click on a navigation button, a message box appears asking if I am sure I want to navigate away from this page.

    This issue can be caused by Facebook gadgets.<br />
    You will have to check that out by removing each of them until you find the culprit.<br />
    If you added or updated gadgets recently then start with those.
    See:
    * [[Troubleshooting extensions and themes]]

  • When I login, all of my desktop items are gone, the "Finder" icon is bouncing and a message asking to restore windows is blinking but unresponsive. I can't exit out of it. What do I do? I've tried force quitting, and it doesn't get rid of it.

    When I login, all of my desktop items are gone, the "Finder" icon is bouncing and a message asking to restore windows is blinking but unresponsive. I can't exit out of it. What do I do? I've tried force quitting, and it doesn't get rid of this message. When I login to my husband's account, this message does not appear.

    Hey sunnyday7!
    Here is an article that can help you address this issue:
    OS X: How to quit an unresponsive application using Force Quit
    http://support.apple.com/kb/ht3411
    Additional Information
    OS X automatically relaunches the Finder when it is quit. If the Finder is unresponsive, use Force Quit to relaunch it. Select Finder in the Force Quit Window or Dock, then click Relaunch.
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Warning messages are not displayed in confirmation

    Hi,
    We are working with SRM 5.0 classic scenario. Our issue is warning messages are not displayed whenever we press the CONFIRM or DELETE button in the confirmation, however warning messages are displayed if we press CHECK button in the confirmation.
    Please suggest the solution to display the warning messages while clicking CONFIRM or DELETE button in the confirmation.
    Thank you
    Natarajan

    Hi Muthu,
    Thanks for your reply. We raised the OSS message for this issue. As per  the standard system behaviour, warning messages will not be diplayed when " DLETETE" button pressed.
    In the DELETE mode, the system will display only the first EXPRESS
    ERROR message and not WARNING messages.
    Inorder to maintain an error message as EXPRESS, the FIELD_NAME
    (i.e ls_message-field_name) has to be assigned with the value
    EXPRESS.
    For example,
    ls_message-msgty = 'E'.
    ls_message-msgid = 'ZF'.
    ls_message-msgno = '000'.
    ls_message-field_name = 'EXPRESS'
    Kindly note that in the DELETE mode, the system does not display
    EXPRESS message with msgty = 'W'.
    Only EXPRESS message with msgty = 'E' is recognised and displayed.
    The Warning messages will be displayed only during the CHECK mode.
    Thank You
    Natarajan

  • Windows Live mail - Imported sent messages are incorrectly displaying destination address

    I imported Windows live mail messages from XP to 8.1... everything is ok except for the fact that the "Sent" messages are listed as sent to "the owners address" which is really the "source" address for all these old sent messages....Client
    needs these back to how they were on the XP machine... This is a result of importing using the import tool method from the file menu, and the same result after I did it manually by dragging old files into the new "Windows live mail" sub-directory
    (sent folder).... I think its a setting or something I need to change so I can either redo it....

    VTS
    Windows live mail questions are better asked
    here
    Wanikiya and Dyami--Team Zigzag

  • You can't send SMS or text messages to a non-Apple phone (such as an Android, Windows, or BlackBerry phone), because the messages are sent as iMessage

    You can't send SMS or text messages to a non-Apple phone (such as an Android, Windows, or BlackBerry phone), because the messages are sent as iMessage

    Yes, you can. I do it many, many times a day. If you're trying to send a message to someone who used to have an iPhone and who didn't disable iMessage before switching phones, they will need to unregister their number with iMessage:
    https://selfsolve.apple.com/deregister-imessage
    You also need to have SMS enabled with your carrier to send messages to non-iPhones.

  • If my Adobe Muse and Air apps are  both up to date as of today and I cannot open a Muse file, what are my options? I get an error message regarding the Progress Window showing and then Muse crashes.

    If my Adobe Muse and Air apps are both up to date (as of today) and I cannot open a Muse file, what are my options? While Muse is relinking assets I get an error message regarding the Progress Window "showing" and then Muse crashes.

    Hi there,
    Do you get this error while opening a particular file or all files?
    Please try opening a different .muse file, and check if it does the same?
    Ar you opening a .muse which is saved on a network drive?
    Thanks.

  • Writting confirmation message??

    Hi all friends,
    I am developing one uploading software it is a total automatic process of uploading user only copy the files in predefind folder and click on upload button once and my software starts uploading one by one from queue and move the file one by one into another folder automatically after completion of uploading.After that in between uploading if user copy more files in that folder my software automatically takes those file for uploading not require to click on upload button again.Now I am facing problem on writing confirmation message of uploading of every file on my swing interface which my servlet writing on PrintStream after completion of writing of every file on destination.But my interafce not writing those confirmation messages on textArea but it is writing confirmation message of last file on Dos-Prompt coz iam running my application from Dos-prompt.I want to write every file's uploading confirmation message on textArea of my swing application.Can any one plz guide me how I can do that.Below r my codes:-
    swing application(Iam pasting those portion only):-
    ===================
    class Loglater implements Runnable {
    String msg;
    public Loglater(String s) { msg = s; };
    public void run() { log(msg); }
    public void log(String msg) {
    if (SwingUtilities.isEventDispatchThread()) {
    textArea.append(msg);
    textArea.append("\n");
    System.err.println(msg);
    else {
    SwingUtilities.invokeLater(new Loglater(msg));
    return;
    servlet:-
    ========
    import java.io.*;
    import java.util.Enumeration;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class RecvFileServlet extends HttpServlet {
    String s,str,str1,filename,path;
    public void init() throws ServletException {
    super.init();
    baseFile = new File(BASE_DIR);
    str="false";
    str1="false";
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException
    response.sendError(response.SC_NOT_ACCEPTABLE, "Must use POST method.");
    public void doPost(HttpServletRequest request,HttpServletResponse response)
    throws ServletException, IOException
    PrintStream pos = new PrintStream(response.getOutputStream());
    response.setContentType("text/plain");
    filename = request.getParameter("name");
    path = request.getParameter("path");
    File outfile = new File(filename);
    System.out.println("path value = " + ((path == null)?("null"):(path)));
    System.out.println("name value = " + ((filename == null)?("null"):(filename)));
    if (path != null && filename != null) {
    outfile = new File(path, filename);
    System.err.println("Final output file: " +
    outfile.getAbsolutePath());
    // create a DataInputStream to read from sender
    DataInputStream dis;
    dis = new DataInputStream(request.getInputStream());
    OutputStream os;
    // create file output stream to write the output file
    System.err.println("Using output file " + outfile);
    os = new BufferedOutputStream(new FileOutputStream(outfile));
    int cc;
    byte [] buf = new byte[1024];
    long tot = 0;
    // read from the input stream and write to the file
    try {
    for(cc = dis.read(buf, 0, 1024);cc > 0 ; cc = dis.read(buf, 0, 1024))
    os.write(buf, 0, cc);
    tot += cc;
    System.err.print("+" + cc + "(" + tot + ")");
    catch (IOException ie) {
    try { os.close(); } catch (Exception e2) { }
    pos.println("Problem : " + ie.getMessage());
    // done reading and writing, close the file output stream
    System.err.println("Write" + tot + " bytes.");
    os.close();
    // Send back a response message to the application
    pos.println("File" +" "+ filename+" "+"Upload Completed !");
    Regards
    Bikash

    OK, he must have just put that limit in because of some reports of looping, although when I tested it, it seemed to work.
    If you are happy with running javascripts, there is a java script to do the same thing in the Apple iTunes COM SDK which you can download from here:
    http://developer.apple.com/sdk/itunescomsdk.html
    I wouldn't bother unless you have some knowledge of how to run scripts from the cmd Window.
    EDIT added later, sorry I am going mad here, I was talking about another script. What you need to do is to delete your iTunes preference files which resets iTunes to the state it was in when you first installed it.
    May need to make hidden files visible
    My Documents>Tools>Folder Options>View
    Check Show hidden files and folders
    -- Quit iTunes
    -- Delete C:\Documents and Settings\<your username>\Application Data\Apple Computer\iTunes\iTunes.pref and/or iTunesPrefs.xml
    -- Delete C:\Documents and Settings\<your username>\Local Settings\Application Data\Apple Computer Inc\iTunes.pref and/or iTunesPrefs.xml
    For Vista the files are in:
    C:\Users\username\AppData\Local\Apple Computer\iTunes
    C:\Users\username\AppData\Roaming\Apple Computer\iTunes

  • Prob.. confirm message

    hey...
    its the updation query.In this page when i click the update button it updates the values in the row..and this query is working...
    I want to do that..when i click a update button it gives me a confirms message whether did u want to update the row and also displaying the particular gl_code no in that confirms message.when i click on yes it updates the row..otherwise it doesnot.
    after updation it shows message that this particular gl_code no is has been updated.
    <%
    String action = request.getParameter("action");
    if (action != null && action.equals("update")) {
    conn.setAutoCommit(false);
    PreparedStatement pstatement = conn.prepareStatement(
    "UPDATE gl_mast SET gl_descr = ?, db_amt = ?, " +
    "cr_amt = ?, gl_type = ? , gl_pct = ? WHERE gl_code=?");
    pstatement.setString(1, request.getParameter("gl_descr"));
    pstatement.setFloat(2,Float.parseFloat(request.getParameter("db_amt")));
    pstatement.setFloat(3,Float.parseFloat(request.getParameter("cr_amt")));
    pstatement.setString(4, request.getParameter("gl_type"));
    pstatement.setFloat(5,Float.parseFloat(request.getParameter("gl_pct")));
    pstatement.setInt(6,Integer.parseInt(request.getParameter("gl_code")));
    int rowCount = pstatement.executeUpdate();
    conn.setAutoCommit(false);
    conn.setAutoCommit(true);
    %>
    <%
    Statement statement = conn.createStatement();
    ResultSet rs = statement.executeQuery
    ("SELECT * FROM gl_mast ");
    %>
    <form action="gl_update.jsp" method="get">
    <input type="hidden" value="update" name="action">
    <tr>
    <td><input value="<%= rs.getInt("gl_code") %>" size="5" name="gl_code"></td>
    <td><input value="<%= rs.getString("gl_descr") %>" size="55" name="gl_descr"></td>
    <td><input value="<%= rs.getFloat("db_amt") %>" size="12" name="db_amt"></td>
    <td><input value="<%= rs.getFloat("cr_amt") %>" size="12" name="cr_amt"></td>
    <td><input value="<%= rs.getString("gl_type") %>" size="3" name="gl_type"></td>
    <td><input value="<%= rs.getFloat("gl_pct") %>"size="5" name="gl_pct"></td>
    <td><input type="submit" value="Update"></td>
    </tr>
    </form>

    int rowCount = pstatement.executeUpdate();
    conn.setAutoCommit(false);
    conn.setAutoCommit(true);
    Just a doubt... could you tell me why you are doing this?
    ***Annie***

  • Cisco 5.0 "Your messages are not available now" after exchange 2010 and DC migration to a new host

    Guys,
    First of all, thanks for looking at this post. Hopefully you guys can help me out. My unity users, when dialing into voicemail are getting the message "Your messages are not available now".
    Services in error state under the event viewer:
    Event Type:    Error
    Event Source:    CSAgent
    Event Category:    Kernel Rule 
    Event ID:    256
    Date:        7/29/2014
    Time:        11:42:41 AM
    User:        N/A
    Computer:    UNITY
    Description:
    A packet with a bad transport layer header was detected. Reason: Illegal TCP reserved flags set using interface Wired\HP NC324i PCIe Dual Port Gigabit Server Adapter. TCP: 00.000.00.000/443->00.00.0.00/1241, flags 0x10. The operation was denied.
    Event Type:    Error
    Event Source:    CiscoUnity_MALEx
    Event Category:    Error 
    Event ID:    30012
    Date:        7/29/2014
    Time:        11:44:27 AM
    User:        N/A
    Computer:    UNITY
    Description:
    An occurred which prevents successful Exchange access by CsBMsgConnector via MAPI.
    This is typically an indication of configuration issues with Unity, Exchange, or the MAPI subsystem.
    Verify that the Unity services accounts are granted the correct permissions and that there are no issues with installation.  The SysCheck utility may assist in diagnosing the problem.
    Event Type:    Error
    Event Source:    CiscoUnity_Doh
    Event Category:    Error 
    Event ID:    32013
    Date:        7/29/2014
    Time:        11:44:27 AM
    User:        N/A
    Computer:    UNITY
    Description:
    Doh logon failed due to messaging component logon error: 8004052eH
    I found and followed to the letter:
    http://www.cisco.com/c/en/us/support/docs/voice-unified-communications/unity/107323-unity-error.html
    I also went ahead and ran GUSI with some mixed results under environment information:
    SQL Version = Microsoft SQL Server  2000 - 8.00.2282: unknown SP
         SQL Edition = Desktop Engine
         Windows version =  5.2 Build 3790: Service Pack 2
         Outlook is not installed on the local server
         MAPI Provider : CDO Version - 6.5.8211.0
         MAPI Shared Memory: (HKLM:SOFTWARE\Microsoft\Windows Messaging Subsystem\Applications\<process>\SharedMemMaxSize)
                AvCsMgr : is set to recommended value
                AvMsgStoreMonitorSvr : RegKey not found.  Recommend add the key AvMsgStoreMonitorSvr and set DWORD SharedMemMaxSize with a value of 4194304 (decimal)
                AvNotifierMgr : RegKey not found.  Recommend add the key AvNotifierMgr and set DWORD SharedMemMaxSize with a value of 4194304 (decimal)
                AvUMRSyncSvr : is set to recommended value
                CsBMsgConnector : RegKey not found.  Recommend add the key CsBMsgConnector and set DWORD SharedMemMaxSize with a value of 4194304 (decimal)
                CsBridgeConnector : RegKey not found.  Recommend add the key CsBridgeConnector and set DWORD SharedMemMaxSize with a value of 4194304 (decimal)
                CsVpimConnector : RegKey not found.  Recommend add the key CsVpimConnector and set DWORD SharedMemMaxSize with a value of 4194304 (decimal)
             TCPChimney : Disabled
             RSS : Disabled
             *Pulled from UnityDB Configuration Table*
             ExcludeAllReceipts : 0
             ExcludeReturnReceipts : 0
             DisableSearchFolderUse : 0
             MinSearchFolderLifeHours : 1
             OptimizeSearchFolderUse : 0
    I tried following and deleting the Unity System Profile:
    https://supportforums.cisco.com/discussion/11249996/unity-501-exchange-2010-unable-logon-mapi-mailbox
    But I am still scratching my head. Any direction will be appreciated.

    Turns out that unity came back after all this. Maybe it just needed time. I think I answered my own question.  Anyways, this post could serve for future reference. 

  • All error messages in a single window

    Hi,
    Just a small help needed . Actually i want that all the error messages should be displayed in a single window for the mandatory fields check,when one try to save the form.I had made a function which is being called by the fields at their pre save event for the mandatory check and all the error messages are been taken into a global array and displayed.But the problem is that the error message window is displayed only for the first time when i try to save the form and after that no mandatory check is being done .What might be the issue with my logic or anybody can provide some other pointers that how all the error messages can be displayed in a single window in the end ?
    Thanks

    I do not know of a way to do this in the current product.
    Paul

  • Hi, I've been trying for days to download Windows support software via Bootcamp assistant, but it always failed with message 'Can't install Windows Support Software because it is not currently available from the Software update server.' Any advice welcome

    Hi,
    I've been trying for days to download Windows support software via Bootcamp assistant but it always fails with message 'Can't install windows software because it is not currently available from the software update server.'
    Anyone else had problems or success with this?
    Thanks in advance.

    9thdoc wrote:
    I'm getting a similar but distinct error message in snow leopard: Download could not continue. "The windows support software is not available" and have no original snow leopard instal disc with me.
    Your issue is completely different. You are running Snow Leopard. There is no download for Windows Support software for Snow Leopard, hence the error you see. Snow Leopard Windows Support software is on the Snow Leopard installation disk.
    You need the Snow Leopard installation disk or a replacement for it.

  • Is the WM_TABLET_FLICK window proc message still sent in Windows 8.1?

    My application is receiving Flick message when running on windows 7, but on windows 8.1 I get WM_GESTURE messages for short pans rather than flicks.  Is WM_TABLET_FLICK still supported or is there another way to detect flicks now?

    Hi Sam,
    Yes, WM_TABLET_FLICK is still supported on Windows 8.1.
    MSDN documentation below also confirms the minimum supported client. However, it applies only to desktop apps (not WinRT or metro apps).
    https://msdn.microsoft.com/en-us/library/windows/desktop/ms701172(v=vs.85).aspx
    Further, WM_TABLET_FLICK message is recieved on empty form. If your form contains child controls, it would stop firing. Instead, you can use WM_GESTURENOTIFY message to get the handle of the control which is receiving WM_TABLET_MESSAGE. Please see the
    discussion in the below link for more details:
    https://technet.microsoft.com/eS-es/library/dd353242.aspx
    (Please mark as answer if this resolves your query. Please upvote if it is helpful)
    Regards,
    Rajesh

  • OSX: 10.9.4 Safari: 7.0.5 message: "Are you sure you want to send a form again?"

    My system:
    Mac Mini
    Processor 2.6 GHz Intel Core i7
    Memory  16 GB 1600 MHz DDR3
    Mavericks 10.9.4 (13E28)
    Safari 7.0.5
    Most annoying message keeps coming up on several websites.
    If you go here:
    http://www.bedbathandbeyond.com/store/s/laundry-sorter
    and click on the "Honey-Can-Do® Wicker Corner Hamper"
    and once in that item's site, you click to go back, I'm getting
    a message, "Are you sure you want to send a form again?"
    I don't enter anything into the screen of the item.  All I do is
    look at it, and try to click back and I keep getting this annoying
    message.
    And it happens with all other items on the BBB site.
    How to turn off this blankety-blank message??
    Its such a pain to have to keep clicking "Send" !!
    HALP!!

    Hi ...
    I followed your instructions, went back a page but no warning on Safari. Might be a cookies, cache, or extensions issue.
    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Click:   Remove All Website Data
    Then delete the cache.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If nothing above helped, troubleshoot Safari extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

  • Sent messages are no longer saved

    Hi guys!
    Mail does no longer save my sent messages although the setting are set that way! Any suggestions? It's pretty annoying because you never know if messages are sent. I also doesn't make that "sending sound" anymore.
    Thanks for your help - will try to help you too if i know answers...
    luc

    If store sent messages on the server is not selected under the Mailbox Behaviors tab for the account preferences, quit Mail first and using the Finder go to Home > Library > Mail > Mailboxes > Sent Messages (name of your IMAP account in parenthesis).mbox.
    Confirm there is only one Sent Messages.mbox folder for this account in the Mailboxes folder.
    If so, move this mailbox folder to the Desktop.
    Launch Mail and a new Sent Messages.mbox folder for the account will be created automatically by Mail within the Mailboxes folder when sending the next message with the account. Send a test message to yourself to confirm if the sent message is available within the account's Sent mailbox under Sent in the mailboxes drawer.
    If so, you can use the Import Mailboxes feature to import the old Sent Messages.mbox for this account moved to the Desktop.

Maybe you are looking for