Please have a look at my site

Hi i've just uploaded a site i'm working on. See it
here and the css file
here.
It displays ok in Firefox but in IE 6 it looks awful. Have a
look and you'l see what i mean. Can anyone explain to me why this
is happening?
Also before i added the "contentfooter" div the site was
centred in the browser (well in FF at least) but now it's aligned
to the left.
Another thing i would like is to be able to set the height of
contentleft, contentcenter and contentright to vertically
auto-stretch if possible.
Any help would be greatly appreciated.
*EDIT, i played about with it and fixed the issues with IE.
I'm still trying to iron out a few problems though. Now the top
shadow doesn't look right in IE but it's nearly there. I created a
"bluetext" style for some of the text but it's not showing up. I'm
still interested in auto-sizing the site vertically.
thanks guys

There was a great explanation from Murray on 10th September.
Find this
thread and see if it sorts you out. If not, post back.
"Horizontal alignment of text boxes with css"
Jo
"ali_chisholm" <[email protected]> wrote in
message
news:ee4j9d$mll$[email protected]..
> Hi i've just uploaded a site i'm working on. See it
>
http://www.mensanafitness.co.uk
and the css file
>
http://www.mensanafitness.co.uk/mensana.css.
>
> It displays ok in Firefox but in IE 6 it looks awful.
Have a look and
> you'l
> see what i mean. Can anyone explain to me why this is
happening?
>
> Also before i added the "contentfooter" div the site was
centred in the
> browser (well in FF at least) but now it's aligned to
the left.
>
> Any help would be greatly appreciated. I need to get
this sorted asap.
>

Similar Messages

  • Waveform peak detection ...Please have a look

    Hi folks,
               I am trying to acquire 2 signals and then detect the peaks of each of them and divide the peaks and display it in a waveform chart.But my Peak detection doesnt work at all...I tried plugging in values from 3 to 10000 but it just doesnt work...Please have a look at my VI and feel free to point out any errors in my VI..
    Thanks
    Attachments:
    slope 2 channels3.vi ‏51 KB

    Hi,
    Had a look at ur VI
    tell me, do u need a single peak for every iteration or a series of peaks above a certain threshold?
    If it is a single peak for each acquired waveform , then extract y array from the waveform cluster( you have already done it in ur VI) and connect it  to 'find array min max' function found in array functions palette and u get the single peak for each waveform.
    If it is a series of peaks u are interested in, then compare all these values inside a for loop.
    Index each element inside a 'for' loop, check it for threshold using a conditional case structure and put it inside a shift register.
    regards
    Dev

  • Material staging in WM - Jurgen please have a look at this

    Dear Jurgen,
    I'd kindly like to ask you to please have a look at this issue.
    Re: Requesting urgent reply
    Thanks in advance,
    Csaba
    (sorry for sending message this way...)

    I answered in the other thread.

  • Can a moderator please have a look into my connect...

    Hi Mods,
    Over a few weeks now my connection has seem to of deteriorated quite badly now to a point everything runs terrible. I have tried to do a pin reset on my HH5, no joy also I have reset my Openreach box no joy there, I have also connected straight to my HH5 without the Openreach box connected and nothing changes, I keep the openreach box connected because the HH5 seems to reboot and this makes my connection worse but it reset about a few days ago with the Openreach box connected and now it is really bad also no difference also connected straight to the HH5. My Download has plumeted from a steady 24.2MB down to now 18.8MB and my Upload has gone from 1.91MB down, now to an awful 0.67MB, surely something is really wrong with the connection and needs looking into also my Pings are just awful as well, its hitting 66ms from a steady 15ms and no Jitter, my estimates back when I first had Infinity installed where 19.1/2.90MB so its below my contract anyway, the strange part about it if I connect direct to my HH5 and look at the stats in the Helpdesk section it reads max attainable rate 24558/2208 but my actual speeds are no where near that. I will post an img below taken via ethernet cable today, could someone please seriously have a look at it for me. I don't want to take this as I am just complaining cause it is not good at all it seriously needs looking into for me please, thankyou:-
    Please click on pink star to the left and say thanks if I have helped you at all!. Thank you. Home Hub Page- http://bthomehub.home/
    BT Speed test- http://www.speedtest.btwholesale.com/
    Speedtest:-http://diagnostics.bt.com/login/?workflow=Speed
    Net Connect test- http://netalyzr.icsi.berkeley.edu/index.html

    Can a mod please please help me out or someone from BT I have ran another test now and its going down further this time now and all the time something is wrong. I've asked my parents and they have said they don't want an engineer coming out at all they have made this very clear to me and bothering them again they say, my backs against the wall with this issue, I have explained to them an engineer needs to come out to fix the problem but my dad seems to think they can fix it without an engineer coming out to the house cause one did before a while back without coming out so hes remembering that and trust me hes a rite stubbon git when it comes to this sort of thing the internet is really unusable at this moment, its just awful and I don't know what to do for the best???!.:-
    I have filled in the contact form if it helps me but hopefully they will read this thread and understand my difficult position so they know where I am with the problem.
    Please click on pink star to the left and say thanks if I have helped you at all!. Thank you. Home Hub Page- http://bthomehub.home/
    BT Speed test- http://www.speedtest.btwholesale.com/
    Speedtest:-http://diagnostics.bt.com/login/?workflow=Speed
    Net Connect test- http://netalyzr.icsi.berkeley.edu/index.html

  • Please have a look at this, problem loading images from jar.

    I made a post at the wrong place..
    Pleae have a look at it:
    http://forum.java.sun.com/thread.jsp?forum=422&thread=434524&tstart=0&trange=15

    Answer (hopefully not totally useless) posted over there.

  • Procedure ..Please have a look and give ur suggestion

    Hi all,
    Please have a below procedure.
    Suggest me if I do anything to make it more efficient?
    Because I'm very very new to pl/sql .
    I have to send this to code review.Before just to make sure everything is good and all logic and everything.
    Thanks in advance.
    PROCEDURE proc1 (
      in_report_parameter_id   IN      NUMBER,
      in_date_format_mask      IN      VARCHAR2,
      in_start_date_time       IN      TIMESTAMP,
      in_end_date_time         IN      TIMESTAMP
    AS
        my_current_date_time TIMESTAMP;            
    BEGIN
          my_current_date_time := TRUNC(in_start_date_time);
          DELETE FROM table1;
      LOOP
         EXIT WHEN my_current_date_time >= in_end_date_time;
         INSERT INTO table1 (
                     date_time )
         VALUES (my_current_date_time);
          my_current_date_time := my_current_date_time + numtodsinterval(1, 'DAY');
      END LOOP;
      DELETE FROM table1
         WHERE   TRUNC (date_time) IN
              SELECT TO_TIMESTAMP(report_parameter_value, in_date_format_mask)
                FROM report_parameters
              WHERE report_parameters.report_parameter_id    = in_report_parameter_id
              AND report_parameters.report_parameter_group = edr_rpt_constants_pkg.date_format_mask_group
              AND report_parameters.report_parameter_name  = edr_rpt_constants_pkg.excluded_date_name
    END proc1;

    Hi,
    I meant something like this:
    INSERT INTO table1 (date_time)
    WITH   all_dates   AS
         SELECT     in_start_date_time
                      + LEVEL - 1     AS dt
         FROM     dual
         CONNECT BY   LEVEL <= 1 + in_end_date_time
                                    - in_start_date_time
    SELECT     dt
    FROM     all_dates
    WHERE     dt     NOT IN     (
                       SELECT  TO_TIMESTAMP (report_parameter_value, in_date_format_mask)
                     FROM     report_parameters
                   WHERE     report_parameters.report_parameter_id    = in_report_parameter_id
                   AND     report_parameters.report_parameter_group = edr_rpt_constants_pkg.date_format_mask_group
                   AND     report_parameters.report_parameter_name  = edr_rpt_constants_pkg.excluded_date_name
    ;If you post CREATE TABLE and INSERT (or CREATE TABLE AS) statements, then I' can test it.
    As Tim said, TRUNCATE TABLE is not a PL/SQL command, so to use it in PL/SQL you have to use EXECUTE IMMEDIATE, like this:
    EXECUTE IMMEDIATE 'TRUNCATE TABLE  table1';The word TABLE before the table name is required.

  • Help making a treepage in htmldb- Carl/Scott please have a look

    How do I make a tree page of this data?
    create table Flatfile
    (Pgroup varchar2(30),
    Pclass varchar2(30),
    Manufacturer varchar2(30),
    Article varchar2(30),
    Price Number(6,2));
    Insert into Flatfile Values
    ('Application Software','Database Software','Oracle','Oracle 10G',115);
    Insert into Flatfile Values
    ('Application Software','Database Software','Microsoft','MS SQL Server 2000',200);
    Insert into Flatfile Values
    ('Application Software','Spreadsheet Software','Microsoft','Excel',100);
    Insert into Flatfile Values
    ('Monitor','15"','Acer','Acer 15"" TFT superscreen',199);
    Insert into Flatfile Values
    ('Monitor','15"','Sony','Sony R1500 flat',225);
    Insert into Flatfile Values
    ('Monitor','17"','Philips','Philips Flatscreen',250);
    Insert into Flatfile Values
    ('Monitor','19"','Viewsonic','Viewsonic PLasma Monitor',275);
    Insert into Flatfile Values
    ('Processor','AMD','AMD','FX-55',600);
    Insert into Flatfile Values
    ('Processor','Intel','Intel','P4 3 GHZ',399);
    I tried alot, but simply can't figure it out, please help:
    A fixed level of two or three would be fine. I just don't understand the concept in creating one in htmldb. So:
    Pgroup
    ---Pclass
    Or
    Pgroup
    ---Pclass
    ------Manufacturer
    How must my query be written?
    What do I fill in for these parameters:
    Identify Query - You do not code the query. Instead, you identify the following:
    ID - The primary key column of the table that is then used as the foreign key reference.
    Parent ID - The foreign key column of the table that references the primary key column, thus forming the hierarchy.
    Leaf Node Text - Select the column to display. Although this is a singular selection, you can edit the resulting query after it is defaulted to concatenate in other columns.
    Link Option - If the tree is for informational purposes only, a Link Option is not necessary. If the tree will be used for navigation, select Existing Application Item.
    Sincere,
    Peter
    Message was edited by:
    Pete

    Pete,
    Your example begs the question - if it's too hard for you to navigate it, then it will DEFINITELY be too hard for your users.
    Let's say I was looking for a Monitor on your site. I would have to search the entire top-level of the tree and come up with a list of several nodes which MAY contain what I'm looking for:
    - LCD TV
    - Monitors LCD
    - Monitors CRT
    - Plasma Displays
    - Screens
    - VGA
    Instead, why not have a higher-level category called "Displays", then list each one of these sub-categories under it? Something like this:
    + Displays
      + CRT
        - VGA
      + LCD
        - Monitors
        - TVs
      + PlasmaI think that if you consolidate your tree, it will 1) solve your scrolling problem and 2) make your site more usable.
    Thanks,
    - Scott -

  • I have made a blog about Web templates...please have a look

    Hello Everyone,
    In my quest to make web templates I could not find a whole lot of relevant info. I feel like I am flying blind. I had asked, in a previous thread, for anybody with knowledge on making templates to share this info. Well, we did not get a whole lot.
    So, I have decided to make a public spectacle of my adventure in creating them. Please visit the blog, and please chime in if you have relevant info, or questions (please note though, any questions may not be answered right away. At least not by me-'cause as of right now I have no answers LOL). The more people that participate the faster we will all learn how to do this.
    http://lrwebtemplates.blogspot.com/
    My goal is to create a pdf of this knowledge once we have ironed out out all the bugs. Thanks for looking. And thanks in advance for any help/participation in the effort.

    Thanks for doing this, Paul. Hopefully you'll get some useful stuff to add to it soon. A n additional item is the entry on Goerge Jardine's Lightroom Journal from Andrew Rahn. Nothing new there for us who have worked on trying to figure thsi stuff out and hardly the direction I had hoped things would go, but maybe it will lead to more in the future.

  • EtreCheck Report: Could somebody please have a look at this?

    Hello guys (m/f)
    I just did an EtreCheck after I read about it a whilke ago here on the Apple Support Communities.  I'm using a late 2012 iMac now, but my previous iMac (2009, not sure when exactly) seemed to be slow too.  It's slow opening tabs, sites, etc.  And it's slow shutting down.
    BTW I switched off Time Machine a while ago, as my external WD started reporting bad block.  (Wanted to get my NAS to take over, but can't figure out why.   That's why I've been going without a Time Machine backup for way to long.)
    Here's the report:
    Hardware Information:
              iMac (21.5-inch, Late 2012)
              iMac - model: iMac13,1
              1 2.9 GHz Intel Core i5 CPU: 4 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce GT 650M - VRAM: 512 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 9:23:21
    Disk Information:
              APPLE HDD HTS541010A9E662 disk0 : (1 TB)
                        EFI (disk0s1) <not mounted>: 209,7 MB
                        Macintosh HD (disk0s2) /: 999,35 GB (607,16 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
              com.iospirit.driver.rbiokithelper          (1.21)
              com.eltima.ElmediaPlayer.kext          (1.0)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [invalid] com.avermedia.installerPlugin
              [loaded] com.adobe.fpsaud.plist
              [not loaded] com.avermedia.installerPlugin.plist
              [loaded] com.bombich.ccc.plist
              [loaded] com.eltima.ElmediaPlayer.daemon.plist
              [loaded] com.iospirit.candelair.daemon.plist
              [loaded] com.iospirit.candelair.sync.plist
              [loaded] com.leapmotion.leapd.plist
              [loaded] com.memeo.Memeod.plist
              [loaded] com.prosofteng.DriveGenius.locum.plist
              [loaded] com.wdc.WDDMservice.plist
              [loaded] com.wdc.WDSmartWareServer.plist
              [loaded] com.zeroonetwenty.BlueHarvestHelper.plist
    Launch Agents:
              [loaded] AVerQuick.plist
              [loaded] com.leapmotion.Leap-Motion.plist
              [loaded] com.synology.SynoSIMBL.plist
              [loaded] com.synology.SynoSIMBL_RefreshFinder.plist
              [loaded] org.glimmerblocker.updater.plist
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist
              [loaded] com.divx.agent.postinstall.plist
              [loaded] com.google.keystone.agent.plist
              [loaded] com.plexapp.helper.plist
              [loaded] com.prosofteng.DGMonitor.plist
              [failed] de.writeitstudios.cookiestumbleragent.plist
    User Login Items:
              DiskLed
              FontExplorerXAutoload
              iTunesHelper
              System Events
              Mippy
              Mail
              Safari
              Camino
              blueharvestd
              Mippy
              BlueHarvest
              BlueHarvest
              Sony Ericsson Bridge Helper
              WDDriveManagerStatusMenu
              CNQL2410_ButtonManager
              WDQuickView
    3rd Party Preference Panes:
              Candelair
              Flash Player
              Flip4Mac WMV
              FUSE for OS X (OSXFUSE)
              GlimmerBlocker
              Perian
              WDQuickView
    Internet Plug-ins:
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Default Browser.plugin
              DirectorShockwave.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              Google Earth Web Plug-in.plugin
              iPhotoPhotocast.plugin
              JavaAppletPlugin.plugin
              PDF Browser Plugin.plugin
              QuickTime Plugin.plugin
              RealPlayer Plugin.plugin
              VLC Plugin.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Time Machine:
              Mobile backups: OFF
              Auto backup: NO
              Time Machine not configured!
    Top Processes by CPU:
                   2%          WindowServer
                   1%          EtreCheck
                   1%          fontd
                   0%          Leap Motion
                   0%          SystemUIServer
                   0%          DiskLed
                   0%          dpd
    Top Processes by Memory:
              336 MB             Safari
              279 MB             Finder
              229 MB             WindowServer
              221 MB             Camino
              205 MB             com.apple.IconServicesAgent
              123 MB             com.apple.WebKit.WebContent
              115 MB             Mail
              57 MB              PluginProcess
              49 MB              com.apple.WebKit.Networking
              49 MB              mds_stores
    Virtual Memory Statistics:
              3.10 GB            Free RAM
              3.55 GB            Active RAM
              497 MB             Inactive RAM
              878 MB             Wired RAM
              734 MB             Page-ins
              0 B                Page-outs
    Hope you guys find something.  (and that this is the right place to put my question!)
    Sincerely
    Mathy

    You have a lot of potential for things to go wrong. If any of the red items are old they could be doing a lot of damage to performance, since they are loaded into the system level.
    Synology appears to be doing something with SIMBL - follow the removal instructions at http://www.culater.net/software/SIMBL/SIMBL.php
    It is a hacky way to inject code into apps. Check the synology site for updates.
    The failed launchd job [failed] de.writeitstudios.cookiestumbleragent.plist could cause issues within your user account.
    Your login items are duplicated.
    BlueHarvest
    BlueHarvest
    blueharvestd
    Mippy
    Mippy
    That isn't a great idea. I'd suggest you logout, log back in but hold shift as you click the login button it will disable all those apps & show you if they are part of your issues.
    'Safe mode' will disable all third party extensions & startup items (hold shift after the chime until the spinning 'cog' appears). Ensure the login window says 'safe mode'.
    https://support.apple.com/kb/HT1455
    Be aware that some features will be disabled like wifi on some models, graphics drivers will be in a reduced mode - this is normal in safe mode. Reboot to go back to normal.
    Hopefully the notes below will help you understand the report better
    Mathy Van Nisselroy wrote:
    Kernel Extensions:
              com.iospirit.driver.rbiokithelper          (1.21)
              com.eltima.ElmediaPlayer.kext          (1.0)
    Launch Daemons:
              [invalid] com.avermedia.installerPlugin       <<-- WTH !?
              [loaded] com.adobe.fpsaud.plist
              [not loaded] com.avermedia.installerPlugin.plist
              [loaded] com.bombich.ccc.plist
              [loaded] com.eltima.ElmediaPlayer.daemon.plist
              [loaded] com.iospirit.candelair.daemon.plist
              [loaded] com.iospirit.candelair.sync.plist
              [loaded] com.leapmotion.leapd.plist
              [loaded] com.memeo.Memeod.plist
              [loaded] com.prosofteng.DriveGenius.locum.plist
              [loaded] com.wdc.WDDMservice.plist
              [loaded] com.wdc.WDSmartWareServer.plist
              [loaded] com.zeroonetwenty.BlueHarvestHelper.plist
    Launch Agents:
              [loaded] AVerQuick.plist
              [loaded] com.leapmotion.Leap-Motion.plist
              [loaded] com.synology.SynoSIMBL.plist
              [loaded] com.synology.SynoSIMBL_RefreshFinder.plist
              [loaded] org.glimmerblocker.updater.plist
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist
              [loaded] com.divx.agent.postinstall.plist
              [loaded] com.google.keystone.agent.plist
              [loaded] com.plexapp.helper.plist
              [loaded] com.prosofteng.DGMonitor.plist
              [failed] de.writeitstudios.cookiestumbleragent.plist
    User Login Items:
              DiskLed
              FontExplorerXAutoload
              iTunesHelper
              System Events
              Mippy
              Mail
              Safari
              Camino
              blueharvestd
              Mippy
              BlueHarvest
              BlueHarvest
              Sony Ericsson Bridge Helper
              WDDriveManagerStatusMenu
              CNQL2410_ButtonManager
              WDQuickView
    3rd Party Preference Panes:
              Candelair
              Flash Player
              Flip4Mac WMV
              FUSE for OS X (OSXFUSE)
              GlimmerBlocker
              Perian
              WDQuickView
    Internet Plug-ins:
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Default Browser.plugin
              DirectorShockwave.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              Google Earth Web Plug-in.plugin
              iPhotoPhotocast.plugin
              JavaAppletPlugin.plugin
              PDF Browser Plugin.plugin
              QuickTime Plugin.plugin
              RealPlayer Plugin.plugin
              VLC Plugin.plugin
    Red items are loaded at the system level (not necessarily bad, but they have the potential to modify the OS).
    Blue items are loaded at the user level
    Cleanup:
    All the usual caveats apply, backup before you modify the system, delete the items (or move them to another disk or folder if you are worried about deleting the wrong thing) but ensure the originals are gone or updated.
    Use the Finders "Go menu > Go to Folder…" when you need to open the hidden ~/Library (your users library).
    Reboot for the system changes to take effect.
    How to find updates:
    The critical launchd jobs & kernel extensions use reverse domain notation e.g.
    com.logmein.hamachi.plist means look at http://logmein.com for updates (if you don't recognize it removing it may be appropriate)
    In short: You want to try to update or remove all the system level items.
    Startup Items: Stored in /Library/StartupItems/
    Startup Items have been discontinued by Apple since Mac OS 10.4. They are responsible for making changes at a system level. Remove them all or spend time ensuring ALL related software is up to date. You need a very good reason to have anything installed in here. The developers are ignoring Apple guidelines by installing these - not a good sign.
    Kernel Extensions: Stored in /Library/Extensions/
    Kernel Extensions also load third party code, but they insert it into the 'core' of the OS. These can be safe, however you must ensure the related tools or apps are up to date, otherwise the system is basically built upon quicksand. Remove them all & see if the OS works better.
    Launchd jobs: several types
    LaunchAgents          - Stored in /Library/LaunchAgents
    LaunchDaemons       - Stored in /Library/LaunchDaemons
    User LaunchAgents   - Stored in ~/Library/LaunchAgents
    These are all background jobs, they are not necessarily bad, but if they are loading old code it could be doing untold damage to the performance & stability of the entire OS. Focus on the System level jobs (the ones inside /Library - the system level) also remove ['failed'], non-system jobs.
    EtreCheck gives a status on launchd jobs…
    [loaded]                  - a running job
    [not loaded]            - jobs that are set not to run, basically harmless, remove them unless you plan to use the associated software (if it is up to date)
    [failed]                    - jobs in a crashed or unknown state, it could be forking processes or using all the system resources, remove these.
    User login items:
    Applications and helpers that are managed inside 'Systems Preferences > Users and groups > Login Items tab'.
    These are loaded at the 'User level', consider removing all of them whilst you troubleshoot.  When you decide to re-add them ensure the software is up to date.
    3rd Party Preference Panes: & Internet Plug-ins:
    /Library/PreferencePanes/ and ~/Library/PreferencePanes/
    /Library/Internet Plug-Ins/ and ~/Library/Internet Plug-Ins/
    Once again these items all must be up to date, or remove them from your system. If the prefpanes manage additional software use the uninstaller or see the developers site for uninstall instructions. You can also right click to remove 3rd party preference panes in System preferences
    Read the list of Internet plug-ins carefully, there are often duplicate Flash player versions that won't help stability, it's just wasted space too.
    Don't forget to also update Safari's extensions in it's preferences (if you have any).
    Re-run EtreCheck after cleaning up to see if items have returned (some apps will reload the background jobs when re-opened, so either update or remove the software).
    Hope that isn't too daunting, the OS should be better if there are less old items running at the system level.

  • Please have a look, its to do with JLists

    Hey guys I have been searching for the information online and in books but i cant find anything that works.
    I am inserting a name (string) into a JList.
    But before I do I need to search the JList to make sure the record dosent already exist in the list.
    Becuase if it does, i dont want to enter in the name again.
    My problem is searching through the list, becuase JList has no list iterator...and i must use a JList
    For this reason I am trying to do it with loops...Will someone please look at my code and try help me. My problem is that: tn does get a value, but tmp never gets the value of that position in the list.
    String tn = new String("");
                   int j = 0;
                   int y =utwoModel.getSize()+1;
                   int x = uModel.getSize();
                   while (result.next())
                             tn = result.getString("UserResponsible");
                             while(j<y)
                                  for(int f = 0;f==j;f++)
                                       String tmp = new String(uModel.elementAt(j).toString());
                                       System.out.println("tmp:"+tmp);
                                       if(tn.compareTo(tmp)== 0)
                                            uModel.addElement(tn);
                                            break;
                                  j++;
                                  y =utwoModel.getSize();
              

    isStringInList is a simple method to check if a String exists in a JList:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class TestList extends JFrame
         JList list;
         public TestList()
              String[] tabs = { "one", "two", "three", "four", "five" };
              list = new JList( tabs );
              getContentPane().add( list );
              System.out.println( "six in list: " + isStringInList( "six" ) );
              System.out.println( "one in list: " + isStringInList( "one" ) );
         public boolean isStringInList(String value)
              for (int i = 0; i < list.getModel().getSize(); i++)
                   Object o = list.getModel().getElementAt(i);
                   if ( o.toString().equals( value ) )
                        return true;
              return false;
         public static void main(String[] args)
              JFrame frame = new TestList();
              frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
              frame.pack();
              frame.setVisible( true );
    }

  • Hey eric i have commented ont he multiply matrix question....please have a look into it and kindly help!

    didn't know if it wud come through to uSo i thought i wud post it too...sorry if its a mess!!

    CMS's like  WordPress, Joomla! & Drupal are popular open source (PHP & MySql) frameworks.  They contain all the backend PHP code needed to create a dynamic web site that contains capability for advanced functions:  site search, on-line editing, shopping carts, member log-in sites, blogs with comments, scripted contact forms, and so much more...
    The allure of Open Source frameworks is that they save developers time and money.  Instead of building everything from scratch (which can take months), an experienced developer can usually install WordPress on the client's server and be up & running in a few hours without customizations, or in a couple of weeks with customizations.   A firm understanding of PHP, how to set up a server-side database, backing up MySql, CSS theming, and HTML code are required skills to work with these frameworks.  WordPress is probably the easiest to set-up; Drupal is for more experienced coders.
    I am still not sure how I will know when I am competent enough to work in Web Design... What are the best signs that an individual is good enough?
    You're ready when you can look at code and understand what it means/does. Being able to problem solve, identify mistakes and fix them on your own is a must have skill. 
    Code Tutorials - http://w3schools.com/
    How to Develop with CSS?
    http://phrogz.net/css/HowToDevelopWithCSS.html
    CSS positioning in 10 Steps
    http://www.barelyfitz.com/screencast/html-training/css/positioning/
    Code Validation Tools
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Please take a look at my site and tell me what is going on.

    My website is http://www.brianpenn.com/Home.html
    I'm obviously not using a .mac account, but it seems that even on fast connections it still loads up slow and choppy. Gray boxes appear behind everything (photos, text, etc.) and makes it look very unprofessional. I also noticed that my address isn't just www.brianpenn.com like it used to be with my old site. Now it has extra info slapped on the end. I had a friend help me before, but I want to try and do this on my own.
    All suggestions are welcome.
    Thanks!!!
    Brian
    PowerMac G4   Mac OS X (10.4.5)  

    Hey Brian
    I tried opening your site at work (on a PC running windows XP) and at home (on my Powerbook) and it definitely loaded more slowly at work - even though the internet connection there is considerably faster. I have noticed that my site (iWeb hosted on .Mac) is also slower loading on PCs, but not slow enough to be a real problem. Oh - I didn't see grey boxes behind the photos.
    As for the domain name - as a poster up there said, it's due to domain name masking. Some domain hosts don't provide masking and some do - just get in touch with them and see what the deal is.
    Also - loving the photos on your site, great work and awesome photos!
    Cheers
    Narly

  • Please have a look my problem and suggest us ..................

    I Have iphone 3gs Using in present time, but my iphone can't ios 6 update.
    please how can i update ios 6 in iphone 3gs, plz tell me how can i update ios 6.................   and this iphone not installed any apps.............plz tell me............

    Follow the directions here:
    http://support.apple.com/kb/ht4972
    iOS 6.1.3 will be installed on your phone.

  • VERY IMPORTANT! PLease have a look!

    HI Champs,
    We have a daily load to Cube through Process Chain,and it has got  2 aggregates on it.
    The steps in the Process Chain is as follows:
    1.Delete Index from CUBE1.
    2.Load data to CUBE1.
    3.Create Index On CUBE1.
    4.Delete Overlapping request From CUBE1.
    5: Roll Up of CUBE1.
    Note: We have kept COMPRESS AFTER ROLLUP SETTING ON in the Aggregate.
    Now The problem is everyday while performing 4th steps i.e.Deleting Overlapping request.
    First it deactivates previouse aggregates and then delete overlapping request and fill the aggregates again in this step only and later on it failed by giving following error: : Error when structuring the index of aggregate 100079 for InfoCube ZCOPA_C05. Each day we have to repeat this failed steps.And 5 steps is no more use as aggregates filled by previous steps only.
    So, can anyone suggest me how to overcome from this probs.
    Please....I m tired by repeating the failed steps..Please
    10zin

    hi,
    hope the load is full load to cube. we have faced the same issue.
    first step before the load deactivate the aggregates using the program, then you can have the dlelete index lod cube delete request and create index then add the activate and fill program for the aggregates.
    rollup and fill in this case going to have same time(full load )
    SAP_AGGREGATES_ACTIVATE_FILL  Activating and Filling the Aggregates of an InfoCube 
    SAP_AGGREGATES_DEACTIVATE  Deactivating the Aggregates of an InfoCube 
    Ramesh

  • Sorry this is way off topic...NYC Petition, please have a look

    I know this is WAY off topic for this forum, but this is the only forum I follow and contribute to. And since we will ALL be affected by this at some point or another if we visit NYC I think it is worth all of our attention.
    Here is the text from the email I got from the APA...(link at bottom)
    The Mayor's office in New York City is seeking to instate a new rule that would require permits and proof of insurance for any group of 2 or more persons using a camera in a public area. The regulations would require that anyone using a tripod or shooting in one location for more than 30 minutes (including set-up and break down time) must obtain permits and show proof of insurance of at least 1 million dollars per occurrence. Read more about the new rules here: http://www.nyc.gov/html/film/html/news/080107_proposed_permit_rules.shtml
    We all need to act now to fight these proposed regulations which will place absurd restrictions on the freedom to photograph in New York City's public spaces.
    This affects not only professional photographers but the First Amendment rights of anyone with a camera to spontaneously document what happens on the streets of this city.
    Due to pressure from advocacy groups, the Mayor's Office has agreed to extend the period that it will allow public commentary until August 3rd.
    Picture New York has initiated an online petition opposing the new rules, which over 12,000 indidivuals have signed so far. The petition is closing on August 3rd. Please take a moment to sign if you have not already done so.
    Here is the link to sign the petition:
    http://www.pictureny.org/petition/index.php

    you have to be careful with your variables:
    the declared variables inside the actionlistener(s) are not these in your main class!!
    what you might do:
    a) let your main-class implement ActionListener
    public class MainClass extends PARENTCLASS implements ActionListener {
       public static void actionPerformed(ActionEvent ae) {
    }b) create your own event handler
    public class MainClass extends PARENTCLASS {
       public MainClass() {
          insert.addActionListener(new YourActionListener(this));
    public class YourActionListener extends ActionListener {
       private MainClass main;
       public YourActionListener(MainClass parent) {
          main = parent;
       public void actionPerformed(ActionEvent ae) {
          main.year = "abc";
          main.id = "id";
          // or implement setXXX methods -> main.setYear("abc"); main.setId("id"); ...
    }hope it helps...

Maybe you are looking for