Preview In Browser defaults to Print Dialog Window??

Hi!
I am using DW CS3 and every now and then, when I press F12
instead of my site being previewed in the browser, it opens the
print window. I have checked my Preview in Browser settings and
they are correct.
I use F12 for Opera and Ctrl+F12 for IE7 ....
Is there a way to fix this problem?? The last time this
happened it righted itself after rebooting my computer, but this
time it didn't and I have rebooted twice as well as deleted the
settings for both browsers and set them up again.
Please help!

Sounds like a computer issue to me. I've never seen that
reported here
before....
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"jarodsafehouse71" <[email protected]> wrote
in message
news:gl22m8$6im$[email protected]..
> Hi!
>
> I am using DW CS3 and every now and then, when I press
F12 instead of my
> site
> being previewed in the browser, it opens the print
window. I have checked
> my
> Preview in Browser settings and they are correct.
>
> I use F12 for Opera and Ctrl+F12 for IE7 ....
>
> Is there a way to fix this problem?? The last time this
happened it
> righted
> itself after rebooting my computer, but this time it
didn't and I have
> rebooted
> twice as well as deleted the settings for both browsers
and set them up
> again.
>
> Please help!
>

Similar Messages

  • Print dialog window in report generation

    Hi...
    I would like to create a report from my database and send it to printer. Basicly i want to use something like print report.vi in labview examples. But the sample is print directly to the default printer, how can i display print dialog window so i can select the printer and set another properties.
    Thank you

    After some searching, I found this thread:
    http://forums.ni.com/t5/LabVIEW/Printer-selection/​td-p/23136
    Some VIs were posted which look like they should do what you need.
    Matt Lee
    National Instruments
    Applications Engineer

  • When printing Firefox does not open the Print Dialog window

    When printing at our office we often need to print to multiple printers and not just the default printer. When printing in Firefox, however, the print automatically gets sent to the default printer and I do not get a print dialog window. I have reset Firefox's printer options, changed the prefs.js file, and launched Firefox from safe mode to check if an add-on is affecting printing - all to no avail. When I print from Chrome, or (shudder) Internet Explorer I get a dialog box giving me printer options. Your help and responses will be appreciated.

    There is a hidden preference to bypass the dialog, but it definitely is not set by default. To check for that:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box above the list, type or paste '''print.''' and pause while the list is filtered
    (3) If you discover a preference named '''print.always_print_silent''' there's your trouble.
    Next question would be, where did it come from?! Some possibilities:
    (A) A user.js file that overrides prefs.js at startup. See: [[How to fix preferences that won't save]].
    (B) A lock file in the program folder. See: http://kb.mozillazine.org/Locking_preferences

  • How to Skip Print dialog window in smartforms

    Hi Experts,
    while printing the smartforms i dont want Print dialog window. I want as and when i pressed the print
    button it'll directly print with the specified printer.
    I tried with lot of option but it is not working for me . May be i missed some prameter to pass.
    Have a look in to my code below and make me correct .
    DATA : WA_CPARAM TYPE SSFCTRLOP,
           WA_OUTPUT TYPE SSFCOMPOP,
           JOB_OUTPUT_INFO TYPE SSFCRESCL.
          WA_CPARAM-PREVIEW = 'X'.
           WA_CPARAM-NO_DIALOG = 'X'.
          WA_CPARAM-DEVICE = 'PRINTER'.
          WA_OUTPUT-TDNOPRINT = 'X'.
           WA_OUTPUT-TDDEST = 'LP06'.
           WA_OUTPUT-TDIMMED = ' '.
           WA_OUTPUT-TDNEWID = 'X'.
          WA_OUTPUT-TDDELETE = 'X'.
           WA_OUTPUT-BCS_LANGU = SY-LANGU .
          WA_OUTPUT-TDPRINTER = 'X'.
    CALL FUNCTION FNAM
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
       CONTROL_PARAMETERS = WA_CPARAM
       OUTPUT_OPTIONS     = WA_OUTPUT
       USER_SETTINGS      = ' '
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS = T_SSFCOMPOP
      USER_SETTINGS = ' '
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       = SSFCRESPD
       JOB_OUTPUT_INFO            =  job_output_info
      JOB_OUTPUT_OPTIONS         = WA_OUTPUT
        TABLES
        ITAB1                      = IT_ZADVMUTH1
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 4
      OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks In Advance.
    Satya

    Try with below parameters, it may help you to close the thread.
    WA_CPARAM-device = 'LP06'.
    WA_CPARAM-no_dialog = 'X'.
    WA_OUTPUT-tdnoprev = 'X'.
    WA_OUTPUT-tddest = 'LOCL'.
    WA_OUTPUT-tdnewid = 'X'.
    SELECT SINGLE * FROM usr01
    INTO ls_usr01
    WHERE bname = sy-uname
         AND spdb  = 'G'.
    If sy-subrc EQ 0.
    WA_OUTPUT-tdimmed = ' '.
    ELSE.
    WA_OUTPUT-tdimmed = 'X'.
    ENDIF.
    Regards,
    SaiRam

  • Avoid a print dialog window

    Hello,
    I need to print production papers using adobe forms.
    Unfortunatelly after saving a production order i get the print dialog window.
    Is it possible to print immidiatly to the standard windows printer withtout to select it amnually?
    Which setting are possible in "fill_outputparams" for SFPOUTPUTPARAMS?
    Thanks in advance,
    Evgenij

    Hello
    You will have to read the current Print parameters using FM CALL FUNCTION 'GET_PRINT_PARAMETERS' and pass it to structure sfpoutputparams
    Try to set the printer to LOCL .
    gs_fpoutparams-dest       = 'LOCL'.
    DATA: ls_options TYPE itcpo.
         DATA: lv_dialog TYPE c.
         DATA: ls_pri_params TYPE pri_params.
    *        gs_fpoutparams TYPE sfpoutputparams.
         lv_dialog = 'X'.
        CALL FUNCTION 'GET_PRINT_PARAMETERS'
           EXPORTING
             no_dialog      = 'X'
             mode           = 'CURRENT'
           IMPORTING
             out_parameters = ls_pri_params.
         ls_options-tdcopies   = ls_pri_params-prcop.
         ls_options-tddest     = ls_pri_params-pdest.
         ls_options-tdnewid    = ls_pri_params-prnew.
         ls_options-tdimmed    = ls_pri_params-primm.
         ls_options-tddelete   = ls_pri_params-prrel.
         ls_options-tdlifetime = ls_pri_params-pexpi.
         ls_options-tdtitle    = ls_pri_params-prtxt.
         ls_options-tdcover    = ls_pri_params-prsap.
         ls_options-tdcovtitle = ls_pri_params-prtxt.
         ls_options-tdreceiver = ls_pri_params-prrec.
         ls_options-tddivision = ls_pri_params-prabt.
         ls_options-tdautority = ls_pri_params-prber.
         gs_fpoutparams-device     = ls_options-tdprinter.
         gs_fpoutparams-preview    = ls_options-tdpreview.
         gs_fpoutparams-dest       = ls_options-tddest.
         gs_fpoutparams-reqnew     = ls_options-tdnewid.
         gs_fpoutparams-reqimm     = ls_options-tdimmed.
         gs_fpoutparams-reqdel     = ls_options-tddelete.
         gs_fpoutparams-reqfinal   = ls_options-tdfinal.
         gs_fpoutparams-senddate   = ls_options-tdsenddate.
         gs_fpoutparams-sendtime   = ls_options-tdsendtime.
         gs_fpoutparams-schedule   = ls_options-tdschedule.
         gs_fpoutparams-copies     = ls_options-tdcopies.
         gs_fpoutparams-dataset    = ls_options-tddataset.
         gs_fpoutparams-suffix1    = ls_options-tdsuffix1.
         gs_fpoutparams-suffix2    = ls_options-tdsuffix2.
         gs_fpoutparams-covtitle   = ls_options-tdcovtitle.
         gs_fpoutparams-cover      = ls_options-tdcover.
         gs_fpoutparams-receiver   = ls_options-tdreceiver.
         gs_fpoutparams-division   = ls_options-tddivision.
         gs_fpoutparams-lifetime   = ls_options-tdlifetime.
         gs_fpoutparams-authority  = ls_options-tdautority.
         gs_fpoutparams-rqposname  = ls_options-rqposname.
         gs_fpoutparams-arcmode    = ls_options-tdarmod.
         gs_fpoutparams-noarmch    = ls_options-tdnoarmch.
         gs_fpoutparams-title      = ls_options-tdtitle.
         gs_fpoutparams-nopreview  = ls_options-tdnoprev.
    *    gs_fpoutparams-noprint    = ls_options-tdnoprint.
         gs_fpoutparams-nodialog = 'X'.
         gs_fpoutparams-noprint = ' '.
         CALL FUNCTION 'FP_JOB_OPEN'
           CHANGING
             ie_outputparams = gs_fpoutparams
           EXCEPTIONS
             cancel          = 1
             usage_error     = 2
             system_error    = 3
             internal_error  = 4
             OTHERS          = 5.
         IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
    Regards
    Sandy

  • Smartform output without print dialog window

    i mean..,
    when i clicked execute button in smartforms
    i don't want to give the values in print dialog window (like LP01 and clicking print preview button)
    i want the smart from output when i click on execute button ..,
    so can anybody help me plllllzz.
    Moderator message: please search for available information/documentation before asking, do not use SMS speak.
    Edited by: Thomas Zloch on Nov 10, 2010 1:55 PM

    you can help yourself by searchin the SDN, this has been asked & answered more than once.
    Just a tip on a sidenote: Studying the interface of the FM which calls the smartform can help a lot.

  • Printer Dialog Window Error

    Hi everyone, when i'm getting to select the printer dialog window it doesn't pop up and getting a dump error.
    Application has a problem,
    Diagnositc file: C:\Program Files\SAP\SAP Business One\Log\SAP Business One_20091126091340.dmp was created.
    Please contact support and attached diagnostic file.
    Your immediate response is highly  appreciated.
    Thanks.

    Hi
    Check whether this error is coming while  selecting print dilog  for specfic document r for all..
    If it is coming for specfic doc print then ther is chance is there that PLD might be having some problem, u try with other pld for same & check...if it was not coming then there is problem in Pld only....
    If its coming for all , then uprgade to new Patch Level d try. If again its coming then u have to log a Ticket To SAP only.
    Giri

  • Open Printer dialog window

    Can I open the Windows Printer dialog window in Forms during runtime and then send the printer name that the user selected to Oracle Reports?

    Here is the code for showing the WINDOWS PRINTER DIALOG BOX. REMEMBER YOU HAVE TO ATTACH D2KWUTIL.PLL file for this to work.
    declare
    v_printer_name varchar2(1000) := null;
    v_port varchar2(1000);
    v_exception boolean;
    begin
    win_api_dialog.select_printer(v_printer_name,v_port,v_exception);
    wmessage('Printer is '&#0124; &#0124;v_printer_name);
    :b_selection.local_printer := v_printer_name;
    exception
    when others
    then
    :b_selection.local_printer := null;
    end;
    null

  • I JUST PURCHASED A HP LASERJETPRO P1102W BUT THE PRINT DIALOG WINDOW IN CS6 IS DIMMED AND WILL NOT ALLOW COLOR SEPARATIONS TO BE PRINTED?

    I JUST PURCHASED A HP LASERJETPRO P1102W BUT THE PRINT DIALOG WINDOW IN CS6 IS DIMMED AND WILL NOT ALLOW COLOR SEPARATIONS TO BE PRINTED?

    Save as a PDF and print the separations out of Acrobat.

  • Print dialog window disappears

    Currently testing the following configuration:
    App server version = 9.0.4.1
    Host = Tru64
    Jinitiator version = 1.3.1.13
    Webutil version = 1.0.5
    Problem:
    When invoking the Oracle 'print' built-in and clicking on the 'ok' button on the print dialog box, the application browser is moved behind all other windows currently displayed on the desktop. Has anyone encountered this issue and if so, how did you solve it? (We use the 'print' built-in on every form to allow the user to do a screen print of the form).
    Thanks for your input.

    did you find any solution to this print issue. We are experiencing for one client machine. Thanks in advance.

  • How can we print using the windows printer dialog window?

    Hi,
    We recently got new printers and a printer setup on our server that are set to print in greyscale as a default. In the past the printers defaulted to printing in color. When I create VI's and reports I have used to set "Print on completion" or the print option from the Report Generation Toolkit, and I have received my prints in color. After changing the printer drivers on the server any printing method I used to do from LabVIEW will always produce greyscale prints. These prints are fine for everyday use, however we need color prints when the documents are for customers or for other official use.
    If I could only send documents/VI's to that process the user could override the "greyscale" setting and select "color" in the cases where we need a better looking print. Obviously the other option is to save the document/VI as a file and later print it from any windows software (Excel, Paint etc.).
    Do anyone have any neat tricks for printing using the windows printer dialog?

    You can change printer settings programmatically via a .NET assembly. You can also bring up the Print Dialog to change settings manually before printing.
    More info on the .NET assembly for colour settings here:
    https://msdn.microsoft.com/en-us/library/system.drawing.printing.pagesettings.color(v=vs.110).aspx
    An NI KB link on calling a print dialog:
    http://digital.ni.com/public.nsf/allkb/80DD23A28BD8ADF9862575AC0077B1BB?OpenDocument
    CLD

  • Why does the default Mac print dialog show up in Acrobat?

    Instead of the Acrobat print dialog:
    The Mac print dialog:
    shows up when I invoke the Print command.
    Is there a preference that needs to be reset? Sometimes quitting and restarting Acrobat fixes the problem, but I've had computers that have never shown the Adobe print dialog, only the Mac dialog.

    according to your illustrations you have two different Printers setup.
    Unfortunately, in Acrobat 9 the Page setup Dialog does not function  it shows any printer.  I've explained here.
    JimGerman wrote:
    Instead of the Acrobat print dialog:
    The Mac print dialog:
    shows up when I invoke the Print command.
    Is there a preference that needs to be reset? Sometimes quitting and restarting Acrobat fixes the problem, but I've had computers that have never shown the Adobe print dialog, only the Mac dialog.
    IF this is Acrobat 9 - I have sent back bug reports, I've posted in Fedback forum (not discussion Forum) about this as well.  I have yet to see an answer to the problem. What you need to do is on the 2nd one that has the different dialog is set that to the same printer as in the first.
    IF page setup does work in your version of Acrobat make sure that while in acrobat choose correct printer then in page attributes click and choose save as default. That way acrobat will always default to this setup to start with when opening Acrobat.
    Another thing you can try is if you have removed a printer and added a new printer go to Printer Utility, and remove the old printer. If you have added a printer make the new printer the default Printer.

  • Print dialog window does not go away

    Hi,
    This is an issue I've experienced many times. When I try to print a web page from Safari, the print dialog opens, I select the printer and/or orientation, then I click on the "OK" button. But, the window does not respond, Safari seems to be working (it does not appear as 'not responding' in the 'force quit' dialog and the menus are selectable. But the window does not go away, nothing is sent to the printer, and Safari does not respond to certain operations such as moving to another tab, go back, or change the url, so basically I am stuck, no printing, and end up closing safari to open it again.

    Hello mario:
    Is this an intermittent problem, or does it happen all the time? I would, at a minimum, run repair disk from your software install DVD and also run permission repair from your HD.
    I would also trash the Safari preference file (com.apple.safari.plist) and restart.
    Of course, the problem could lie in the connectivity with your printer, but that is another issue.
    Barry

  • Changing Print Dialog Window

    Hello,
    Looking for ways to change the appearence of the Print Dialog Box.
    Hope this makes sense.
    In the Print Dialog Box the drop down menu that list: "Copies & Pages", "Layout", "Output Options", ..... "Printer Features".......
    I want it to list "Printer Features" first in the drop down menu! How do I change this so this gets listed first?

    After some searching, I found this thread:
    http://forums.ni.com/t5/LabVIEW/Printer-selection/​td-p/23136
    Some VIs were posted which look like they should do what you need.
    Matt Lee
    National Instruments
    Applications Engineer

  • Delay in displaying print dialog window

    When I click on 'print', in Reader (any version) there is a 90 second delay before the print window appears! This seems to be because Reader 'polls' all the printers in my list, before showing the window.
    I can make the problem disappear by deleting the printers which are not connected at the time - but then, I have to re-install those printers each time I re-connect them, and want to use them.
    Is there any way to set Reader so that it only 'polls' printers when they are chosen via the dialog box - in the same way that other applications (such as MS Word) do? That way, you only get a delay if you try to send output to a printer that is currently disconnected.
    (Sorry if this has been covered before - I couldn't find a thread)

    OK, problem solved.
    It appears that a printer on a user's printer list would cause the delay each time you attempted to print a pdf. Saw this occur from Acrobat Reader, Standard, and Professional.
    The solution is to delete a suspected printer from the Printers and Faxes list, then try printing a pdf. You'll know when you've deleted the correct printer, as the dialog box will come up immediately when you File/Print. Keep deleting until you've got the correct printer.
    Network printers no longer installed should be your first suspects. However, we found valid, working printers to be the cause on a couple of occasions.

Maybe you are looking for

  • In CS2 for XP Pro on Ricoh 811 Printer, Miscounting Color Pages

    We are using a Ricoh Aficio SP C811DN to print booklets composed in InDesign CS2 4.0.5 for Windows. The booklets are black and white interior with a color cover. Although the interior pages have no color content, the printer counts every sheet of the

  • Appended field Vendor Group in LFB1 does not display in FK03

    Hi , I had a problem with FK03 transaction I was not able to view the field I appended in table LFB1 which is Vendor group for spanish log-in in the system but for english log-in I was able to view the field I appended is language. Please advice what

  • Mac mail bounce back when forwarded

    Help! I use mac mail on my ibook to get mail from my go daddy server. Recently I cannot forward mail to one of my 3 accounts. when I try I get this message: Hi. This is the qmail-send program at p3plsmtpa01-07.prod.phx3.secureserver.net. I'm afraid I

  • Aperture hangs while importing from iPhone

    Hello, Aperture 3.5.1 hangs on MacOS 10.9.2 after importing pictures from the iPhone. All pictures are in fact imported, but the process is never finished and the dialog, if I want to delete the imported originals never pops up. When I unplug the iPh

  • Loading XML Configuration File into Java

    I have a stored procedure wrapper to a Java method (within a jar file) that has been loaded into the database. I need to load an XML configuration file in this method and parse it but get the following error. <Line 2, Column 192>: XML-24538: (Error)