Output Window Caption

Hi,
I am currently generating a .chm for a help project which has
been translated from English into Dutch. I want the output window
title of the .chm file to be specific to the project, but it keeps
generating as 'HTML Help' even though I have changed the title in
both the Widows dialog in the Project section and the project title
in the Project Settings dialog... what am I missing? Can anyone
help?
Thanks!

Hi again
Almost forgot to add. You may wish to amend the line to read:
Language=0x409 English (United States)
While this may aid in having the window display properly for
you on your PC, I'm unsure of the effect when the .CHM would
display on a PC where it was configured for Dutch. I suspect that
without the line, it would probably show what you expect to see on
the Dutch PC. In other words, test with caution.
Cheers... Rick

Similar Messages

  • RH9 - window caption not correct in generated html-output

    I installed RH9 and opened an existing project coming from RHX5 in the new RH9.
    When generating HTML Help, the window caption of the output displays "HTML Help" instead of the name I gave to the default window (in my case: "Rimses 5.6 Help").
    In RHX this was related to the default language in the Robohelp-project (Dutch in my case) versus the Regional settings of the PC.We had a workaround by adding in the HHP-file / Section "Options" the text   "Language=0x409 English (United States)".
    Now, in RH9, this workaround is not working anymore.
    I tried several things:
    - removing he workaround in the HHP-file
    - changing the regional settings of my PC
    - checking the project settings, html settings, default window  etc.
    Anyone an idea how to solve this in RH9?
    thanks,
    Natacha

    Hi Natacha and welcome to the RH forums. Have you tried creating a new window? I wonder whether the old settings are causing RH9 to throw a wobbly and by starting afresh it may give it a shove where it is required.
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

  • Output window for NetBeans 5.0

    Hi,
    I am printing a large amount of information to the output window, but for whatever reason, it goes completely blank after about 75% of the information has been printing. Does anyone know why this happens?
    Thanks,
    Jacob

    try to increase Xmx and Xms values in NB conf file.
    HTH

  • 4.0EA1 - Copy/Paste in Script Output window on Mac is not working

    I'm running 4.0.0.12 on MacOS X 10.8.4, and I can't Copy from the "Script Output" window.  What I regularly do is generate some SQL using an SQL query, so I want to copy the output and paste it back into the Worksheet so I can run it.  For example:
    select 'alter tablespace ' || TABLESPACE_NAME || ' begin backup;' from DBA_TABLESPACES;

    This is a known issue and will be addressed for the next EA release.

  • Problem with stills - output window

    I am new to Premiero Pro.
    I have imported a still into my project and the preview window displays this perfectly but when I add to and play the timeline, the still image
    in the output window is cropped (edge's of the still dont display)
    The image is not a particulary high resolution, 2048 i think
    Any one know why this happens please ? and can it be corrected.
    Thanks
    Chris

    Hi All
    thanks for your replies. Will try these and let you know
    Thanks
    Chris

  • ExchangeService.TraceEnabled = true , but can't see the traces in output window

    Hello,
    I am building an Visual Studio 2013 asp.net application that uses EWS. I have enabled tracing:
                service.TraceEnabled = true;
                service.TraceFlags = TraceFlags.All;
    I expect so see the EWS trace output in the Output window; however, nothing related to EWS shows in Output window.
    I wonder what am I missing?
    Thank you,

    Hi,
    you need to implement the interface Microsoft.Exchange.WebServices.Data.ITraceListener.
    And then set :
    service.TraceListener = new MyTraceListenerImplementation();
    Regards,
    Désiré GOVIN Refresh IT Solutions

  • In output window password changes

    In the output window the password for website upload changes as soon as I place the cursor somewhere else like to start the upload.  There are 3 more characters added.  If I click in the space to delete the 3 characters, the password is deleted.
    Bob

    Gaurav,
    Be default you should be able to see all the containers.  Please check whether did you embed the view in first container.
    I think you know, how to check..
    window->expand view->select first container then you will get the embedded view container details......if not , embed the view again.
    Regards
    Srinivas

  • Error occurred in deployment step 'Install app for SharePoint': Failed to install app for SharePoint. Please see the output window for details.

    Hi All,
    i have created the Cloud Business App in visual studio 2013 .
    it ask share point server like below
    Now i given my share point server url and click finish button it create the cloud business app .
    Now i have added required screen in that HTML Client Appliction
    The Solution will be successfully build .Now i press F5 or Start button it throws the below error in errorList
     In Output window its show the below details
     How to resolve this error ? what wrongly i done in this .Please any one help me to resolve this issue 
    Thanks 
    Gobala
    gobalakrishnan S

    Hi,
    It says apps are desasbled on this site. Are you using developer site collection ?
    Thanks
    Melick Rajee http://melick-rajee.blogspot.com

  • Output window message help

    I'm working on a file and when I publish the output window
    pops up with the number '20' in it.
    Anyone know what this means?
    Thanks,
    Gary

    I'm afraid I won't be of much help except to say that this is
    a classic permissions issue. I have to assume you've checked and
    double-checked the link referred to in your post (which is a good
    one).
    You might also try this technote:
    Publishing
    to RoboEngine
    In helping others troubleshoot this, it sometimes turns out
    that there are firewall issues that are not obvious especially if
    you are in a large organization crossing many domains from author
    to server. Are you the ultimate "server admin" or is there someone
    in your organization's network admnistration who could help resolve
    the permission issue?
    Sorry I can't be of immediate help.
    john

  • Bug? 4.0 EA1 Can't select all in Script Output window

    This seems to be a small bug. Open a worksheet and enter any query. Run as a script (F5) and the output appears in the Script Output window. Click in the Script Output window to give it focus and type Ctrl-A to select all the output. The text selected is actually the contents of the worksheet, not the output. Right-clicking in the Script Output window also has no effect. It looks like the Script Output window can't actually gain focus?
    This is a bit trivial, but was annoying when I was trying to move some data over to Excel using a /*csv*/ type query.

    for tracking this is logged as bug 17164225
    B

  • Create SP that returns value and at the same time displays query result in output window

    I would like create an SP which will return the records from the table and also return value to my c# client application.
    For Example:
    Select * from employee returns all the query results in output window.
    Now I want to create an SP
    Create procedure Test
    As
    Declare @ret int,
    Select * from employee
    set @ret = Select count(*) from employee
    if @ret > 0
    return 1
    else
    return 0
    The above algo should return 1 0r 0 to c# client application and at the same time display all employees in sql query output window.
    Can u pls help in this regard.

    The above algo should return 1 0r 0 to c# client application and at the same time display all employees in sql query output window.
    Why?  and No!
    Why?  Your procedure generates a resultset of some number of rows.  You check the resultset for the presence of rows to determine if "anything is there".  You don't need a separate value to tell you this.  Note that it helps
    to post tsql that is syntactically correct.   While we're at it, if you just need to know that rows exist there is no need to count them since that does more work than required.  Simply test for existence using the appropriately-named function
    "exists".  E.g., if exists (select * from dbo.employee). 
    No!  A stored procedure does not display anything anywhere.  The application which executes the procedures is responsible for the consumption of the resultset; it chooses what to do and what to display. 
    Lastly, do not get into the lazy habit of using the asterisk in your tsql code.  That is not best practice.  Along with that, you should also get into the following best practice habits:
    schema-qualify your objects (i.e., dbo.employee)
    terminate every statement - it will eventually be required.

  • Cant find output window when executing a trigger in sql developer?

    Hello,
    this is a serious question: I really cant find the output window when i executed a trigger with this code line:
    dbms_output.put_line('hello');
    I dont know where i cann see the word "hello" to test my trigger.
    Can please someone help me?

    There is a seperate forum for SQL DEVELOPER
    SQL Developer
    G.

  • Best way to implement a basic text output window

    Hello,
    I want to monitor the activity of an hardware devices which sends text, in some case, a lot and fairly fast. So far I send this to the standard output and this is fine.
    Now I need to support several devices concurrently so I need to create a very basic window which just display some read only text with a scroll bar (I must have only one instance of my app running on a system). As there are hundreds of ways to do that in Java, I would like some advice to make something which minimize latencies and resources consumption (e.g. using a JTextPane with a StyledDocument might not be optimal for this...)
    Sebastien

    As recommended, I used a JTextArea. With that I use the default document and "Piped" streams.
    I tested it with the little loop below:
            String text = "";
            PipedOutputStream pos=new PipedOutputStream();
            final int PIPE_BUFFER_SIZE=0x100000;
            dialog.monitorStream(new PipedInputStream(pos,PIPE_BUFFER_SIZE));
            long start=System.nanoTime();
            for (int i = 0; i < 0x100000; i++) {
                String zeroes="";
                for(int j=0;j<Integer.numberOfLeadingZeros(i);j++)
                    zeroes+='0';
                text = zeroes+Integer.toBinaryString(i) + "\n";
                pos.write(text.getBytes());//use JTextArea/PipedOutputStream
                //System.out.print(text);//use console
            long end=System.nanoTime();
            System.out.println("exectime: "+Long.toString((end-start)/1000000));With the (win32) console it took around 195 seconds on my laptop
    I got a similar timing with NetBean's output window (but I must say that it is quite good result if we take into account that it keeps all the data while win32 console keeps only the 300 last lines!)
    Using the JTextArea/PipedOutputStream, times fall down to 22 seconds !! (I made it to accept up to 8MB of data and to keep at least the last 4MB chunk of data)
    Ok, I will never put JTextArea performance in question...
    Thanks for your answers.
    Note for those who do similar things: the PIPE_BUFFER_SIZE is a key parameter for the speed of operations, the bigger the better. For example, when I double its size, the times fall down to 15 seconds !
    Still for those interested in that kind of stuff, the core of the monitoring thread:
        protected class StreamMonitor implements Runnable {
            //This will display correctly ony ANSI characters
            //"&#50504;&#45397;" is displayed as "??"
            public StreamMonitor() {
            public void run() {
                int totalCount=0;
                try {
                    byte[] buf=new byte[0x8000];
                    StringBuffer sb=new StringBuffer();
                    sb.ensureCapacity(0x10000);
                    int emptyCnt=0;
                    while (true) {
                        if (toMonitor.available()>0) {
                            emptyCnt=0;
                            int n = toMonitor.read(buf);
                            totalCount+=n;
                            for (int i = 0; i < n; i++) {
                                sb.append((char)buf);
    if(sb.length()>0x8000)
    int MAX_SIZE=0x0800000;
    if(totalCount>MAX_SIZE)
    doc.remove(0,(MAX_SIZE / 2));
    totalCount-=MAX_SIZE / 2;
    doc.insertString(doc.getLength(), sb.toString(), null);
    outputTextArea.setCaretPosition(doc.getLength());
    sb.setLength(0);
    else
    doc.insertString(doc.getLength(), sb.toString(), null);
    outputTextArea.setCaretPosition(doc.getLength());
    sb.setLength(0);
    emptyCnt++;
    if(emptyCnt<1000){
    Thread.yield();
    else{
    //if we execute this thread repeatedly for nothing,
    //make it sleep a while to reduce CPU load
    Thread.sleep(20);
    } catch (Exception ex) {
    Logger.getLogger(ATextScreenOutput.class.getName()).log(Level.SEVERE, null, ex);

  • Minimize output window

    Hello,
    My test consist of one CVI function, that contains some printf lines.
    In other words my function prints runtime test results in stdout.
    Each time when print occurs teststand output window activate and maximize itself.
    My test is long enough and It's really ugly and irritating to minimize it each time.
    Could you help me? Anybody knows how can I minimize output window?
    My be I can to minimize it from code?
    Thanks

    Try looking at some of these methods:
    SetStdioWindowOptions()
    SetStdioWindowPosition()
    SetStdioWindowSize()
    SetStdioWindowVisibility()
    You can read about them in the CVI Help.  Even though you see the TestStand symbol on that I/O window it is really CVI that is generating it when you do a printf.  TestStand just owns it.  You can set different options for the window using these functions.
    Hope this helps,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • Making the font in the output window bigger

    You know when you run a console application and you're looking at the output in the output window at the bottom, the typeface is a little small. Is there a way to change that to a bigger font?

    I don't think there is a way to make just the font in the log window bigger - but you can increase the size of the font used in JDeveloper by editing the ide.properties file.

Maybe you are looking for

  • Multiple devices using iTunes on multiple Windows accounts interchangeably

    I have searched this topic online extensively and have not been able to find a case similar to mine explained. So I am hoping that I can get some assistance here. I have a Windows XP PC with 2 user accounts - one for me and one for my wife. I have 4

  • Error while doing the Ldap sync for UDFs

    Hi All, I am doing LDAP sync for UDFs, Created users in OID. assigned to orclIDXPerson object modified the ldapconfig.props and created the input file. Now I am running the ldapsyncudf.sh then I getting the below error. Exception in thread "main" jav

  • RSS Feed Generator with KM Repository Listener Service

    Hi, I would like to generate the RSS Feed for the KM respository to get the latest modified and created documents. Do we have any service listener to generate the .xml file (RSS Feed )? And this RSS Feed has to be updated when ever the content change

  • Table for line items for parked documents

    Hello all, Do anyone know what is the table for line items for parked documents(fbv3)? Because I check bseg and these doc. aren't there. Thanks a lot!

  • T-list

    Hi all, I am using forms 6i In my form there is a T-list having 10 list elements when i double click on one element in the t_list , i want the elements label to be copied to one text_item is it possible ? please help Thanks, :8}