Need a buttons to sit on quick launch bar or tool bar in desktop

can anyone tell me please ,how to create buttons on the quick launch bar in desktop, these buttons will run batch file for jboss app server,another button to shutdown the jboss app server, and one button to show and hide the console of running server.??

I believe that you need to put a shortcut into this folder :
C:\Documents and Settings\<user>\Application Data\Microsoft\Internet Explorer\Quick LaunchOr you can have an icon in the "system tray" (bottom right) and have a menu (JDK6 is required).
Example at [Have a systray icon (Windows)|http://www.rgagnon.com/javadetails/java-0612.html]
Bye.

Similar Messages

  • I have a program that pulls a PDF into Adobe. There is a quick link in the tool bar to automatically add the PDF as an attachement into a new email in outlook. this feature is no longer working...why? (still works in explorer)

    when downloading the new Flash Player to view video on Facebook
    * Shockwave Flash 11.1 r102
    * Google Update
    * The QuickTime Plugin allows you to view a wide variety of multimedia content in Web pages. For more information, visit the QuickTime Web site.
    * NPRuntime Script Plug-in Library for Java(TM) Deploy
    * Next Generation Java Plug-in 1.6.0_29 for Mozilla browsers
    * 4.0.60831.0
    * Picasa plugin
    * Adobe PDF Plug-In For Firefox and Netscape "9.4.0"
    * npmnqmp 989898989877
    * Adobe Shockwave for Director Netscape plug-in, version 11.5
    * Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    * iTunes Detector Plug-in
    * DRM Netscape Network Object
    * DRM Store Netscape Plugin
    * Npdsplay dll
    * Garmin Communicator Plug-In 2.5.1.0

    I spent 2750 $ for my 24" iMac (price for my region)...
    And the perfect world of Steve Jobs still close, but never we've been in there!

  • I've downloaded Firefox 4 but there is no Firefox button (!). Instead, I have the old tool bar. Please help - thanks!!

    I have the tabs, can pin apps and everything that's new (that I've tried) works, but the Firefox button really looks easy to use and I would very much like to have it. I have verified that I have v.4 by looking at the 'about Firefox' in the 'help' drop-down (which I want to get rid of - haha).
    To be specific, the top left corner of my screen is currently:
    Ask a Question | Firefox Help - Mozilla Firefox
    File Edit View History Bookmarks Tools Help
    TAB/TAB/TAB
    Address field (in this case the support url for Mozilla/Firefox)
    So there is NO Firefox button as depicted in the intro videos. The list above > File Edit View History Bookmarks Tools Help< is the OLD toolbar that, as I understand it, is replaced by the Firefox button. Please advise - thanks!

    Sorry folks - I had the bar enabled and just had to disable it - I am a goofball !! I didn't realize it was even an option - False alarm - SORRY!!

  • Can I get menu bar & bookmarks tool bar & home button on my tablet?

    Basically can I set up firefox on my tablet the same as my laptop with nav bar,bookmarks bar etc? plus the homepage button.

    Sorry but this is not possible at this time.

  • I imported my favorites from Internet Explorer but I need to know how to display my "favorites" in the tool bar so I can access and organize them

    I imported my favorites from Internet Explorer, but how do I display "favorites" in the tool bar so I can access and organize them?

    It did merge them after a fashion, glad I took a backup first even if I did only perhaps create 3 or 4 bookmarks today. So if I have bookmark separators, it's going to figure out which group to put them in (no way). Anyway I thought they would just go down to the bottom of the bookmarks menu like the other method, like when I export and import bookmarks in Firefox where they do go to the end of the Bookmarks Menu folder and would simply delete one folder.
    Anyway this would not be typical because I don't want any bookmarks from IE.

  • Add new link on Quick Launch using visual studio

    Hi,
    How can I add new link on quick launch using visual studio?
    I saw many link about developing quick launch or top link bar.
    But they are using visual webpart to develop this function and can add
    when the user add this webpart. How can I add automatically when I deploy the project.
    Thanks in advance!
    Best Regards, wendy

    using System;
    using System.Web.UI;
    using System.Linq;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Navigation;
    namespace SPQuickLaunchAddItemWebPart.VisualWebPart1
    public partial class VisualWebPart1UserControl : UserControl
    protected void Page_Load(object sender, EventArgs e)
    CleanUpQuickLaunch(“My Header”);
    AddQuickLaunchItem(“My Header”, “http://www.google.com/q=stuff”, “My Link Here”, “http://www.google.com”);
    CleanUpTopNavigationBar(“My Header”);
    AddTopNavigationBarItem(“My Header”, “http://www.google.com/q=stuff”, “My Link Here”, “http://www.google.com”);
    AddTopNavigationBarItem(“My Header”, “http://www.google.com/q=stuff”, “My Link Here1″, “http://www.google.com”);
    public static void CleanUpQuickLaunch(string header)
    using (SPSite site = SPContext.Current.Site)
    using (SPWeb web = site.OpenWeb())
    web.AllowUnsafeUpdates = true;
    SPNavigationNodeCollection quickLaunch = web.Navigation.QuickLaunch;
    // try to get quick launch header
    SPNavigationNode nodeHeader = quickLaunch.Cast<SPNavigationNode>().Where(n => n.Title == header).FirstOrDefault();
    //if header not found remove it
    if (nodeHeader != null)
    quickLaunch.Delete(nodeHeader);
    public static void CleanUpTopNavigationBar(string header)
    using (SPSite site = SPContext.Current.Site)
    using (SPWeb web = site.OpenWeb())
    web.AllowUnsafeUpdates = true;
    SPNavigationNodeCollection topNavigation = web.Navigation.TopNavigationBar;
    // try to get quick launch header
    SPNavigationNode nodeHeader = topNavigation.Cast<SPNavigationNode>().Where(n => n.Title == header).FirstOrDefault();
    //if header not found remove it
    if (nodeHeader != null)
    topNavigation.Delete(nodeHeader);
    public static void AddQuickLaunchItem(string header, string headerURL, string item, string url)
    using (SPSite site = SPContext.Current.Site)
    using (SPWeb web = site.OpenWeb())
    web.AllowUnsafeUpdates = true;
    SPNavigationNodeCollection quickLaunch = web.Navigation.QuickLaunch;
    // try to get quick launch header
    SPNavigationNode nodeHeader = quickLaunch.Cast<SPNavigationNode>().Where(n => n.Title == header).FirstOrDefault();
    //if header not found create it
    if (nodeHeader == null)
    nodeHeader = quickLaunch.AddAsFirst(new SPNavigationNode(header, headerURL, true));
    nodeHeader.Update();
    //try to get node item under header
    SPNavigationNode nodeItem = nodeHeader.Children.Cast<SPNavigationNode>().Where(n => n.Title == item).FirstOrDefault();
    //If item not found under heading then create it
    if (nodeItem == null)
    nodeItem = nodeHeader.Children.AddAsLast(new SPNavigationNode(item, url, true));
    else
    nodeItem.Url = url;
    nodeItem.Update();
    nodeHeader.Update();
    public static void AddTopNavigationBarItem(string header, string headerURL, string item, string url)
    using (SPSite site = SPContext.Current.Site)
    using (SPWeb web = site.OpenWeb())
    web.AllowUnsafeUpdates = true;
    SPNavigationNodeCollection topNavBar = web.Navigation.TopNavigationBar;
    // try to get quick launch header
    SPNavigationNode nodeHeader = topNavBar.Cast<SPNavigationNode>().Where(n => n.Title == header).FirstOrDefault();
    //if header not found create it
    if (nodeHeader == null)
    nodeHeader = topNavBar.AddAsFirst(new SPNavigationNode(header, headerURL, true));
    nodeHeader.Update();
    //try to get node item under header
    SPNavigationNode nodeItem = nodeHeader.Children.Cast<SPNavigationNode>().Where(n => n.Title == item).FirstOrDefault();
    //If item not found under heading then create it
    if (nodeItem == null)
    nodeItem = nodeHeader.Children.AddAsLast(new SPNavigationNode(item, url, true));
    else
    nodeItem.Url = url;
    nodeItem.Update();
    nodeHeader.Update();
    above code demonstrate how to add node inside the quick launch and top navigation.
    you can also follow the below link.
    http://myspexp.com/2012/04/30/adding-items-to-your-quick-launch-or-top-navigation-programmatically/
    Hiren Patel | Please click "Propose As Answer" if this post solves your problem or "Vote As Helpful" if this post has been useful to you.

  • Quick launch icon

    How do I get rid of the quick launch icon for QuickTime for Windows? I would also like to stop this program from auto launching itself everytime I boot up.

    If your referring to quick launch in the task bar just right click on it and delete it is just a shortcut.
    If your referring to the system tray icon do wht b noir eplained. But also go to Start>Run>type in msconfig, click OK. Then click on the Startup tab and uncheck qttask, this will disable QT from loading at startup.

  • How to print/save CL_GUI_ALV_GRID data using button in custom tool bar?

    Hi,
    I have a screen 9002 where I have used a CUSTOM CONTAINER and the screen 9002 is called from 9001.
    I am showing an ALV GRID in the CUSTOM CONTAINER by using CL_GUI_ALV_GRID.
    Screen 9002 also has 2 buttons (PF-STATUS): PRINT and SAVE in application tool bar. Now, I need to print the data of ALV and save the data in excel by pressing these 2 buttons respectively. Please let me know the way-out. If these functionalities can achieved by standard tool of the screen 9002, it will be also OK.
    Thanks
    Arghya

    Hi,
    Why don't you use the function "excel inplace" in the ALV?  With the ALV you have some buttons "SORT/TOTAL/FILTER... and you have PRINT and EXCEL INPLACE"?
    Do you use the method   call method g_grid->set_table_for_first_display in order to display your data alv?
    Best regards

  • How many push buttons can u place on selection screen application tool bard

    hi
    how many push buttons can u place on selection screen application tool bar
    and what is default function code for that buttons.

    Hi Chaitanya,
    You can place maximum 5 push buttons on Application Toolbar.
    please award the points incase if you are able to get the solution.
    Thanks
    Sivaram

  • Not compatible with cha cha tool bar that i need to download what do i do or need

    ''locking as a duplicate - https://support.mozilla.com/en-US/questions/784122''
    i need to download the chacha tool bar but it says it is not compatible with the beta 4 11. I need to use firefox and be able to download the tool bar what do i do

    Go to http://www.oldapps.com/firefox.php to download old versions of Firefox. You should try to use Firefox 3.6.x I have used that and it seems to work fine with ChaCha Toolbar.

  • Quick launch buttons and touch functions not working post win7 upgrade

    I have several problems that I think are related.
    1) When I rotate the screen and then bring it close (as in flat) to the keyboard, the screen goes blank. There is no key combination I can find that restores the screen. Putting it back in notebook orientation doesn't do anything either. Only thing to do is a hard reboot.
    2) the quick launch buttons on the screen edge are not functioning as follows:
    a) the hp mediasmart button (the one with the wave) doesn't work
    b) the screen rotation button produces the same problem as 1) above
    c) the third button which looks like either gears or a sun (I don't know what it should do) brings up the windows mobility center, where I have found problem number:
    3) On tablet PC settings, the display tab, there is one display: 1. mobile PC display
    on the same tab, there is a setup button. The next screen says:
    pen input
    touch input
    Regardless which one I select, on the following screen (where it says Press this screen with ....) when I press with either my finger or the pen, nothing happens. Which seems like either:
    it thinks another screen is active or
    the touch components are completely non functional.
    4) Not surprising, the touch functions are completely non-functional
    I have installed all of the drivers for this TX2-1025dx for Win7(64bit) per the HP support/drivers page.
    Not all of them resulted in a clean install. 
    Here are other drivers that I had problems with (meaning that I got an error message, it failed, it had to be done more than once, something else broke, etc.)
    AMD AHCI  - started catalyst installer then failed
    Authentic fingerprint driver - "dpinst64 not marked for installation"
    Ntrig Duosense - had to do this one multiple times to get the fingerprint reader to work
    HP Mediasmart MVP - hung in CMD
    I have checked that all of the startup services are actually enabled in msconfig including quick launch buttons, hpwuschd, and media smart. Nothing is disabled in services.
    I have reinstalled the quick launch buttons driver for this product from December 2009. (There is an earlier version from November.)
    I installed the bios upgrade (before win7, actually) it is currently F.25
    I have also eliminated EMF possibilities.
    I have searched the forums, and while I have found some interesting clues, I don't see anything like this - at least with a solution.
    Any assistance would be greatly appreciated as this thing is quite useless to me as it currently functions. It is not a tablet anymore.
    TIA

    [knock knock] Helloooooo??!!??
    Installed 6.50.9.1, which is in between the last two quick launch button (QLB) drivers (that did not work). Also fixed the lightscribe and mediasmart DVD installs. Same problems, no touch or pen, and a new bug I discovered with qlb
    First, if you search for tablet in the start menu, there is a selection to set the tablet buttons to perform certain tasks. When you run that, it says that teblet buttons are not installed on this pc. Doesn't matter if QLB is installed or not - same error. Hmmmmm. Check with your pc manufacturer..... I think I am doing that. I am starting to feel like I am working for HP.
    Next finding: Using mobility center, I found that if you orient the screen to landscape for the slate config, and then rotate the screen, it does not go blank. However, if you rotate the screen back to notebook, it goes blank. And of course it keeps that upsidedown config when you reboot, too. So, the way to recover from that (because you really need a keyboard if you don't have a working pen and touch takes 30 sec to respond) is to keep trying to get touch to orient the screen back to landscape for notebook. Then rotate the screen to landscape for notebook. And uninstall the QLB driver that doesn't work and reboot. But after that, touch and pen did not function.
    Since touch and pen had previously been restored when I uninstalled QLB, I reinstalled MVP and smartmenu coz they were the actions that I took the last time before touch and pen returned. Didn't work this time, tho.
    I decided to do a system restore back at the point that I had used HP Advisor, since that was the last time I made note that pen and touch were working. Restore failed because a sfi.dat file was not found (and search didn't find it anywhere either). I tried 5 different restore points, before and after that one, and they all failed. But the first time around, I had touch on the logon screen, just not after windows started. The next time, I had touch but not pen. The next time, I had touch and pen, but only for a period of time (I think HP Advisor may have been the intervening event) before they stopped working.
    Oh, and HP advisor does not appear to be actually installing the things on the action list. That could be an issue with Comodo, but it really looks more like an issue with that "mother may I" message from Windows asking for permission to run the program. Often as not, windows reports that the program is not responding. Closing the program with that dialog box actually gives it the kick in the knickers it needs to complete.
    A not so great workaround is to use the mobility center to orient the screen when you want to put the thing in slate mode. You can pin it to the task bar (with a little fiddling).  Touch is extremely slow to respond in slate mode. For example, it took about 3 minutes to get the screen oriented back around to notebook config, which is 4 "clicks" if things are working right. Pen works sort of OK (although I haven't tried any writing) . Gestures for scrolling do not work.
    I am done with the troubleshooting until someone comes up with other targeted ideas.I have been keeping detailed chrono notes.
    Again, I hope the information here leads to a solution. This unit is not a functional tablet and I don't want to stay with Vista, neither should I have to since this is supposed to be compatible.

  • Sound quick launch button doesn't work when i installed windows 8 in my hp pavilion dv3z notebook

    1. Product Name and Number
    hp pavilion dv3z notebook pc
     2. Operating System installed (if applicable)
         windows 8
      3. Any changes made to your system before the issue occurred
         installed windows 8
    when i installed windows 8 in my hp pavilion dv3z notebook pc, the quick launch button of volume is always red and the sound is mute....the driver for quick launch buttons and driver for sound is also up to date....can you please help me?
    This question was solved.
    View Solution.

    When installing the audio driver, was it installed by following the prompts or in compatibility mode as outlined here?
    Based on the Software and Drivers page for this unit, the unit was not tested and certified for Windows 8.  This means that some functionality may not be the same since the unit was not designed for Windows 8.  See this site for information and to find out if it has been tested for Windows 8.
    If the sound driver has not been installed in compatibility mode, then I recommend using the Windows 7 64bit driver found here and using the linked steps above to install it in compatibility mode. 
    Let me know what happens. 
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Dv7-1130us - Quick Launch buttons not working - though they light up correctly

    I'm trying to enable wifi, though the quick launch buttons are no longer working. They used to work, though I've had my laptop repaired at the service center (to replace the keyboard), and I also immediately upgraded to windows 7 once my laptop was returned.
    I've done a hard reset, upgraded the bios, and upgraded the quick launch button drivers, though nothing is working. When windows boots, the wifi image on the quick launch bar transitions correctly as it has always done (blue to orange - since I had I usually had it disabled before I sent it in for repair and upgraded).
    Is there a way I can enable the wifi card without having to use the quick launch buttons? The wifi card has always functioned correctly when it was enabled, and it's working properly according to the device manager. I just need to either find a way to enable it without using the quick action bar, or get the quick action bar working.
    Any suggestions? I'd rather not send it back in for repair, it's a lengthy process.
    This question was solved.
    View Solution.

    Uninstall the current HP Wireless Asistant and reboot.
    Try installing newer version of HP Wireless Assistant sp49018.exe
    Pavilion DV2922TX, XP-SP3 32bit, Intel T5750 2.0Ghz, Nvidia Geforce 8400M GS with 128MB, 4GB 667 DDR2, 250GB HDD

  • Faulty Quick Launch Buttons on my Pavilion dv9854ca notebook...

    I recently had to reformat my laptop after the hard disk failed to boot properly, and I had to reinstall Windows, and all the drivers and software I used before.  I installed the HP Quick Launch Buttons driver, and so far all of them (Play/Pause, Stop, Volume etc...I didn't install Quickplay because I don't need it) have been working properly except for the "mute" button, something I just noticed.  Every time I tap it, it will toggle to the other setting for a millisecond then switch back to what it was before, i.e. if there is sound, and I want to mute sound, I tap the button, and it will flash orange (signalling mute) for a brief moment before going back to blue (signalling sound), and vice versa.  Before I reformatted, if I wanted to mute or unmute, I tapped it and it would toggle to the other setting without switching back.
    Has anyone ever experienced this problem or know how to deal with it? It's nothing major but is a bit of a pain to have to click the windows volume settings...
    Thanks!

    You need to install sound driver to fix the mute issue.
    Which OS are you using? if it is vista you can find it here
    Pavilion DV2922TX, XP-SP3 32bit, Intel T5750 2.0Ghz, Nvidia Geforce 8400M GS with 128MB, 4GB 667 DDR2, 250GB HDD

  • Need to add link to report library on quick launch

    I hid the "Report Library" quick launch link on the left hand side of the Sharepoint portal home page, and then was informed that it needed to be displayed again .I selected "Yes" for "Display this document
    library on the Quick Launch?" when setting the report library properties, but it doesn't show up in the Quick Launch bar. In fact, the Quick Launch bar only displays a link to "Libraries," which opens the All Documents page.
    Is there some sort of setting in the Site Settings or in Central Administration that can resolve this problem ?
    David

    If the Publishing Feature is enabled go to Site Settings > Navigation (Maybe the link is set to hide or make a new heading).
    If the Publishing Feature is not enabled go to Site Settings > Tree view (under Look and Feel) > Enable Quick Launch or enable Tree View.

Maybe you are looking for

  • Gr/ir clearance a/c

    Hi guys, How to clear a GR/IR account manually?  Our requirement is that we have already arranged the payment to vendor by JV.  We want to clear this balance amount from GR/IR a/c. thanks in advance chintu

  • Captivate 6: Review mode

    I have built a course in Captivate 6 which uses the following navigation: As you can see, instead of using the built in next and back buttons, I've built my own, which contain the actions "go to next slide" and "go to previous slide". The reason I bu

  • Best method for 3D background?

    Hey, everyone. Happy Monday. I've got a job I need to do where I'm going to take a vector graphic I have and orbit around it in 3D space. I'll have two text objects as well. I know how to work the camera in 3D space in Motion, however I'm curious wha

  • SAP MDM 3.0

    Hi, some of the documents posted in the SAP marketplace announce MDM 3.0 for August 2004. However it seems that this predicted release date could not be fulfilled. Does anybody have information when MDM 3.0 will be released? Are there any documentati

  • Snow Leopard + Epson 3800 = Profiles missing from InDesign

    My 'Grafic Artist' wife just got a new PowerMac and installed InDesign as part of the CS4 Creative Suite. When printing from Photoshop (or Illustrator) she is offered the option in the print dialogue to print with profile, and when she checks the pul