Maximize window and disable icons

Hey everyone I have another question. I have program that creates a window using JFrame. How do you make it so that it is maximized when you run the program and stays maximized?
Also how do you disable the maximize, minimize and close buttons on the top right hand corner of the window?
Someone suggested:
setExtendedState(...);
setResizabale(...);
How do I use these? What goes into the brackets?

Read these:
http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Frame.html#setExtendedState(int)
http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Frame.html#setResizable(boolean)

Similar Messages

  • Maximize Windows and close applications

    After trying to find a person to speak to, i had to gave up and now try in this forum.
    Is there no way to ask a question to apple?!?
    I mean, sending an email?
    Even did everything to get into phone-contact, but only after i did everything, i learned that this is only available in the USA and canada
    OK, here are my questions:
    I am in dire need of two things:
    1)
    If i click on the "Zoom" Button on an application, it shall MAXIMIZE, taking up all room available beside the space needed for the upper menu bar and that was is needed for the dock (if it is visible).
    2)
    When i close the last windows on an application, it shall close the application!
    How can i accomplish that in Mac OS X?
    Does anybody know?
    Could anybody hint to be a mail-address, where i could ask this question?
    Thanx a bunch!

    1) If i click on the "Zoom" Button on an application, it shall MAXIMIZE, taking up all room available beside the space needed for the upper menu bar and that was is needed for the dock (if it is visible).
    That's not how Mac OS X works (at least by default), and isn't what most people want anyway, it's just what they are used to in Windows and stems from a time past where users typically did one thing (or at least only ran one application) at a time. It made sense for that application to use all the screen.
    That is no longer the case in modern operating systems where users may have many applications running at once, and benefit from being able to overlay applications.
    It's even more true when you look at modern applications with their myriad of toolbars, palettes, etc. - you need to be able to position the document windows independent of the user interface elements.
    And it's yet more true when you look at modern hardware options like a 30" display. There is no way it is practical to zoom a web page, for example, to fill a 30" screen.
    Instead Apple's model leaves it to the developer to determine what the optimal size is for their windows. For a page-creation application (e.g. word processing, desktop publishing, etc.) it makes sense for the document window to size relative to the page being created. For a graphics application such as Photoshop it makes sense for the window to size based on the image being edited, and for a web application such as Safari it makes sense for the document window to size based on the web page you're viewing. In most cases, none of these make sense to fill the screen.
    Now there are cases where it is valid to fill the screen such as presentations and kiosks, but for these you typically need applications designed for such purposes (e.g. Keynote or PowerPoint for presentations) but it is still the responsibility of the application to set its view accordingly.

  • Javascript to open popup window and disable parent window

    Hello,
    Can anyone please help me the javascript issue.
    I have a button which opens up a pop window and when this popup window is opened i want to disable the parent window and enable it when i close the popup window.
    can anyone please help me with a possible approach.
    Thanks,
    Orton
    Edited by: orton607 on Aug 25, 2010 2:19 PM

    jari,
    I have a problem with this modal window approach and I have noticed. The thing is I am able to open up a popup window which is a simple data entry form. In this form i have the button Create which calls a javascript function and then an pl/sql insert process.
    Below is the javascript function for the button create
    function createNew()
    doSubmit('CREATE');
    alert('Successfully inserted the record. Click OK to close popup window and to \n view details of the new inserted record please select the table on parent window.');
    window.close();//close the popup window
    window.opener.doSubmit('REFRESH');
    //call doSubmit function on the parent window to cause the page to refresh.
    }The problem, i have is when i open up a popup window in this window when I click on the create button, its again opening up a new empty window. i don't understand what might be the problem.
    can you please help me out with this one.
    thanks,
    orton
    Edited by: orton607 on Aug 25, 2010 4:19 PM

  • I believe I've downloaded Firefox, but I get no set up window and your icon isn't on my desktop

    I have a new laptop with Windows 8. I clicked on run to download the latest Firefox, and it completed. but there's no evidence of Firefox anywhere...no desktop icon or dialogue box to set up a homepage

    Download and save the Firefox installer to the desktop and start the installation with a double-click on the desktop icon.
    If the file is missing or corrupted then it is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files.<br />
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See:
    *http://kb.mozillazine.org/Unable_to_save_or_download_files

  • Changes to awesome -- xterm windows and stray icon

    Hi All,
    I recently upgraded from awesome 3.3.4-1 to 3.4.3-2.  There used to be a setting:
    -- Honor size hints: if you want to drop the gaps between windows, set this to false.
    c.size_hints_honor = false
    Doing this made my xterm windows take up the whole screen; without it there was a small margin.  That setting doesn't seem to exist in the latest default rc.lua, and so my xterm windows have a border again (specifically, on the right and the bottom).  Any ideas as to how I make this go away?
    Also, I use the Opera web browser, and somehow its little red "O" icon ends up stuck in the display that gives the time, justified left.  Any idea what that is about?
    In case it matters, my rc.lua is below (minor changes, mostly key bindings, from the default).
    Thanks for any help.
    - Hy
    -- Standard awesome library
    require("awful")
    require("awful.autofocus")
    require("awful.rules")
    -- Theme handling library
    require("beautiful")
    -- Notification library
    require("naughty")
    -- {{{ Variable definitions
    -- Themes define colours, icons, and wallpapers
    -- HY: changed theme
    -- beautiful.init("/usr/share/awesome/themes/default/theme.lua")
    beautiful.init("/usr/share/awesome/themes/hy/theme.lua")
    -- This is used later as the default terminal and editor to run.
    terminal = "xterm"
    editor = os.getenv("EDITOR") or "nano"
    editor_cmd = terminal .. " -e " .. editor
    -- Default modkey.
    -- Usually, Mod4 is the key with a logo between Control and Alt.
    -- If you do not like this or do not have such a key,
    -- I suggest you to remap Mod4 to another key using xmodmap or other tools.
    -- However, you can use another modifier like Mod1, but it may interact with others.
    modkey = "Mod4"
    -- Table of layouts to cover with awful.layout.inc, order matters.
    layouts =
    awful.layout.suit.tile,
    awful.layout.suit.tile.bottom,
    awful.layout.suit.max,
    -- HY: changed these (above)
    -- {{{ Tags
    -- Define a tag table which hold all screen tags.
    tags = {}
    for s = 1, screen.count() do
    -- Each screen has its own tag table.
    tags[s] = awful.tag({ 1, 2, 3, 4, 5, 6, 7, 8, 9 }, s, layouts[1])
    end
    -- {{{ Menu
    -- Create a laucher widget and a main menu
    myawesomemenu = {
    { "manual", terminal .. " -e man awesome" },
    { "edit config", editor_cmd .. " " .. awful.util.getdir("config") .. "/rc.lua" },
    { "restart", awesome.restart },
    { "quit", awesome.quit }
    mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon },
    { "open terminal", terminal }
    mylauncher = awful.widget.launcher({ image = image(beautiful.awesome_icon),
    menu = mymainmenu })
    -- {{{ Wibox
    -- Create a textclock widget
    -- HY: changed this to add formatting
    mytextclock = awful.widget.textclock({ align = "right" }, "%a, %b %d, %I:%M %p")
    -- Create a systray
    mysystray = widget({ type = "systray" })
    -- Create a wibox for each screen and add it
    mywibox = {}
    mypromptbox = {}
    mylayoutbox = {}
    mytaglist = {}
    mytaglist.buttons = awful.util.table.join(
    awful.button({ }, 1, awful.tag.viewonly),
    awful.button({ modkey }, 1, awful.client.movetotag),
    awful.button({ }, 3, awful.tag.viewtoggle),
    awful.button({ modkey }, 3, awful.client.toggletag),
    awful.button({ }, 4, awful.tag.viewnext),
    awful.button({ }, 5, awful.tag.viewprev)
    mytasklist = {}
    mytasklist.buttons = awful.util.table.join(
    awful.button({ }, 1, function (c)
    if not c:isvisible() then
    awful.tag.viewonly(c:tags()[1])
    end
    client.focus = c
    c:raise()
    end),
    awful.button({ }, 3, function ()
    if instance then
    instance:hide()
    instance = nil
    else
    instance = awful.menu.clients({ width=250 })
    end
    end),
    awful.button({ }, 4, function ()
    awful.client.focus.byidx(1)
    if client.focus then client.focus:raise() end
    end),
    awful.button({ }, 5, function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end))
    for s = 1, screen.count() do
    -- Create a promptbox for each screen
    mypromptbox[s] = awful.widget.prompt({ layout = awful.widget.layout.horizontal.leftright })
    -- Create an imagebox widget which will contains an icon indicating which layout we're using.
    -- We need one layoutbox per screen.
    mylayoutbox[s] = awful.widget.layoutbox(s)
    mylayoutbox[s]:buttons(awful.util.table.join(
    awful.button({ }, 1, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 3, function () awful.layout.inc(layouts, -1) end),
    awful.button({ }, 4, function () awful.layout.inc(layouts, 1) end),
    awful.button({ }, 5, function () awful.layout.inc(layouts, -1) end)))
    -- Create a taglist widget
    mytaglist[s] = awful.widget.taglist(s, awful.widget.taglist.label.all, mytaglist.buttons)
    -- Create a tasklist widget
    mytasklist[s] = awful.widget.tasklist(function(c)
    return awful.widget.tasklist.label.currenttags(c, s)
    end, mytasklist.buttons)
    -- Create the wibox
    mywibox[s] = awful.wibox({ position = "top", screen = s })
    -- Add widgets to the wibox - order matters
    mywibox[s].widgets = {
    mylauncher,
    mytaglist[s],
    mypromptbox[s],
    layout = awful.widget.layout.horizontal.leftright
    mylayoutbox[s],
    mytextclock,
    s == 1 and mysystray or nil,
    mytasklist[s],
    layout = awful.widget.layout.horizontal.rightleft
    end
    -- {{{ Mouse bindings
    root.buttons(awful.util.table.join(
    awful.button({ }, 3, function () mymainmenu:toggle() end),
    awful.button({ }, 4, awful.tag.viewnext),
    awful.button({ }, 5, awful.tag.viewprev)
    -- {{{ Key bindings
    globalkeys = awful.util.table.join(
    awful.key({ modkey, }, "Left", awful.tag.viewprev ),
    awful.key({ modkey, }, "Right", awful.tag.viewnext ),
    awful.key({ modkey, }, "Escape", awful.tag.history.restore),
    awful.key({ modkey, }, "j",
    function ()
    awful.client.focus.byidx( 1)
    if client.focus then client.focus:raise() end
    end),
    awful.key({ modkey, }, "k",
    function ()
    awful.client.focus.byidx(-1)
    if client.focus then client.focus:raise() end
    end),
    awful.key({ modkey, }, "w", function () mymainmenu:show(true) end),
    -- Layout manipulation
    awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end),
    awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end),
    awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end),
    awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end),
    awful.key({ modkey, }, "u", awful.client.urgent.jumpto),
    awful.key({ modkey, }, "Tab",
    function ()
    awful.client.focus.history.previous()
    if client.focus then
    client.focus:raise()
    end
    end),
    -- Standard program
    awful.key({ modkey, }, "Return", function () awful.util.spawn(terminal) end),
    -- HY: removed ctrl (ctrl-r is now reboot)
    awful.key({ modkey, }, "r", awesome.restart),
    awful.key({ modkey, "Shift" }, "q", awesome.quit),
    -- HY: additions
    awful.key({ modkey, }, "e", function () awful.util.spawn_with_shell("exec `xterm -e alpine -sort reverse -n 1`") end),
    awful.key({ modkey, }, "o", function () awful.util.spawn_with_shell("exec opera") end),
    awful.key({ modkey, }, "v", function () awful.util.spawn_with_shell("exec okular") end),
    awful.key({ modkey, }, "a", function () awful.util.spawn_with_shell("exec acroread") end),
    awful.key({ modkey, "Control" }, "p", function () awful.util.spawn_with_shell("exec `sudo poweroff`") end),
    awful.key({ modkey, "Control" }, "r", function () awful.util.spawn_with_shell("exec `sudo reboot`") end),
    awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end),
    awful.key({ modkey, }, "h", function () awful.tag.incmwfact(-0.05) end),
    awful.key({ modkey, "Shift" }, "h", function () awful.tag.incnmaster( 1) end),
    awful.key({ modkey, "Shift" }, "l", function () awful.tag.incnmaster(-1) end),
    awful.key({ modkey, "Control" }, "h", function () awful.tag.incncol( 1) end),
    awful.key({ modkey, "Control" }, "l", function () awful.tag.incncol(-1) end),
    awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end),
    awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end),
    -- Prompt
    -- HY: changed key from "r" to "F1"
    awful.key({ modkey }, "F1", function () mypromptbox[mouse.screen]:run() end),
    awful.key({ modkey }, "x",
    function ()
    awful.prompt.run({ prompt = "Run Lua code: " },
    mypromptbox[mouse.screen].widget,
    awful.util.eval, nil,
    awful.util.getdir("cache") .. "/history_eval")
    end)
    clientkeys = awful.util.table.join(
    awful.key({ modkey, }, "f", function (c) c.fullscreen = not c.fullscreen end),
    awful.key({ modkey, "Shift" }, "c", function (c) c:kill() end),
    awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
    awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
    -- HY: changed this to not conflict with added "opera" key
    -- awful.key({ modkey, }, "o", awful.client.movetoscreen ),
    awful.key({ modkey, "Control" }, "o", awful.client.movetoscreen ),
    awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end),
    awful.key({ modkey, }, "n", function (c) c.minimized = not c.minimized end),
    awful.key({ modkey, }, "m",
    function (c)
    c.maximized_horizontal = not c.maximized_horizontal
    c.maximized_vertical = not c.maximized_vertical
    end)
    -- Compute the maximum number of digit we need, limited to 9
    keynumber = 0
    for s = 1, screen.count() do
    keynumber = math.min(9, math.max(#tags[s], keynumber));
    end
    -- Bind all key numbers to tags.
    -- Be careful: we use keycodes to make it works on any keyboard layout.
    -- This should map on the top row of your keyboard, usually 1 to 9.
    for i = 1, keynumber do
    globalkeys = awful.util.table.join(globalkeys,
    awful.key({ modkey }, "#" .. i + 9,
    function ()
    local screen = mouse.screen
    if tags[screen][i] then
    awful.tag.viewonly(tags[screen][i])
    end
    end),
    awful.key({ modkey, "Control" }, "#" .. i + 9,
    function ()
    local screen = mouse.screen
    if tags[screen][i] then
    awful.tag.viewtoggle(tags[screen][i])
    end
    end),
    awful.key({ modkey, "Shift" }, "#" .. i + 9,
    function ()
    if client.focus and tags[client.focus.screen][i] then
    awful.client.movetotag(tags[client.focus.screen][i])
    end
    end),
    awful.key({ modkey, "Control", "Shift" }, "#" .. i + 9,
    function ()
    if client.focus and tags[client.focus.screen][i] then
    awful.client.toggletag(tags[client.focus.screen][i])
    end
    end))
    end
    clientbuttons = awful.util.table.join(
    awful.button({ }, 1, function (c) client.focus = c; c:raise() end),
    awful.button({ modkey }, 1, awful.mouse.client.move),
    awful.button({ modkey }, 3, awful.mouse.client.resize))
    -- Set keys
    root.keys(globalkeys)
    -- {{{ Rules
    awful.rules.rules = {
    -- All clients will match this rule.
    { rule = { },
    properties = { border_width = beautiful.border_width,
    border_color = beautiful.border_normal,
    focus = true,
    keys = clientkeys,
    buttons = clientbuttons } },
    { rule = { class = "MPlayer" },
    properties = { floating = true } },
    { rule = { class = "pinentry" },
    properties = { floating = true } },
    { rule = { class = "gimp" },
    properties = { floating = true } },
    -- Set Firefox to always map on tags number 2 of screen 1.
    -- { rule = { class = "Firefox" },
    -- properties = { tag = tags[1][2] } },
    -- {{{ Signals
    -- Signal function to execute when a new client appears.
    client.add_signal("manage", function (c, startup)
    -- Add a titlebar
    -- awful.titlebar.add(c, { modkey = modkey })
    -- Enable sloppy focus
    c:add_signal("mouse::enter", function(c)
    if awful.layout.get(c.screen) ~= awful.layout.suit.magnifier
    and awful.client.focus.filter(c) then
    client.focus = c
    end
    end)
    if not startup then
    -- Set the windows at the slave,
    -- i.e. put it at the end of others instead of setting it master.
    -- awful.client.setslave(c)
    -- Put windows in a smart way, only if they does not set an initial position.
    if not c.size_hints.user_position and not c.size_hints.program_position then
    awful.placement.no_overlap(c)
    awful.placement.no_offscreen(c)
    end
    end
    end)
    client.add_signal("focus", function(c) c.border_color = beautiful.border_focus end)
    client.add_signal("unfocus", function(c) c.border_color = beautiful.border_normal end)

    Doing this made my xterm windows take up the whole screen; without it there was a small margin.  That setting doesn't seem to exist in the latest default rc.lua
    FAQ how to remove gaps: http://awesome.naquadah.org/wiki/FAQ#Ho … windows.3F
    Also, I use the Opera web browser, and somehow its little red "O" icon ends up stuck in the display that gives the time, justified left.  Any idea what that is about?
    It doesn't get stuck anywhere, you positioned it there with widget layouts: http://awesome.naquadah.org/wiki/Awesome_3.3_to_3.4

  • How do I get rid of embedded adobe reader process windows and taskbar icons?

    In the lastest versions of Adobe reader I've come across the issue of finding an adobe task bar icon and a small adobe reader process window for each PDF document that I have open witin an Internet explorer tab. This is driving me crazy. At first I thought it was jut an issue with the machine that I'm on, but I have now seen this happen in multiple computers. Anyone have any ideas on how to keep these from clogging my screen and taskbar?
    I am using Windows 7 Ultimate x64, Internet Explorer version 10.0.9200.16686, and Adobe Reader 11.0.4.

    Group similar buttons on the taskbar
    Taskbar buttons represent open programs on your computer. When you have several programs  open at once, the taskbar might seem crowded with buttons. To help organize the taskbar and save space, you can group similar taskbar buttons so that all of the open files from one program are grouped into one taskbar button, like this:
    Grouped taskbar buttons  
       Open Taskbar and Start Menu Properties by clicking the Start button , clicking Control Panel, clicking Appearance and Personalization, and then clicking Taskbar and Start Menu. 
    Select the Group similar taskbar buttons check box so that it is checked. (To turn off grouping, clear the Group similar taskbar buttons check box.)

  • Pop up window resize disabled not working in fire fox (Linux)

    Hi all I am using Dreamweaver 8, with behavior I made a pop
    up window and disabled window resizing. It worked nicely in my
    windows XP system (I checked it in IE and Fire fox). But it is not
    working in Linux machine having same version of Fire fox
    browser(but worked correctly in IE on the same machine). In Linux
    machine we can simply resize the window.
    Does anybody give a solution to fix this problem?

    Post a link to the page, please.
    Why disable window resizing? What about those whose screen
    won't display
    the size you have picked?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "thozhayan" <[email protected]> wrote in
    message
    news:egpsde$s3r$[email protected]..
    > Hi all I am using Dreamweaver 8, with behavior I made a
    pop up window and
    > disabled window resizing. It worked nicely in my windows
    XP system (I
    > checked
    > it in IE and Fire fox). But it is not working in Linux
    machine having same
    > version of Fire fox browser(but worked correctly in IE
    on the same
    > machine). In
    > Linux machine we can simply resize the window.
    >
    > Does anybody give a solution to fix this problem?
    >
    >

  • Flex mdi window and tab movement

    Hi All,
    In our flex mdi application, we have multiple windows. And if two or more windows have same field names, tab key travel to
    multiple windows rather than stay on the current window. How we can restrict tab to stay only on the current focused window.
    Any help in this regard is very appreciated.
    Regards,

    Thanks Alex, it does help us to understand the issue as you explained the concept of IFocusManagerContainer, Yes we are having same kind of problem as you explained. we are adding canvas windows to main canvas so all windows shared same focus manager. if we enable only active window and disable all other windows, the tab focus issue solved but it looks quite odd.
    And also tried to deactivate focus manager but did not work. So, can we remove a focus manager to a window and add it when it get focus.
    Many thanks.
    Regards,
    M. Hasan

  • Maximize frame on startup and disable all windows button

    Hi every body:
    I new in java field, but I'm already working with oracle Developer form for three years.In developer form I used to maximize the window at startup and disable all the windows buttons (minimize,maximize, restore and close) but unfortunatly I tried to do it with Java I couldn't .
    For close I used : setDefaulCloseOperation(DO_NOTHING_ON_CLOSE )
    I also tried frame.setResizable(false) it only disable the resizing but what about minimizing and restore
    and how to maximize it automaticly at startup.
    Thanx in advance

    Try to use JWindow instead of JFrame. You can get
    screen size using:
    Dimension
    d=Toolkit.getDefaultToolkit().getScreenSize()
    and then
    jWindow.setSize(d);
    regards,
    StasFor most systems you should leave 20 pixels for the OS status bar, eg;-
    Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
    setSize(dim.width, dim.height-20);
    "and disable all the windows buttons (minimize,maximize, restore and close) but unfortunatly I tried to do it with Java I couldn't . For close I used : setDefaulCloseOperation(DO_NOTHING_ON_CLOSE )"
    Put the buttons on a Panel, then use this to restore it;-
    getContentPane(),add(ButtonPanel); // or remove(---)
    validate();
    For closing add a custom event class (or an anonymous class), eg;-
    inyour constructor;
    addWindowListener(new WindowController() ) ;
    class WindowController extends WindowAdapter{
    public void windowClosing(WindowEvent e){
    // Conditions: eg typically -ask if the user wants to save befor closing?
    if(yes) System.exit(0);
    Hope that's of some use (:D)

  • Adobe Customization Wizard X issue PDF icon and disable display in browser after installation

    I have used the Adobe Customization Wizard X wizard to setup a .MTS files for the custom install. When this is installed using SCCM 2012 with command (msiexec /q /i "\\Server\Share\AcroRead.msi" TRANSFORMS="\\Server\Share\AcroRead.mst") this all works fine but all PDFs on the machine that gets this deployment (Windows 7 x64 or Windows XP x86) the icons for the .pdf don't show the Adobe icon they show the generic Windows icon when the program is not assigned but still work to launch Adobe reader. I have tried to unistall and reinstall but still the same resaults. If I install the .msi with no .mst the icon shows up just fine. So it has to be something with when you use the customization wizard or the .mst. I have also tried assigning .PDF to another program and the icon changes to that program and assign it back and no icon. Also if I set Display PDF in browser = Disabled this setting does not stick. I have just installed via Adobe not using SCCM via command line I get the same resaults.
    I have only selected these customizations:
         Installation Options:
    Silently (No interface)
    Suppress reboot
         Shortcuts
    No desktop Icon
           EULA
    Suppress display of End User License Agreement (EULA)
         Online Features
    Disable all updates
    Disable Help > Purchases Adobe Acrobat
    Disable Product Improvement Program
    Display PDF in browser = Disabled
    Disabled  All Acrobat.com access

    Hi Ben,
    Here's what I am trying to accomplish I had Acrobat Standard v10.1.4 scripted so I can deploy it to a Citrix Server (XENAPP6) via SCCM 2007 I have at least 50 licenses of Acrobat Standard deployed to 50 users. All of our Citrix Servers have Adobe Reader v10.* installed as our default pdf viewer. There are other apps that are deployed to this Citrix Server and I wanted to make sure that pdf files open on Adobe Reader instead of Acrobat Standard.
    I had to change the installer tables directly so I don't have to get it re-scripted to use this command line. Is it a best practice not to change the isntaller table?
    msiexec /i "\\source\Acrobat10\AcroStan.msi" transforms="\\source\Acrobat10\AcroStan.mst" LEAVE_PDFOWNERSHIP=”YES” /qb /norestart
    Thanks a lot for your help I'm looking forward to hear from you.
    Regards,
    William

  • How to maximize a window and can't be able to move it

    Hi everyone,
    I'm doing an HMI and what I want to do is to maximize a window. I can do it in the VI proprieties -> Window Run-Time Position -> Position: Maximized. The problem I get is when I run it, the user can move the window with the title bar.
    I don't want to move the window. The window has to stay at the same place.
    Is there a way to do this (without taking off the title bar)?
    Thank you
    Stephanie

    Thanks everyone for helping me!
    But it doesn't really help me much....
    I want to maximize the window (so in the Window Runtime position, I put "Maximize"). I want a title bar to show the name of the VI (I check the "Window has title bar" in the Window Appareance). I don't want to be able to resize the window (I uncheck the "Allow to resize window" in the Window appareance). When I do the last thing, the window can move and it's exactly want I don't want to do. If I uncheck this option, the user can click on the square and be able to resize and move the window.
    Maybe there's an option somewhere in the proprieties that can disable moving the window? Why the window can move if I maximised the window and I can be able to resize the window? When it's a real maximize, the window can't move.
    Except with the Toolbox (well, I can't use it anyway, because I have version 8.2), is there any other way to do this?
    I'd like to have answers please (event if it's no )
    Thank you very much again
    Stéphanie

  • TS3276 An email sent from my iMac has a button linked to a clip hosted on Vimeo. When received, the link functions on iMac and iPad, but opens a window of app icons on iPhone and iPod touch. Any ideas what's wrong?

    An email sent from my iMac has a button linked to a clip hosted on Vimeo. When received, the link functions on iMac and iPad, but opens a window of app icons on iPhone and iPod touch. Any ideas what's wrong?

    For anyone else reading this thread, it is worth knowing that sometimes an email is, or can be, corrupted thereby jamming the works. The solution above is good, but I just wanted to suggest another one.
    If the problem arises, go to an online mail access service, such as Mail2Web.com and login to you mail account there and delete the offending message.
    Problem solved.
    And George, as this is all entirely voluntary, whinging about no takers may not endear people to you. Besides which, a few minutes of searching on Google would have found you a number of solutions.

  • Can't access the "Apple" icon in upper main menu to shutdown my MacBook Pro running 10.6.8!  Also can't open a new finder window and main menus such as File and Edit are sluggish to open or don't open at all.  Doesn't happen each time I attempt to shutdow

    Can't access the "Apple" icon in upper main menu to shutdown my MacBook Pro running 10.6.8!  Also can't open a new finder window and main menus such as File and Edit are sluggish to open or don't open at all.  Doesn't happen each time I attempt to shutdowCan't

    There are some keyboard commands (shortcuts) you can use instead of having to go to the Apple menu -
    Control-Eject          This brings up the Restart-Sleep-Cancel-Shutdown window.
    Command-Option-Eject          This puts the machine to sleep.
    Command-Control-Eject          This closes all apps and restarts the machine.
    Command-Option-Control-Eject          This closes all apps and shuts the machine down.

  • I have iphone 5s which when i connect to import the pictures directly to my windows computer. a folder by the name of my phone appears in "My Computer" . when i open it, it shows the storage information and one icon to click on. when opened it shows

    i have iphone 5s which when i connect to import the pictures directly to my windows computer. a folder by the name of my phone appears in "My Computer" . when i open it, it shows the storage information and one icon to click on. when opened it shows a couple of folders to click upon to view pictures. when i open the pictures folder and delete all the pictures , even then a lots of unclickable windows icons remain
    i have attached the picture of that window's screenshot. plus when ever i try deleting them it says,
    please help!.. i shall be really thankful.
    iPhone 5s, iOS 8

    I have the same issue and it has to do with iOS 8.2
    Apple, please mend this ASAP. Really stupid change since iOS 8.1
    If you for some reason must have many different folder make sure that you put the newst photo in the last folder so one can easily find a photo when I don't want to copy all photos to, let' say, my friend computer.

  • I'm using Windows 7 64 bit. I downloaded iTunes for Windows and setup an account. How do I stream a TV show to my TV. I have a Belkin router. My TV has many site Icons, e.g. Netflix, hula etc. from which I can download and watch movies in my Den.

    I'm using Windows 7 64 bit. I downloaded iTunes for Windows and setup an account. How do I stream a TV show to the TV in my bedroom? I have a Belkin router. My TV has many site Icons, e.g. Netflix, hula etc. from which I can download and watch movies in my bedroom. But the iTunes icon doesn't appear?

    I'm using Windows 7 64 bit. I downloaded iTunes for Windows and setup an account. How do I stream a TV show to the TV in my bedroom? I have a Belkin router. My TV has many site Icons, e.g. Netflix, hula etc. from which I can download and watch movies in my bedroom. But the iTunes icon doesn't appear?

Maybe you are looking for