How do I get rid of the characters dialog box?

Concise problem statement: Clicking "Special Characters..." in the Edit menu does nothing at the time of click, but now the "Characters" dialog, with nothing in it, will not go away!
Steps to reproduce problem:
1.Open Adobe Reader
2.Click "Edit"
3.Click "Special Characters..."
Results: Nothing at the time, but every time I click in any other application, and even in Reader, the "Characters" dialog pops up briefly, with no close button and nothing in it but a title, and disappears again. Then I have to wait a second for my cursor to appear in the application I was trying to access. If I click away from this text box, it will come up.  If I click back in the text box, it will come up and I have to wait for the cursor before I can start typing.  I have closed Adobe Reader, but the dialog still pops up.  Shut down and restarted, but it still shows up. Uninstalled Reader and restarted, reinstalled Reader and restarted, opened and closed Reader and restarted, even tried to click to same menu item in the hopes that something I could DEAL with would open, and restarted AGAIN.  Still the dialog pops up even when I have just restarted and haven't opened Reader.  Reader is not in my "Start Up" apps.
I cannot use my computer with this dialog interrupting every action!

What is your operating system?  Reader version?
I cannot see any "Special Characters..." option in my Reader version (11.0.6) on Windows:

Similar Messages

  • How can i get rid of the print dialog box when using api to print an html file

    i am using the systemshell.vi provided by labview the VI is working fine but it will open a dialog box for printer selection and properties. i would like to hide that dialog box and have it print to the default printer with the default properties

    ShellExec is part of lvwutil and merely calls a function in Shell32.dll. There is nothing about the function call that controls the display of the printer dialog. I think that what shell32.dll does when it prints (just like right clicking on the file) is print the file according to what is defined about that file type in Windows Folder Options. On my Win2K system, the print application is defined as "C:\Program Files\Microsoft Office\Office\msohtmed.exe" /p %1. If I remove the /p, then Word starts up and in order to print, I get a printer dialog when choosing Print from the File menu. So it seems like the printer dialog is entirely dependant on the application that does the printing. I get no dialog when I use the VI to print a .txt file. I
    nstead of using shell32, you might want to try some ActiveX method or property of an application like Internet Explorer that can open and print an html file.

  • How do I get rid of the Facebook blue box on my Firefox pages???

    How do I get rid of - and why is - the little blue box with Facebook asking me to go through Facebook instead of directly to where I want to go???
    I do not wish to allow Facebook into my life any more than it is now.
    Thank you

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • How to I get rid of the black outlined box that tells me everything I am clicking on?

    My friend pressed random keys on my computer, and now there is a rectangular square that is black and outlined with a white line, and whatever i put my mouse on, the black box tells me what i have clicked on. And then when I do click on something, it puts a black line around what I have clicked on, it is stressing me out and i have no idea how to get rid of it. Please help.

    Turn off VoiceOver in the Universal Access or Accessibility pane of System Preferences.
    (93733)

  • How do you get rid of the drop down box that appears when you go to type in an email address or username?

    Every time I go to type in something on a search bar/log in/etc., a drop down box appears listing everything that's been typed in.

    See [[Clear Recent History]]
    Disable Tools > Options > Privacy > History: [ ] "Remember search and form history"
    See also:
    * [[Form autocomplete]]
    * http://kb.mozillazine.org/Deleting_autocomplete_entries

  • How do i get rid of the the framing error

    Hello,
    I am a student working on a Pulse Oximeter and i am supposed to send sample values to Labview via the RS232 serial configuration. I am able to view the data in VISA but i am unable get the graph running constantly. There is always a framing error(-1073807253) whenever i run the VI and the graph only appears for a few seconds before the whole VI halts to display the error. How do i get rid of the error. I am only sending 8 bits of data. I have even tried using even the most simplest program whereby i send only characters A & C and even then i am getting the framing error. Please help me, i am in need of urgent and desperate help. I am sending these cahracters from the PIC16F877 using assembly language and i have attached the code to this forum thread. I have even tried making use of 9 bit transmission and parity bits and nothing seems to work for me. Please provide me with some help and suggestions. Have a look at my program and VI and sugggest some solutions as soon as possible. Your help will be greatly appreciated.
    Thank You
    Best regards,
    Samarth Pawar
    Temasek Polytechnic
    Singapore
    Below is my program to send the data:
    #include
    TXSTA_INIT EQU 0x24
    TRISC_INIT EQU 0x80
    RCSTA_INIT EQU 0x90
    #define Freq .4000000
    #define Baud(X) (Freq/(.16*X))- .1
    call SetupSerial
    Loop:
    movlw 'A'
    movwf TXREG
    call Usart_Send
    movlw 'C'
    movwf TXREG
    call Usart_Send
    bcf TXSTA,TXEN
    goto Loop
    ;;;;;;;;;;;;1MS DELAY;;;;;;;;;;;
    DLY1MS MOVLW D'40'
    MOVWF H'31'
    LOOP2 CALL DLY
    DECFSZ H'31'
    GOTO LOOP2
    RETURN
    DLY MOVLW D'1'
    MOVWF H'30'
    NOP
    LOOP1 DECFSZ H'30'
    GOTO LOOP1
    NOP
    RETURN
    SetupSerial:
    Banksel TRISC
    movlw TRISC_INIT
    movwf TRISC
    movlw Baud(.9600)
    movwf SPBRG
    movlw TXSTA_INIT
    movwf TXSTA
    Banksel RCSTA
    movlw RCSTA_INIT
    movwf RCSTA
    Return
    Usart_Send:
    banksel TXSTA
    SS_Wait btfss TXSTA,TRMT
    goto SS_Wait
    bcf STATUS,RP0
    CALL DLY1MS
    Return
    END ; directive 'end of program'
    Attachments:
    New_ash.vi ‏180 KB

    Four things to check when having problems with serial com:
    1. Make sure the baud rate matches the device.
    2. Make sure the parity bit matches the device.
    3. Make sure the number of stop bits matches the device.
    4. Look for buffer overruns if you do not use flow control.
    Like CC said, using Hyperterminal will verify that you are getting good responses from your device. If it runs fine for a while, then you start getting errors, the most likely cause is buffer overruns. You will have to use flow control to prevent this from happening. You will have to know what type of flow control your device supports, hardware flow control (RTS-CTS), or software flow control (XON-XOFF).
    CC: Look again, he did post his vi.
    - tbob
    Inventor of the WORM Global

  • I have a Australian iTunes account and want to switch to using the u.s store as I now live there, I cannot do this because I have $1.41 still in the oz account an image to have a zero balance to change stores, how can I get rid of the $1.41?

    I want to switch to the u.s store as I now live in the us, I cannot switch stores because my balance is $1.41 in the oz store and needs to be zero, how can I get rid of the $1.41 when everything costs more or less than that? I do not have a credit card on the oz iTunes account an I cannot use my us one to top it up.
    HELP

    Click here and request assistance.
    (60992)

  • Since downloading ios5 on my iphone 4 the capacity guage in itunes shows other as over 21Gb and i can no longer fit any music on it. How do I get rid of the other stuff? other

    Since downloading ios5 on my iphone 4 a few days ago, the capacity guage in itunes shows "other" as over 21Gb and i can no longer fit any music on my iphone.
    How do I get rid of the other stuff?
    capacity available on 32 Gb iphone is 28.49Gb
    i previously had 21.97 Gb music, over 6 Gb photos, about 1Gb of apps, and minute amount of audio
    now i have no music, 5.4 Gb photos and similar (0.8Gb) for  apps and audio. i have deleted heaps of photos and unused apps to try to make space but obviosly this is a much bigger problem. I also created a smaller music folder on itunes to sync to but at present no music is selected for syncing due to the lack of available space.
    i have 15Gb icloud account now also which is about half full.
    Ive done a little research and heard similar tales but with much smaller other totals than this. Can you help?
    i cant update my apps as i get a message saying i do not have enough available space.

    I had the same problem today and was able to resolve it without having to do a restore or reset. The problem had something to do with my mail accounts. The upgrade reset my mail settings, switching both my gmail and my .mac mail to "archive all mail". I went into the General Settings, disabled that setting, and resynced the phone. The "other" storage allottment dropped back down to less than a gig.
    Before you restore or reset, I would try that first.

  • Some of my songs are listed twice on my iPod itself.  However, when I plug the iPod into my computer, the songs don't show up twice in iTunes when I click on device/music. How do I get rid of the duplicate songs on my iPod?

    Some of my songs are listed twice on my iPod itself.  However, when I plug the iPod into my computer, the songs don't show up twice in iTunes when I click on device/music. How do I get rid of the duplicate songs on my iPod?

    that is odd! that should not be happening.
    Are you syncing your songs right off of itunes itself? because it should be syncing over to the ipod however it is listed in itunes.

  • How can I get rid of the dates and time on my Notes

    How do I get rid of the dates and times on my Notes that appeared when I updated to 8?

    Yes, it's seems like a poor design decision.
    By putting the date on the line below the Note title in the Notes Index, the app shows half the number of notes per page AND if you have a large number of notes, it takes twice as long to stroll down.
    I doubt the designer actually uses the app. 
    TSAW

  • I am already a Firefox user, how do I get rid of the new Firefox setup on my computer?

    I am already a Firefox user, how do I get rid of the new Firefox 4 setup on my computer now?

    http://www.computertechtips.net/64/make-firefox-4-look-like-ff-3-6/

  • How do I get rid of the red update number on app store?  I have an update for an appmwhich requires ios6 which I cannot get on my iPad and there for cant do the update it is really annoying

    I have an update for an app which I cannot update as it requires ios6 which I cannot get on my iPad - how do I get rid of the little red number?  It is really annoying

    Does this apply?
    If you're asked for the password to your previous Apple ID when signing out of iCloud - Apple Support

  • How do I get rid of the 3d effect when opening home screen? It gives me a headache.

    How do I get rid of the 3d effect when opening home screen? It gives me a headache.

    jimginakouri wrote:
    It's more of a "zoom-in/zoom-out" every time you turn on home screen or open/close an app.
    THAT you can't change. Silly of Apple not to provide a setting to back out the animation effects either as a whole or individually.

  • How do I get rid of the auto signature "sent from my iPhone" when I create a new message?

    how do I get rid of the auto signature "sent from my iPhone" when I create a new message?

    Settings -> Mail -> Signature and edit it to whatever you'd like.

  • How do I get rid of the annoying "exportPDF" bar on the right side of the screen that blocks much of the document?

    How do I get rid of the annoying "exportPDF" bar on the right side of the screen that blocks much of the document?

    Hi soreankles,
    To hide the toolbar in Reader, choose View > Show/Hide > Toolbar Items > Hide Toolbars.
    Best,
    Sara

Maybe you are looking for

  • Unable to Open/Save files PS CS5.1 win xp

    I have been running CS5.1 (Photoshop) for some time now and this morning when trying to save a file the program locks up cold, no dialogue box or anything. Just stops cold. Then I decided to try to open an existing file and the same thing happens. He

  • IPhone 3G won't charge from USB port

    Suddenly I am getting an error sound (no message though) on my computer when I plug my iPhone into its USB port and it no longer charges the battery. I don't have iTunes on this computer (not allowed/work computer) but I have been using the USB conne

  • ExecuteNonQuery() lasts longer than DB procedure itself - OpsSqlAllocCtx()

    We have intermittent issue where ExecuteNonQuery() call to a specific procedure lasts longer than execution of DB procedure itself in the database. DB procedure (from DB log) //start audsid:167658693 sid:479 2822843410 13-MAY-11 HUB 10 HUB TEST HUB.S

  • Results Based Search Region Order By Question

    I recently setup a simple search panel. What is the best way to implement an ORDER BY clause for the search results? I know I can implement a manual search but that seems like overkill for sorting the result sets. I can't put an ORDER BY clause in th

  • How to set a parameter scope?

    Hi, I am very new to java and having a problem with the request parameters. In my URL i have a request parameter http://localhost:8080/for/admin.jsp?companyID="12345" . The problem i have is when i click on a link in admin.jsp and navigate to another