How to run applet inside a browser coz my applet runs outside the browser

I would like to run the Java Applet viewer in-line inside a Browser Window. Presently, when launched through an html page, the applet opens another main window outside the browser. Can't seem to find any applet parameter tags for it. If there is a way to do that please let me know. Thanks in advance - m.a.

public class mainGIS extends JApplet {
public void init() {
GISEditor tempGISEditor = new GISEditor();
public mainGIS(){
     GISEditor tempGISEditor = new GISEditor();
     tempGISEditor.setTitle("Franchise Viewer");
     tempGISEditor.setSize(1000,600);
and..
<Html>
<Head>
<Title></Title>
</Head>
<Body>
<APPLET CODE="mainGIS.class" archive="aaa.jar" WIDTH="800" HEIGHT="600">
</APPLET>
</Body>
</Html>
it opens outside a web browser!(it pops out) I mean, I want to display my application in-line with the browser

Similar Messages

  • Firefox is using large amounts of CPU time and disk access, and I need to know how to shut down most of this so I can actually use the browser.

    Firefox is a very busy piece of software. It's using large amounts of CPU time and disk access. It puts my usage at low priority, so I have to wait for some time to be able to use my pointer or keyboard. I don't know what it uses all that CPU and disk access time for, but it's of no use to me. It often takes off with massive use of resources when I'm not doing anything, and I may not have use of my pointer for several minutes. How can I shut down most of this so I can use the browser to get my work done. I just want to use the web site access part of the software, and drop all the extra. I don't want Firefox to be able to recover after a crash. I just want to browse with a minimum of interference from Firefox. I would think that this is the most commonly asked question.

    Firefox consumes a lot of CPU resources
    * https://support.mozilla.com/en-US/kb/Firefox%20consumes%20a%20lot%20of%20CPU%20resources
    High memory usage
    * https://support.mozilla.com/en-US/kb/High%20memory%20usage
    Check and tell if its working.

  • I've installed the Adobe Reader Plug In. Yet every time I click to see a PDF, it opens another browser and it is blank. The Browser reads about:blank. How can I fix this so that PDF's open in the browser?

    I've installed the Adobe Reader Plug In. Yet every time I click to see a PDF, it opens another browser and it is blank. The Browser reads about:blank. How can I fix this so that PDF's open in the browser?

    Check your settings in Options > Applications: https://support.mozilla.com/en-US/kb/Opening%20PDF%20files%20within%20Firefox#w_check-firefox-settings
    Also see:
    *https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox
    *http://kb.mozillazine.org/File_types_and_download_actions
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]

  • How do i get my navbar to stay on one line when the browser window is minimized?

    I am new to coding and have just created my first website in html and css.  I know that the coding is pretty dire and that I have a lot to learn and hope that someone can guide me in how to solve this problem.  When the browser window is minimized, the navbar breaks down into 2 or 3 lines but I want the navbar to fit to the window whatever the size of the client machine.
    I think I need to add a media query but i'm not sure if i do and if so what code to use and where to put it?
    I am worried that the page will only be viewable properly on a desktop and i really want to learn how to make a fluid layout which can be viewed on 320px, 768px and 1200px.
    Any guidance would be greatly appreciated.
    Here is my code:
    HTML
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>The Engineer's Corset</title>
    <link href="styles/style.css" rel="stylesheet" type="text/css" media="screen">
    <style type="text/css">
    body {
        background-color: #000;
    </style>
    </head>
    <body>
    <div id="container">
    <div id="navbar">
        <ul id="nav">
        <li><span class="current-menu-item">Home</span></li>
        <li><a href="about.html">About Us</a></li>
        <li><a href="workshops.html">Workshops</a></li>
        <li><a href="news.html">News</a></li>
        <li><a href="gallery.html">Gallery</a></li>
        <li><a href="contact.html">Contact Us</a></li>
        </ul>
    </div>
    <div id="header">
      <img src="images/final/headerbeauty3.png" width="1100" height="341" alt="The Engineer's Corset">
    </div>
    <div id="links">
    <ul id="link">
    <li><a href="https://www.facebook.com/Bristolengineer" target="_blank"><img src="images/final/fb3.png" width="200" height="45" alt="Follow Us on Facebook"></li>
    <li><a href="https://twitter.com/Engineerscorset" target="_blank"><img src="images/final/twitter2.jpg" width="200" height="45" alt="Follow us on Twitter"></a></li>
    </ul>
    </div>
    <div class="chantry">
    <img src="images/final/CD Logo fin.png" width="240" height="200" alt="Chantry Dance Company">
    </div>
    <div class="about">
      <p> The Engineer's Corset is a new play written by Janet Goddard for performance by the community of Bristol in 2015. <br>  ~ <br>
    The play is based on the extraordinary real-life events of 1843 surrounding Isambard Kingdom Brunel's near-death experience after swallowing a coin.  We travel through time to explore the adventure and horror of Victorian industrialisation. <br> ~ <br> Using a community theatre group The Engineer’s Corset tells a familiar tale of Brunel’s near death experience when he swallows a gold half sovereign. His wife Mary fights to maintain her composure but is ripped apart by the waiting game. Her servants and his workforce, using dance and sound, broaden her horizons. Just like Mary the audience too will see life in the 1840s through a different lens.</p>
    </div>
    <div class="workshops">
    <img src="images/final/bridgebridge.jpg" width="1100" height="713" alt="clifton suspension bridge">
    <span><a href="workshops.html">We will be running a series of workshops prior to production and hope you will join us.  For further information, click here.</a></span>
    </div>
    <div id="sponsorspace"></div>
    <div id="footer"> <p> &copy; Heartprints Web Design 2014 </p> </div>
    </div>
    </body>
    </html>
    CSS
    @charset "utf-8";
    /* CSS Document */
    body {
        font-family:Arial, Helvetica, sans-serif;
        font-size:125%;
    @media screen {
        #navbar:
    #navbar li {
        font: 25px Arial;
        display: inline;
        list-style-type: none;
        background: #09F;
        color: #000;
        border-radius: 20px;
        padding: 15px 25px;
    .current-menu-item {
        color: #0FF;
    #navbar a {
        padding: 15px 25px;
        background-color: #6cf;
        color: #000;
        text-decoration: none;
        border-radius: 20px;
    #navbar a:hover {
        background-color:#0FF;
        color: #000;
        padding: 15px 25px;
    #header {
        width: 1100px;
        height: 340px;
        margin-left: 50px;
        margin-top: 0px;
        margin-bottom: 0px;
        border-style: ridge;
        border-width: 5px;
        border-color:#09F;
    #links li {
        display: inline;
        width: 700px;
        margin-left: 300px;
    .chantry {
        margin-left: 40px;
    .about {
        position: relative;
        width: 860px;
        text-align:center;
        background-color: #CCC;
        color: #000;
        border-style: ridge;
        border-width: 3px;
        border-color:#09F;
        border-radius: 15px;
        float: right;
        margin-top: -200px;
        margin-right: 90px;
    .workshops{
        position:relative;
        width: 1100px;
        height: 713px;
        font-size:24px;
        margin-left: 50px;
        border-style: ridge;
        border-width: 5px;
        border-color:#09F;
        margin-top: 130px;
    .workshops span {
        position: absolute;
        background: #6CF;
        color: #000;
        left: 30px;
        top: 30px;
        right: 800px;
        padding: 15px;
        font: 1em georgia, serif;
        font-style:italic;
        text-align:center;
        border: 5px solid #09F;
        border-radius: 20px;
        margin-top: 35px;
    .workshops span a {
        color: #000;
    #link li {
        border-style: solid;
        border-color: #6CF;
        padding: 30px 10px 5px 10px;
    .info {
        text-align:center;
        width: 1100px;
        margin-top: 50px;
        margin-bottom: 50px;
    .CDC {
        float: left;
        margin-right: 50px;
        margin-left: 45px;
    .workshopinfo {
        height: 250px;
        text-align:center;
        margin-top: 50px;
    .photos {
        Height: 500px;
        text-align:center;
        margin-top: 50px;
    #footer {
        text-align:center;
        margin-top: 700px;
        color:#0CF;
    .brunel {
        margin-top: 50px;
        margin-left: 400px;
    #workshops2{
        width: 1000px;
        border-style: outset;
        border-width: 5px;
        padding: 15px;
        border-color:#09F;
        background-color: #6CF;
        margin-left: 100px;
        text-align:center;
    #workshops2 a {
        color: #000;
    #sponsorspace {
        height:  300px;
        background-color: #6CF;
        border-style: outset;
        border-color: #09f;
        margin-top: 15px;

    Give #navbar a width that is wide enough to hold all of the buttons within it.
    #navbar {
         width:####px;
    Replace #### with a pixel number large enough to hold the nav buttons.

  • How can I get my desktop page to open when I close the browser and then re open it?

    when I click the red x to close the browser, when I come back to open the browser later, the last page I was viewing. last session opens, even all other tabs behind it, instead of my google page (my home page)? can this be fixed) I know I can just click the google word in the search bar, but should not have to do this!

    {
    "application": {
    "name": "Firefox",
    "version": "32.0.3",
    "userAgent": "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0",
    "supportURL": "https://support.mozilla.org/1/firefox/32.0.3/WINNT/en-US/"
    "crashes": {
    "submitted": [],
    "pending": 9
    "modifiedPreferences": {
    "browser.cache.disk.capacity": 358400,
    "browser.cache.disk.smart_size.first_run": false,
    "browser.cache.frecency_experiment": 3,
    "browser.places.smartBookmarksVersion": 7,
    "browser.sessionstore.upgradeBackup.latestBuildID": "20140923175406",
    "browser.startup.homepage_override.mstone": "32.0.3",
    "browser.startup.homepage_override.buildID": "20140923175406",
    "dom.mozApps.used": true,
    "extensions.lastAppVersion": "32.0.3",
    "gfx.direct3d.last_used_feature_level_idx": 0,
    "network.cookie.prefsMigrated": true,
    "places.history.expiration.transient_current_max_pages": 104858,
    "places.database.lastMaintenance": 1413230897,
    "plugin.disable_full_page_plugin_for_types": "application/pdf",
    "privacy.sanitize.migrateFx3Prefs": true,
    "storage.vacuum.last.places.sqlite": 1413230897,
    "storage.vacuum.last.index": 0
    "graphics": {
    "numTotalWindows": 1,
    "numAcceleratedWindows": 1,
    "windowLayerManagerType": "Direct3D 10",
    "windowLayerManagerRemote": false,
    "adapterDescription": "AMD Radeon HD 7670M",
    "adapterVendorID": "0x1002",
    "adapterDeviceID": "0x6840",
    "adapterRAM": "1024",
    "adapterDrivers": "aticfx64 aticfx64 aticfx64 aticfx32 aticfx32 aticfx32 atiumd64 atidxx64 atidxx64 atiumdag atidxx32 atidxx32 atiumdva atiumd6a atitmm64",
    "driverVersion": "13.151.0.0",
    "driverDate": "8-19-2013",
    "adapterDescription2": "",
    "adapterVendorID2": "",
    "adapterDeviceID2": "",
    "adapterRAM2": "",
    "adapterDrivers2": "",
    "driverVersion2": "",
    "driverDate2": "",
    "isGPU2Active": false,
    "direct2DEnabled": true,
    "directWriteEnabled": true,
    "directWriteVersion": "6.3.9600.17111",
    "webglRenderer": "Google Inc. -- ANGLE (AMD Radeon HD 7670M Direct3D9Ex vs_3_0 ps_3_0)",
    "info": {
    "AzureCanvasBackend": "direct2d",
    "AzureSkiaAccelerated": 0,
    "AzureFallbackCanvasBackend": "cairo",
    "AzureContentBackend": "direct2d"
    "javaScript": {
    "incrementalGCEnabled": true
    "accessibility": {
    "isActive": true,
    "forceDisabled": 0
    "libraryVersions": {
    "NSPR": {
    "minVersion": "4.10.6",
    "version": "4.10.6"
    "NSS": {
    "minVersion": "3.16.5 Basic ECC",
    "version": "3.16.5 Basic ECC"
    "NSSUTIL": {
    "minVersion": "3.16.5",
    "version": "3.16.5"
    "NSSSSL": {
    "minVersion": "3.16.5 Basic ECC",
    "version": "3.16.5 Basic ECC"
    "NSSSMIME": {
    "minVersion": "3.16.5 Basic ECC",
    "version": "3.16.5 Basic ECC"
    "userJS": {
    "exists": false
    "extensions": [
    "name": "Logitech SetPoint",
    "version": "6.5",
    "isActive": false,
    "id": "{F003DA68-8256-4b37-A6C4-350FA04494DF}"
    "name": "Norton Toolbar",
    "version": "2014.7.8.23",
    "isActive": false,
    "id": "{2D3F3651-74B9-4795-BDEC-6DA2F431CB62}"
    "name": "Skype Click to Call",
    "version": "7.3.16540.9015",
    "isActive": false,
    "id": "{82AF8DCA-6DE9-405D-BD5E-43525BDAD38A}"
    "experiments": []
    }

  • Reader 11 Customization Opening Outside the Browser

    I am using Wizard to Customize my Adobe Reader 11 install. My question is, where in Wizard do I set the prefrence for opening PDF's outside of the browser. I just see how to configure it to open and save but nothing to set it not to open in the browser.

    Browser integration is not on by default. The default is "open PDFs in the standalone product."
    Ben

  • Scroll FX - Content container are moving outside the browser.

    Hi together!
    I have a question, that makes me mad since a month or so.
    I am curious if anyone has an answer or can at least tell me where I made the mistake...
    I made a small one page site - no Master page. The browser fill is a mosaic with a scroll effect.
    The navigation is made with icons and I used anchors to navigate to the single points.
    All works fine on my PC.
    But when I visit the page on another PC, or Mac, or change Browsers and I use the navigation, or simply scroll down, the pages (content containers) start to move to the left.
    I am sure it has something to do with the anchors, but I am not sure ...
    In older versions I always put the anchos at the right or left side of the page, so they wouldn't disturb me. But a few days ago I saw a tutorial, and this guy placed all the anchors in the center of the page.
    So I did - this time - the same. And it really works fin on MY PC - but nowhere else ...
    Please if anyone can help me this would be great!!
    This is the link to the page.
    http://dus00101.businesscatalyst.com/
    The screenshot below shows how it looks in IE.
    You can clearly see, that the containers for the content are moving to the left side.
    Its always the left side - never the right!
    Thank you in advance for your help.
    Michelle

    The content on the page is 1500 pixels wide. (As you resize the browser window smaller the horizontal scroll bar appears when the browser window is less than 1500 pixels wide. As long as the browser window is narrower than 1500 pixels, there will be a horizontal scroll bar and horizontal scrolling will occur when scrolling to an anchor.
    If all the anchors are at the same x: position, then once the page has been scrolled to one of the anchors all subsequent scrolling will be vertical only (unless the user manually scrolls horizontally to a different position).
    If you visit a parallax site such as http://muse.adobe.com the content is 980px wide.
    You can turn off the ability to scroll horizontally, which will hide the horizontal scrollbar, using a snippet of code pasted into the Page Properties <head> section, but doing so is strongly discouraged since it will interfere with the normal navigation of your site for those visiting your site on small screens.
    <style type="text/css">
    body {
       overflow-x:hidden;
    </style>

  • Safari browser Extension ( Read  all cookies of the browser not document )

    How to read the Cookies of the browser of any domain in global.html for building the Safari Extension on Windows

    Okay. Let's check to see if this is a user-account-specific issue, or if it is systemwide. (It's not a cure in itself, but it might give us a heads-up on the cause of the issue.)
    Go into your user accounts control panel and create a new user account with full administrative rights.
    Log out of your usual account and log into the new account. (Don't use fast user switching to move between accounts.)
    Now launch safari in the new account, do a bit of browsing, and close Safari. Open Safari again. Do cookies survive in the new account?

  • Why does the Welcome to firefox tab open with my google tab every time I open the browser? And why can't the browser hold any add-ons I downloaded? I loose then when I close the browser, even tool bars have to be reinstalled every time I open the browser

    Every time I open the browser the Welcome to Firefox tab is the first tab, then a second tab opens and thats my google, then a 3rd tab opens for me to reinstall my toolbar. This has been happening for a good year. Updates have not fixed it. Others have this problem. I did a search for an answer, the question is out there but no answer. Now if I go into add ons and add a background Theme or an extension it all is gone when I exit the browser. When I open the browser again I get all 3 tabs and have to install my toolbar again. I DO NOT want to reinstall as I will loose all my saved data, passwords, bookmarks, everything! I have had this computer for a year, Windows Vista x64 bit. Its not the computer, it's the browser. If you have specific questions e-mail me and I will be more then happy to help

    See this article for some suggestions: [[Firefox has just updated tab shows each time you start Firefox]]
    See also http://kb.mozillazine.org/Preferences_not_saved and Preferences are not saved

  • Playing a video outside the browser

    Say you are watching a video on flash player on a website somewhere. Is it possible to play this video outside of the browser? Meaning, can I play the same video in a different media player or just by itself on my desktop?
    Also, is there a way to stretch and skew the size of videos on a website?
    Thanks,
    Joey

    On youtube, you can. Simply right click a video and choose "Pop out" from the menu. However, the video will still be playing in Flash because that's the player which has been embedded on the youtube site. Here's a screenshot for you.
    To download a video to your own machine, you'll need to install Firefox from here: http://www.mozilla.org/en-US/firefox/fx/
    After you do that, go to this Add-ons page and click the "Add To Firefox" button to install the add-on you see here: https://addons.mozilla.org/en-US/firefox/addon/download-youtube/?src=ss This adds a button underneath a video which enables you to download any youtube videos to your own machine.
    To play it locally, download the free VLC player from here: http://www.videolan.org/
    Then right click the video you downloaded and choose to open it with the VLC player. If you can't see VLC in the list, click the Browse button and navigate to the VLC installation folder which is located at C:\Program Files\VideoLAN\VLC
    Click vlc.exe once to highlight it and then click the "Open" button.
    Forgot about Skew. There are player controls visible below the video which allow you to do other things, but I don't think Skew is one of them.
    Message was edited by: Xircal

  • Applet inside a JAR: Cannot access other classes within the JAR

    Hello,
    Description
    Web app + applet (packaged in a JAR)
    I have followed this tutorial
    JAR contents
    package mypackage
    SimpleApplet.class
    SimpleObj.class
    _"SimpleApplet" uses "SimpleObj"_
    package mypackage;
    public class SimpleApplet extends JApplet {
        @Override
        public void init() {
            SimpleObj obj = new SimpleObj();
    HTML code
    <applet archive="SimpleApplet.jar" codebase="." code="mypackage.SimpleApplet.class" width="800" height="600" />
    SimpleObj cannot be found (Java Console)
    java.lang.NoClassDefFoundError: mypackage/SimpleObj
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
    at java.lang.Class.getConstructor0(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
    at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.ClassNotFoundException: mypackage.SimpleObj
    at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ... 8 more
    Caused by: java.io.IOException: open HTTP connection failed:*http://localhost:8080/SimpleApp/mypackage/SimpleObj.class*
    at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)
    at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)
    at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    ... 12 more
    Exception: java.lang.NoClassDefFoundError: mypackage/SimpleObj
    It looks like JRE does not search for the SimpleObj class inside the JAR, but tries to get it from the server...
    Any ideas?
    Thanks in advance,
    Gerard
    Edited by: gsoldevila on Dec 10, 2008 2:05 AM

    misread, deleted
    Edited by: atmguy on Dec 10, 2008 1:12 PM

  • How can I stop firefox from opening multiple tabs when I open the browser.

    When I open my browser it opens a Firefox has been updated tab and a yahoo has been updated tab along with my home page. My home page settings have no extras in the address. Help

    Did you perform the fixes from the "Preferences not saved" article?
    Try to delete or rename/move the prefs.js file and other possible prefs-##.js with a number and user.js files in the Firefox Profile Folder.
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Make sure that Firefox isn't running when you delete files in the profile folder.

  • How do I stop Firefox from going to Google everytime I open the browser?

    In my organization, we have well over 2,000 PCs. Every time Firefox is open, it connects to Google IPs (74.125.x.x) even when we are not on Google's site and do not have Google as the search provider. From what I understand (and correct me if I am wrong), Firefox links to Google for anti-phishing/anti-malware lists. The problem I have is with over 2,000 PCs going thru our web filter, it is bogging down our web filter with these connections.
    Is there any way to stop Firefox from making these connections to Google (74.125.x.x)?

    First update your firefox to 24.0 from [http://www.mozilla.org/en-US/firefox/all/ Mozilla.org].
    Second In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press '''Enter'''. The about:config "''This might void your warranty!''" warning page may appear.
    # Click '''I'll be careful, I promise!''', to continue to the about:config page.
    Search the string "browser.startup.homepage",double click on it and change the value. Then press OK and restart firefox

  • Whenever I do a "lookup" from other software, or click on a hyperlink from outside the browser, the browser appears but the URL is not in the address window and the link never loads.why?

    I may be reading an article while within Foxfire, and click on a hyperlink in the article...or I may be using Thunderbird email and click on a hyperlink within the email...or I may be using software like Quicken and do a "lookup" to a webpage...no matter, any time I click on the hyperlink, it will switch to Firefox automatically (good!) and the tab shows "loading", but a webpage never loads, and the URL address window never has anything in it. On the other hand, if I copy and paste the URL from whatever hyperlink I'm trying to use, and then paste that into Firefox's URL address window, it will open. How did I lose the auto load feature?

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Can't get Inspiration Browser update downloaded and have removed the Browser from programs?

    Can't get AdobePhotoshop.com Inspiration Browser to download. I've removed the Inspiration Browser from my programs as required before downloading the update.  It shows an error occurred in the download process but I can't see the problem.  Any suggestions?

    Well I will recommend you not to use Inspiration Browser anymore. Many of the users have gone through this problem.
    All the tutorials from Inspirational Browser have now move to tv.adobe.com. Try using it.

Maybe you are looking for

  • Can I get a refund for an app that my cousin got on accident

    My cousin was playing with my macbook and he bought this app called songwriters pad he wanted but it was my account i have no purpose for use for this application.. Please help.

  • Dynamic action on tabular forms fields

    Hello guys. As I can see on the tabular form's fields I can't perform dynamic actions. What I want is to have a select list item when at the event Change it changes the values for all the records in that report. For example if I have 40 records in th

  • Solaris 10 x86 - software RAID boot

    What I can write in eeprom : - for boot form 1-st, and if it absent - from 2-nd disk ? (2 disks in soft raid). two bootpath ? In Solaris 9/sparc for boot with one working HDD in mirror (2 disks in mirrir) I wrote in /etc/system : set md:mirrored_root

  • Defaulting dynamic attributes and weightings for BID INVITATION

    Hi Friends I have a task at hand to default the dynamic attributes( some custom defined fields for the bidder) for bid invitation. Can anyone help me with this? Thanks in Advance Regards

  • Calling the next number in an array through a function?

    ow do I request the next number in an array? For example - currently being used for a loop: for (i=0; i = levelSettings[0]; i++) But when the function (named - NextLevel() ) is called I would like that loop to call the next number in that array. Exam