HELP MENU FUNCTION-URGENT HELP PLZ.

Hello there. I've been trying to design a GUI providing the users with help function as well. I create the html file, map file(in .jhm format) and HelpSet (in .hs format) and run the help menu via hsviewer. The first problem is that when the hsviewer runs the application a blank help window appears on the screen. The second one is that when I try to make a link between the help menu and the GUI I have written by using the sample code given in javahelp's pdf file I see a few error messages on NETBEANS' screen. Could anyone help me solve the problems I have faced so far? In addition, aint there any other method, like a template help menu, that I could use to compose my own one?

* stop multi-posting
* stop SHOUTING
* whenever you see error messages and have some problem, those two are probably related
* whenever you ask for help and have error messages post the error messages!

Similar Messages

  • How do I change Text Colour in a Spreadsheet?  The Help menu doesn't help.

    Simple question whcih i cannot find the simple answer to:  How do I change Text Colour in a Spreadsheet?  The Help menu doesn't help.

    Hi Lecia,
    You have several choices.
    Use the first set of controls in the Format Bar. One of these is a Color well (red in the image). Select the cell(s) in which you want the text coloured, then click the well to open its Color palette, and choose your colour.
    Use the Text Inspector. Open the inspector, click the Text button (T), and use the tools there (similar to the set in the Format Bar).
    Press command-T to open the Fonts Window. This offers a few more options than are available in the Inspector or the Format bar.
    Regarding "Help": I'd recommend using the Numbers '09 User Guide, which you can download via the Help menu. Easier to search, and easier reading than the individual Help articles. search 'text color' to quickly get to instructions on applying colour to text.
    Regards,
    Barry

  • Help menu function plz help:)))

    Hello there. I've been trying to design a GUI providing the users with help function as well. I create the html file, map file(in .jhm format) and HelpSet (in .hs format) and run the help menu via hsviewer. The first problem is that when the hsviewer runs the application a blank help window appears on the screen. The second one is that when I try to make a link between the help menu and the GUI I have written by using the sample code given in javahelp's pdf file I see a few error messages on NETBEANS' screen. Could anyone help me solve the problems I have faced so far? In addition, aint there any other method, like a template help menu, that I could use to compose my own one?

    Quit multi-posting questions: http://forum.java.sun.com/thread.jspa?threadID=5271252&tstart=15

  • The Help menu needs a help menu

    How do you change the text size inside of the Flash (and
    hopefully all of CS3) Help Menu? It's stuck on tiny, and the Text
    Size command in IE does nothing, as does holding Control and using
    the Mouse Scroll wheel.
    This is surely a bad omen for me and this newfangled
    technology.
    Arlen

    Hi - I have the same problem - it's so small it's impossible
    to read and there appears to be no way of enlarging it.
    Funnily enough I had the same in the Photoshop CS3 help file,
    and solved this by right-clicking on the text panel and choosing
    the 'make text bigger' option. This option isn't available with
    Flash help however, and has left me with a wealth of knowledge
    which I am unable to access.
    Has this been reported as a bug yet? It was fine up until a
    few weeks ago, does anyone know what triggered it?

  • Backup 3.2 Help Menu won't help

    When I try to use the Help menu using my Account I got an error message saying :
    Help Viewer cannot open this content.
    When I log in to my wife's account I can access Help.
    Tried uninstalling and reinstalling, didn't help.
    Need help please.

    "From CAD" is very generic language. What CAD program? What file format?
    The problem of faceted and segmented curves is pandemic among common CAD export formats (DWG, DXF). Illustrator isn't doing that. To avoid it, the source program will have to be able to export in a format that translates curves to splines which programs like Illustrator can read as Bezier curves. The source program's ability to do that depends on the program, and on the knowledge of its user. You may need a third-party translation program.
    Garbage in, garbage out.
    Re-working the problem (reconnecting the paths) is particularly problematic in Illustrator because Illustrator still has no decent ability to join multiple paths at once--something all its mainstream competitors have had for many years. There are third-party add-ons for that; their effectiveness varies and their usefullness depends on the specific drawings in question.
    JET

  • JButton as TAB function : Urgent Help

    Hi people, pls i need some help... I have an interface that displays html pages in a JEditorPane. I want to be able to tab within the html page displayed in the jeditorpane and outside the jeditorpane to the other button components using my own JButton titled "Next".
    Any ideas about the general logic? im probably going to override some ismanagingfocus() functions, etc, but i need to understand the logic first
    do i create an function (e.g tabAction() and call like:
    myTabButton = new JButton("Tab")
    myTabButton.addActionListener(tabAction())
    and in this function, create a keystroke using KeyEvent.VK_TAB?
    Input will be greatly appreciated
    thanks

    * stop multi-posting
    * stop SHOUTING
    * whenever you see error messages and have some problem, those two are probably related
    * whenever you ask for help and have error messages post the error messages!

  • JSP Array to Javascript function :URGENT HELP

    Hi,
    i have problem in sending array from JSP to Javascript function. if you have any answer please let me know asap.
    Thanks in advance.
    -Priya

    Hi Kurt,
    I have written follow. program . but still I'm getting errors.
    I don't know what I'm doing wrong.
    <HTML>
    <HEAD>
    <SCRIPT>
    function showArray()
         var str = new Array (<%for (int j=0; j<jspstr.length; j++);
         out.print ("\"" + jspstr[j] + "\"" + (j<(jspstr.length-1)?",":""));%>);
         alert ("Total elements received: " + str.length);
         for (j in str)
         alert ("element number " + j + " equals " + str[j]);
    </SCRIPT>
    </HEAD>
    <BODY>
    <FORM>
    <%String[] jspstr = {"abc", "def", "ghi", "jkl"};%>
    <SCRIPT>
    showArray();
    </SCRIPT>
    </FORM>
    </BODY>
    </HTML>
    com.ibm.servlet.engine.webapp.WebAppErrorReport: C:\Program Files\IBM\VisualAge for Java\ide\project_resources\IBM WebSphere Test Environment\temp\JSP1_0\default_app\_try_xjsp_debug_jspsrc_988535311.java:135: Undefined variable or class name: jspstr
    for (int j=0; j<jspstr.length; j++);
    ^
    C:\Program Files\IBM\VisualAge for Java\ide\project_resources\IBM WebSphere Test Environment\temp\JSP1_0\default_app\_try_xjsp_debug_jspsrc_988535311.java:136: Undefined variable: jspstr
         out.print ("\"" + jspstr[j] + "\"" + (j<(jspstr.length-1)?",":""));
         ^
    C:\Program Files\IBM\VisualAge for Java\ide\project_resources\IBM WebSphere Test Environment\temp\JSP1_0\default_app\_try_xjsp_debug_jspsrc_988535311.java:136: Undefined variable: j
         out.print ("\"" + jspstr[j] + "\"" + (j<(jspstr.length-1)?",":""));
         ^
    C:\Program Files\IBM\VisualAge for Java\ide\project_resources\IBM WebSphere Test Environment\temp\JSP1_0\default_app\_try_xjsp_debug_jspsrc_988535311.java:136: Undefined variable: j
         out.print ("\"" + jspstr[j] + "\"" + (j<(jspstr.length-1)?",":""));
         ^
    C:\Program Files\IBM\VisualAge for Java\ide\project_resources\IBM WebSphere Test Environment\temp\JSP1_0\default_app\_try_xjsp_debug_jspsrc_988535311.java:136: Undefined variable or class name: jspstr
         out.print ("\"" + jspstr[j] + "\"" + (j<(jspstr.length-1)?",":""));
         ^
    5 errors
    Thanks,
    -Priya

  • In Help Menu it says HELP isn't available regardless of what app I'm using

    Trying to get some simple answers using the Help search box in the menu bar. In Safari, mail etc. it just says 'Help isn't available' after entering info.
    Where's my help?

    You can go to "Purchases" tab and check again.
    If OS X Lion is still not downloading, try at a different network environment.
    By the way, Mac Pro (2006) with a newer graphics card runs Mavericks perfectly with modifications in the installer.
    It's not allowed to be discussed here, but you can simply google how to do it.

  • Jacob.jar Help/Webutil Error-Urgent Help Needed

    We are not using any OLE object in forms.But after implementation on WEBUTIL the browser starts giving below error:
    java.lang.NoClassDefFoundError:com/jacob/com/ComFailException
    Can anyone help ?
    Is jacob.jar is required to download even if we don't need it.
    Thanks
    Mandeep Singh

    Thanks for quick response.
    But my question is do we need to config jacob lib even we dn't need it.I am asking this because with this release of WEBUTIL,jacob is a seperate lic. product and its not a part of WEBUTIL pack.
    Thanks

  • Help I need urgent Help!!!!! now please read and answer!!!!

    My ipod was fine until i tried to play a song it froze then went black and it wont turn on or charge.

    Hello starlight2190,
    And welcome to Apple Discussions!
    Have you tried a simple reset of the iPod yet? To do this, toggle the hold switch on and off, then press and hold the Select (Center) and Menu buttons together until the Apple logo appears. If it doesn't work the first time keep trying.
    Otherwise, if still no response, you may have to wait for the iPod's battery to fully drain. Once it has, let it charge long enough to power on and once it has, go ahead and restore it via iTunes.
    B-rock

  • Please help me need urgent help on JPA connectio

    Hi,
    In my current assignment I'm trying to connect a remote MS Access database using JPA. But I'm not able to connect to database in my desktop itself .
    Below is my code let me know if I'm doing something wrong.
    persistence.xml
    =========
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence">
    <persistence-unit name="hello-world" transaction-type="RESOURCE_LOCAL">
    <provider>oracle.toplink.essentials.ejb.cmp3.Ent it yManagerFactoryProvider</provider>
    <class>Dao.UserDetails</class>
    <properties>
    <property name="toplink.jdbc.user" value=""/>
    <property name="toplink.jdbc.password" value=""/>
    <property name="toplink.jdbc.url" value="jdbcdbc:ds_userdsn"/>
    <property name="toplink.jdbc.driver" value="sun.jdbc.odbc.JdbcOdbcDriver"/>
    <property name="toplink.ddl-generation" value="create-tables"/>
    </properties>
    </persistence-unit>
    </persistence>
    UserAuth.java
    =========
    package DaoLayer;
    import javax.persistence.EntityManager;
    import javax.persistence.EntityManagerFactory;
    import javax.persistence.Persistence;
    import Dao.UserDetails;
    public class UserAuth {
    public static void main(String[] args) {
    String UserId="system1";
    String password="t12121";
    EntityManager em = null;
    try {
    EntityManagerFactory emf=Persistence.createEntityManagerFactory("hello-world");
    em = emf.createEntityManager();
    em.getTransaction().begin();
    UserDetails us=new UserDetails();
    us.setUserId(UserId);
    us.setPassword(password);
    em.persist(us);
    em.getTransaction().commit();
    em.close();
    System.out.println("Persisted");
    finally{
    if(em != null){
    System.out.println("hi");
    * ds_userdsn is the user dsn created
    * Also Class of the object to be persisted is properly created.
    ================
    I'm getting the below error
    [TopLink Info]: 2010.11.26 04:08:32.846--ServerSession(2773808)--TopLink, version: Oracle TopLink Essentials - 2.0.1 (Build b04-fcs (04/11/2008))
    Exception in thread "main" Local Exception Stack:
    Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.0.1 (Build b04-fcs (04/11/2008))): oracle.toplink.essentials.exceptions.DatabaseExcep tion
    Internal Exception: java.sql.SQLException: No data found

    user9235741 wrote:
    In my current assignment I'm trying to connect a remote MS Access database using JPA. Generally that is a nonsense statement.
    In standard database terminology it is not possible to "connect" to a MS Access database at all. Thus one certainly can't do it remotely.
    The ODBC (nothing to to with java) for MS Access requires OS file access to the MS Access database file.
    So if you have box A and the database file is on box B the the java application must be running in a context (user) such that a mapped drive of some sort exists from A to B. And the ODBC definition must specify that file path.
    But I'm not able to connect to database in my desktop itself .
    Where is the connection url?

  • Help with the help menu

    I´m a big fan of the help menu function. I use it all the time in all the Adobe applications.
    Suddenly, it just stop working in InDesign. The others still work.
    The way it´s supposed to work is that if you know the name of a command but not the keyboard shortcut or where the command is located – you start typing the name of the command in the help menu. If you type "convert to" the help menu suggest "convert to profile" and others. If you click a suggestion InDesign should execute the command.
    That was before. Now it just plays the system error sound and does nothing.
    Does anyone have a tip for me on how to get my beloved help menu back on track?
    Cheers
    InDesign CS4
    Mac OSX 10.6.7

    Double posting (could not find a "edit" button)
    Heres a video of what I mean:
    http://www.youtube.com/watch?v=xGGj9500Hg0

  • Help Menu Quits when using Internet Connect

    When a new user account (with admin. priveleges) is opened, the help menu functions perfectly. After connecting to the Internet (modem) the help menu will not function. (can't get any response on any underlines or ? window). I've tried the file deletions suggested in theXlab document, checked the internet connection using "ping' report with no luck. No 3rd party add-ons. I can use any program and return to help and it is operable, until I connect to the internet.
    To again get to help, I must create a new user account. This restores the help for tryouts until invoking internet connect. Using OSX 10.4.5. Any suggestions. Apple phone support is referring this to some tech support person.
    Am I alone with this problem???

    Hi John,
    try this: FIXED: Help Viewer crashes or shows blank window

  • Adobe Reader XI is missing "check Updates" link on Help menu

    On several installations of Adobe Reader, we are missing the check updates link on the Help menu.  any help or suggestions on how to fix that?

    On Windows this item might be missing for Standard User on XP OS
    Also, search Registry for the value named bUpdater in the Adobe Policy hive.
    If this value is set to 0, try to delete the value, restart Reader and check the menu.

  • InD CS5-Can't Access Help menu

    Whenever I try to access the Help menu for InD help, I get a message that Adobe AIR is damaged. I downloaded and installed an update of AIR, but am still getting the same message.

    No suggestions sorry, it doesn't work that great here either, AIR doesn't seem to work too well...  Perhaps Apple would consider it as a platform for the iSad?  Just joking
    You can of course go here and use that or download the PDF.

Maybe you are looking for

  • Open quantity gets blocked (SUS)

    Hi all, We had PO qty 4 each, GR was done for 4 each (through SUS), but in quality inspection 1 qty was rejected in quality inespection and 122 movement type, nw the vendor must be able to do ASN against the remaining 1 qty, but the system dont allow

  • ALV by CLASS problem with o/p screen

    Hi Experts. I have a ALV grid by class program which displays around 25 fields. If  select 22 or 23 column and, either press the summesion button or on right click choose the total option. It gives me the total but the grid displays the intial column

  • I can't restore more than three closed wndows.

    I can't restore more than three closed windows. After I right click on the Firefox icon on the toolbar at the bottom of my screen and select close all windows, the next time that I restart Firefox, I can only restore three windows, instead of all of

  • Abap Code help in Extractor!!!

    Hi all I am not an abaper, I am using Bw 3.5; I need to write a code in "ZBSIS" and "ZBSAS" Extractor Include program ZXRSAU01: so that the report based on cube "ZBSISAS" shows values for field Transaction key "ZKTOSL". The field "KTOSL" is not activ

  • Netscape

    hello I'm trying to execute some applets Java in Netscape, but i heve a error message : " bad version number " how can i solve this problem ??? thanks jeremie