Please I need some help

hi every one
I m making a site using dreamweaver and I try to put into the
dreamweaver a fhash menu and the buttons dont work when I export
the flash what can i do ?????????

does the swf file work at all? like when you preview it in
flash?

Similar Messages

  • This website make problem for me, he open by it self everytime i try to open another websites  Please i need some help

    this website make problem for me, he open by it self everytime i try to open another websites
    Please i need some help
    http://yandex.ru/yandsearch?text=ццц&lr=1004

    Dude, I don't think there's a user on this forum that would click on that link.

  • Hi, Someone Know why my charger is not working properly but always it was been working good but now when conect my iphone (3gs) shows a yellow triangle saying : Charging is not supported with this accessory. Please I need some help here. Thanks =D

    Hi Someone Know why my charger is not working properly but always it was been working good but now when conect my iphone (3gs) appears a golden triangle saying :Charging is not Supported with this accessory. Please I Need Some Help Here. Thanks =D

    sounds like the cable or the iphone connector are somehow damaged

  • Please I need some help with a table

    Hi All
    I need some help with a table.
    My table needs to hold prices that the user can update.
    Also has a total of the column.
    my question is if the user adds in a new price how can i pick up the value they have just entered and then add it to the total which will be the last row in the table?
    I have a loop that gets all the values of the column, so I can get the total but it is when the user adds in a new value that I need some help with.
    I have tried using but as I need to set the toal with something like total
        totalTable.setValueAt(total, totalTable.getRowCount()-1,1); I end up with an infinite loop.
    Can any one please advise on some way I can get this to work ?
    Thanks for reading
    Craig

    Hi there camickr
    thanks for the help the other day
    this is my full code....
    package printing;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.print.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import java.text.DecimalFormat;
    public class tablePanel
        extends JDialog  implements Printable {
      BorderLayout borderLayout1 = new BorderLayout();
      private boolean printing = false;
      private Dialog1 dialog;
      JPanel jPanel = new JPanel();
      JTable table;
      JScrollPane scrollPane1 = new JScrollPane();
      DefaultTableModel model;
      private String[] columnNames = {
      private Object[][] data;
      private String selectTotal;
      private double total;
      public tablePanel(Dialog1 dp) {
        dp = dialog;
        try {
          jbInit();
        catch (Exception exception) {
          exception.printStackTrace();
      public tablePanel() {
        try {
          jbInit();
        catch (Exception exception) {
          exception.printStackTrace();
      private void jbInit() throws Exception {
        jPanel.setLayout(borderLayout1);
        scrollPane1.setBounds(new Rectangle(260, 168, 0, 0));
        this.add(jPanel);
        jPanel.add(scrollPane1, java.awt.BorderLayout.CENTER);
        scrollPane1.getViewport().add(table);
        jPanel.setOpaque(true);
        newTable();
        addToModel();
        addRows();
        setTotal();
    public static void main(String[] args) {
      tablePanel tablePanel = new  tablePanel();
      tablePanel.pack();
      tablePanel.setVisible(true);
    public void setTotal() {
      total = 0;
      int i = table.getRowCount();
      for (i = 0; i < table.getRowCount(); i++) {
        String name = (String) table.getValueAt(i, 1);
        if (!"".equals(name)) {
          if (i != table.getRowCount() - 1) {
            double dt = Double.parseDouble(name);
            total = total + dt;
      String str = Double.toString(total);
      table.setValueAt(str, table.getRowCount() - 1, 1);
      super.repaint();
      public void newTable() {
        model = new DefaultTableModel(data, columnNames) {
        table = new JTable() {
          public Component prepareRenderer(TableCellRenderer renderer,
                                           int row, int col) {
            Component c = super.prepareRenderer(renderer, row, col);
            if (printing) {
              c.setBackground(getBackground());
            else {
              if (row % 2 == 1 && !isCellSelected(row, col)) {
                c.setBackground(getBackground());
              else {
                c.setBackground(new Color(227, 239, 250));
              if (isCellSelected(row, col)) {
                c.setBackground(new Color(190, 220, 250));
            return c;
        table.addMouseListener(new MouseAdapter() {
          public void mouseClicked(MouseEvent e) {
            if (e.getClickCount() == 2) {
            if (e.getClickCount() == 1) {
              if (table.getSelectedColumn() == 1) {
       table.setTableHeader(null);
        table.setModel(model);
        scrollPane1.getViewport().add(table);
        table.getColumnModel().getColumn(1).setCellRenderer(new TableRenderDollar());
      public void addToModel() {
        Object[] data = {
            "Price", "5800"};
        model.addRow(data);
      public void addRows() {
        int rows = 20;
        for (int i = 0; i < rows; i++) {
          Object[] data = {
          model.addRow(data);
      public void printOut() {
        PrinterJob pj = PrinterJob.getPrinterJob();
        pj.setPrintable(tablePanel.this);
        pj.printDialog();
        try {
          pj.print();
        catch (Exception PrintException) {}
      public int print(Graphics g, PageFormat pageFormat, int pageIndex) throws PrinterException {
        Graphics2D g2 = (Graphics2D) g;
        g2.setColor(Color.black);
        int fontHeight = g2.getFontMetrics().getHeight();
        int fontDesent = g2.getFontMetrics().getDescent();
        //leave room for page number
        double pageHeight = pageFormat.getImageableHeight() - fontHeight;
        double pageWidth =  pageFormat.getImageableWidth();
        double tableWidth = (double) table.getColumnModel().getTotalColumnWidth();
        double scale = 1;
        if (tableWidth >= pageWidth) {
          scale = pageWidth / tableWidth;
        double headerHeightOnPage = 16.0;
        //double headerHeightOnPage = table.getTableHeader().getHeight() * scale;
        //System.out.println("this is the hedder heigth   " + headerHeightOnPage);
        double tableWidthOnPage = tableWidth * scale;
        double oneRowHeight = (table.getRowHeight() +  table.getRowMargin()) * scale;
        int numRowsOnAPage = (int) ( (pageHeight - headerHeightOnPage) / oneRowHeight);
        double pageHeightForTable = oneRowHeight *numRowsOnAPage;
        int totalNumPages = (int) Math.ceil( ( (double) table.getRowCount()) / numRowsOnAPage);
        if (pageIndex >= totalNumPages) {
          return NO_SUCH_PAGE;
        g2.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
    //bottom center
        g2.drawString("Page: " + (pageIndex + 1 + " of " + totalNumPages),  (int) pageWidth / 2 - 35, (int) (pageHeight + fontHeight - fontDesent));
        g2.translate(0f, headerHeightOnPage);
        g2.translate(0f, -pageIndex * pageHeightForTable);
        //If this piece of the table is smaller
        //than the size available,
        //clip to the appropriate bounds.
        if (pageIndex + 1 == totalNumPages) {
          int lastRowPrinted =
              numRowsOnAPage * pageIndex;
          int numRowsLeft =
              table.getRowCount()
              - lastRowPrinted;
          g2.setClip(0,
                     (int) (pageHeightForTable * pageIndex),
                     (int) Math.ceil(tableWidthOnPage),
                     (int) Math.ceil(oneRowHeight *
                                     numRowsLeft));
        //else clip to the entire area available.
        else {
          g2.setClip(0,
                     (int) (pageHeightForTable * pageIndex),
                     (int) Math.ceil(tableWidthOnPage),
                     (int) Math.ceil(pageHeightForTable));
        g2.scale(scale, scale);
        printing = true;
        try {
        table.paint(g2);
        finally {
          printing = false;
        //tableView.paint(g2);
        g2.scale(1 / scale, 1 / scale);
        g2.translate(0f, pageIndex * pageHeightForTable);
        g2.translate(0f, -headerHeightOnPage);
        g2.setClip(0, 0,
                   (int) Math.ceil(tableWidthOnPage),
                   (int) Math.ceil(headerHeightOnPage));
        g2.scale(scale, scale);
        //table.getTableHeader().paint(g2);
        //paint header at top
        return Printable.PAGE_EXISTS;
    class TableRenderDollar extends DefaultTableCellRenderer{
        public Component getTableCellRendererComponent(
          JTable table,
          Object value,
          boolean isSelected,
          boolean isFocused,
          int row, int column) {
            setHorizontalAlignment(SwingConstants.RIGHT);
          Component component = super.getTableCellRendererComponent(
            table,
            value,
            isSelected,
            isFocused,
            row,
            column);
            if( value == null || value .equals("")){
              ( (JLabel) component).setText("");
            }else{
              double number = 0.0;
              number = new Double(value.toString()).doubleValue();
              DecimalFormat df = new DecimalFormat(",##0.00");
              ( (JLabel) component).setText(df.format(number));
          return component;
    }

  • Please i need some help time capsule and airport express wireless extender

    hello everyone and thank you for looking at my post. i do need some help. i am not very good at the computer programing so i might not use the right terms. i have a time capsule that i just replaced an old pc type router with. i have a fairly large house and can not get wireless signal to the one end of my house. so i went to the apple store and bought an airport express after being told how its just plug and play and itll setup with my time capsule and waala iv just extended my wireless signal. well it did not seam to work that well for me. i have done all the setting up that was told me to in the book to do and i still have get to get a wireless signal out of the express i then hooked up an ethernet wire from the express to my girlfriends macbook. and what do you know now im seeing the express in my airport utility. but then i unplug the ethernet and im back to not seeing the express. what am i doing wrong and what do i need to do. please help me if you can. thanks alot.

    Hello fastuca. Welcome to the Apple Discussions!
    Let's double-check your base stations' settings ...
    o If practical, place the base stations in near proximity to each other during the setup phase. Once done, move them to their desired locations.
    o Open AirPort Utility and select the Time Capsule (TC).
    o Choose Manual Setup from the Base Station menu, or double-click the base station to open the configuration in a separate window. Enter the base station password if necessary.
    o Click AirPort in the toolbar, and then click Wireless.
    o Choose “Create a wireless network” from the Wireless Mode pop-up menu, and then select the “Allow this network to be extended” checkbox.
    o Next, select the 802.11n AirPort Express Base Station (AXn) that will extend this network, and choose Manual Setup from the Base Station menu, or double-click the base station to open its configuration in a separate window. Enter the base station password if necessary.
    o Choose “Extend a wireless network” from the Wireless Mode pop-up menu, and then choose the network you want to extend from the Network Name pop-up menu.
    o Enter the base station network and base station password is necessary.
    o Click Update to update the base station with new network settings.
    (ref: Page 46 of "Designing AirPort Networks Using AirPort Utility)

  • Projectmix, intel macbook, logic pro 8, please i need some help!

    hi all, im pretty new to the world of DAW and interfaces, i recently upgraded to a macbook with logic from a yamaha aw1600 and ive been loving it.
    finally got the funds together to purchase an m-audio projectmix i/0 and ive been so exited to crack on with some recording. the initial setup didn't go great, but i eventually found the correct driver for it. the surface works great as a controller at this stage. so i can't wait to get recording audio with it, and this is where the problem hits, NO AUDIO!
    i really am getting highly frustrated, this machine was meant to be the answer to my dreams. basically, all controller style settings work perfectly, soloing channels, adjusting levels, motorised faders move beautifully, etc, however, nothing comes out of the headphone outputs, or any output for that matter. so i thought, im sure im doing something wrong. i opened the driver program and sure enough, the driver appeared to have levels from the outputs, ie the headphone outputs and main outputs indicated that audio was being sent out to them, but putting the headphones on and turning up the overall level and headphone level does nothing. when plugging in the headphones there is the regular click and pop of plugging anything in. so there is something going correctly internally, but i dont know what.
    furthermore, nothing appears to be going into the inputs of the device either. i tried plugging in a standard microphone and turning up the gain but even the signal led's didnt come on. nothing in, nothing out. so ultimately my device is just a controller so far..
    i had planned also to get a presonus digimax D8 as an adat extension of the inputs, to upgrade to having 16 ins, however, with not getting any audio in so far, my dreams of 16 inputs are so far shattered..
    ive tried installing, uninstalling, re installing the driver, ive followed the advice on m audio's website, etc, but nothing changes. ive done everything that i can think of or have found information on. im so frustrated its unbelieveable.
    also, im new to the mac world, so any information on what leopard and tiger are, and what difference they provide would be great. how can i find out if my system is tiger or whatever? ive looked everywhere on my mac but cant see any indication. do you get tiger or leopard s free downloads? i dont have a clue.
    any info about anything would be so helpful. ive read some posts saying there are problems with intel based macs and m audio products. if all else fails, ill have to sell in and get maybe 2 presonus firewire mic preamps and a seperate controller surface..
    if anyone else is having a problem similar to this then please reply, otherwise ill cry myself to sleep for the rest of my life ha ha...
    also, has anyone had similar connection/audio errors with presonus units?
    anything would help guys.
    sku89

    sku89 wrote:
    right, thanks, im getting there with the understanding now. can anyone help with the projectmix i/o? i think im just going to pass it on and get two presonus studio projects and daisy chain them, then get a seperate mackie control. can anyone approve of presonus stuff? is the firestudio project a wise choice? i realise it doesnt have toss link in/out, but i can firewire daisy chain them right?
    thanks chaps
    Hold on....
    The Presonus FsP can be finicky too, I have one, they finally released a driver that allows the units to be daisy chained, but I don't think it's been field tested enough just yet. For the longest time driver development was in the can, however the latest ones are a big improvement. The Presonus stuff works best with Texas Instruments Firewire chips. I use a single PM for location recording on an older Acer PC laptop, then use it to mix on the G5.
    Why don't we see if we can get the Projectmix working first?
    pancenter-

  • Please, I need some help! my contact form stopped working

    My client called to tell me the form on her site (or at least the "submit" stopped working. I'm too new at this to figure it out.
    here's the link:
    http://www.hickersonbrothers.com/Contact_Us/contact_hickerson_brothers_electric.php
    Does anyone know what I need to do? Thank you in advance.
    jeff

    Thank you for taking the time to re-write the code so it'll work. That's over and above all expectations for help.
    But before I replace the old code with your new code, I just wanted to know if it's an exact replacement for the excerpt I pasted above or does it somehow fit within the whole page of code?
    Here's the whole page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>hickerson_brothers_contact_us</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <META NAME="keywords" CONTENT="Electrical Service, Northern Virginia, VA, Residential Service, Affordable, Fully Trained Professionals, Electric, Service, Electrical, Commercial Service, Residential, Commercial">
    <META NAME="description" CONTENT="Hickerson Brothers Electric Service is a family owned and operated business whose members have serviced the Northern Virginia area for over 30 years.We believe in making our customer’s comfort our number one priority. 100% satisfaction guarenteed.">
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Times New Roman, Times, serif;
    font-size: medium;
    color: #000011;
    #apDiv1 {
    position:absolute;
    width:202px;
    height:125px;
    z-index:1;
    left: 13px;
    top: 33px;
    #apDiv2 {
    position:absolute;
    width:210px;
    height:125px;
    z-index:1;
    left: 14px;
    top: 19px;
    #apDiv3 {
    position:absolute;
    width:258px;
    height:222px;
    z-index:2;
    left: 11px;
    top: 152px;
    #apDiv5 {
    position:absolute;
    width:231px;
    height:88px;
    z-index:3;
    left: 656px;
    top: 38px;
    #apDiv4 {
    position:absolute;
    width:181px;
    height:122px;
    z-index:1;
    left: 51px;
    top: 381px;
    #apDiv6 {
    position:absolute;
    width:496px;
    height:312px;
    z-index:1;
    left: 336px;
    top: 452px;
    .style2 {font-size: 14px;
    font-weight: bold;
    #apDiv10 {
    position:absolute;
    width:534px;
    height:72px;
    z-index:7;
    left: 316px;
    top: 698px;
    #apDiv {
    position:absolute;
    width:601px;
    height:72px;
    z-index:7;
    left: 287px;
    top: 386px;
    #apDiv13 {
    position:absolute;
    width:235px;
    height:191px;
    z-index:10;
    left: 272px;
    top: 170px;
    #apDiv7 { position:absolute;
    width:271px;
    height:212px;
    z-index:2;
    left: 14px;
    top: 152px;
    #apDiv8 {
    position:absolute;
    width:527px;
    height:334px;
    z-index:0;
    left: 273px;
    top: 367px;
    background-color: #EEEEEE;
    #apDiv9 {
    position:absolute;
    width:630px;
    height:332px;
    z-index:0;
    left: 272px;
    background-color: #DDDDDD;
    top: 368px;
    #apDiv11 {
    position:absolute;
    width:200px;
    height:115px;
    z-index:11;
    left: 13px;
    top: 506px;
    #apDiv21 {
    position:absolute;
    width:236px;
    height:98px;
    z-index:13;
    left: 27px;
    top: 697px;
    #apDiv18 {
    position:absolute;
    width:298px;
    height:34px;
    z-index:12;
    left: 651px;
    top: 113px;
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    //-->
    </script>
    </head>
    <body onload="MM_preloadImages('../Assets/Navigation/contactus_up.gif','../Assets/Navigation/pl uggedin_up.gif','../Assets/Navigation/aboutus_down.gif','../Assets/Navigation/aboutus_over .gif','../Assets/Navigation/aboutus_overdown.gif','../Assets/Navigation/residentialservice _down.gif','../Assets/Navigation/commercialservice_down.gif','../Assets/Navigation/commerc ialservice_over.gif','../Assets/Navigation/testimonials_overdown.gif','../Assets/Navigatio n/pluggedin_down.gif','../Assets/Navigation/pluggedin_over.gif','../Assets/Navigation/plug gedin_overdown.gif','../Assets/Navigation/contactus_over.gif','../Assets/Navigation/contac tus_overdown.gif','../Assets/Navigation/commercialservice_overdown.gif','../Assets/Navigat ion/testimonials_down.gif','../Assets/Navigation/testimonials_over.gif','../Assets/Navigat ion/residentialservice_over.gif','../Assets/Navigation/residentialservice_overdown.gif')">
    <table width="892" height="571" cellpadding="0" cellspacing="0">
    </table>
    <table width="892" height="669" cellpadding="0" cellspacing="0">
      <caption align="left"> 
      </caption>
      <tr>
        <th width="890" height="667" scope="row"><div id="apDiv13"><img src="../Assets/Photography/E_phone.jpg" alt="Call Eileen Hickerson Now" title="Call Eileen Hickerson Now" width="255" height="193" /></div>
          <div id="apDiv3"><br />
            <a href="/About_us/about_us.html" target="_top" onclick="MM_nbGroup('down','group1','Aboutus','../Assets/Navigation/aboutus_down.gif',1)" onmouseover="MM_nbGroup('over','Aboutus','../Assets/Navigation/aboutus_over.gif','../Asse ts/Navigation/aboutus_overdown.gif',1)" onmouseout="MM_nbGroup('out')"><img src="../Assets/Navigation/aboutus_up.gif" alt="About Hickerson Brothers Electric" title="About Hickerson Brothers Electric" name="Aboutus" width="250" height="30" border="1" id="Aboutus" onload="" /></a><br />
              <a href="../Residential_service/residential_service.html" target="_top" onclick="MM_nbGroup('down','group1','Residential','../Assets/Navigation/residentialservic e_down.gif',1)" onmouseover="MM_nbGroup('over','Residential','../Assets/Navigation/residentialservice_ove r.gif','../Assets/Navigation/residentialservice_overdown.gif',1)" onmouseout="MM_nbGroup('out')"><img src="../Assets/Navigation/residentialservice_up.gif" alt="Hickerson Brothers Electric Residental" title="Hickerson Brothers Electric Residental" name="Residential" width="250" height="30" border="1" id="Residential" onload="" /></a><br />
              <a href="../Commercial_service/commercial_service.html" target="_top" onclick="MM_nbGroup('down','group1','Commercial','../Assets/Navigation/commercialservice_ down.gif',1)" onmouseover="MM_nbGroup('over','Commercial','../Assets/Navigation/commercialservice_over. gif','../Assets/Navigation/commercialservice_overdown.gif',1)" onmouseout="MM_nbGroup('out')"><img src="../Assets/Navigation/commercialservice_up.gif" alt="Hickerson Brothers Electric Commercial" title="Hickerson Brothers Electric Commercial" name="Commercial" width="250" height="30" border="1" id="Commercial" onload="" /></a><br />
              <a href="../Testimonials/testimonials.html" target="_top" onclick="MM_nbGroup('down','group1','Testimonials','../Assets/Navigation/testimonials_dow n.gif',1)" onmouseover="MM_nbGroup('over','Testimonials','../Assets/Navigation/testimonials_over.gif ','../Assets/Navigation/testimonials_overdown.gif',1)" onmouseout="MM_nbGroup('out')"><img src="../Assets/Navigation/testimonials_up.gif" alt="Hickerson Brothers Electric Reputation" title="Hickerson Brothers Electric Reputation" name="Testimonials" border="1" id="Testimonials" onload="" /></a><br />
              <a href="../Plugged_in/plugged_in.html" target="_top" onclick="MM_nbGroup('down','group1','Pluggedin','../Assets/Navigation/pluggedin_down.gif' ,1)" onmouseover="MM_nbGroup('over','Pluggedin','../Assets/Navigation/pluggedin_over.gif','../ Assets/Navigation/pluggedin_overdown.gif',1)" onmouseout="MM_nbGroup('out')"><img src="../Assets/Navigation/pluggedin_up.gif" alt="Green electricity Plus" title="Green Electricity Plus" name="Pluggedin" width="250" height="30" border="1" id="Pluggedin" onload="" /></a><br />
    <a href="/Contact_Us/contact_hickerson_brothers_electric.php" target="_top" onclick="MM_nbGroup('down','group1','Contactus','../Assets/Navigation/contactus_down.gif' ,1)" onmouseover="MM_nbGroup('over','Contactus','../Assets/Navigation/contactus_over.gif','../ Assets/Navigation/contactus_overdown.gif',1)" onmouseout="MM_nbGroup('out')"><img src="../Assets/Navigation/contactus_down.gif" alt="Contact Hickerson Brothers Electric" title="Contact Hickerson Brothers Electric" name="Contactus" border="1" id="Contactus" onload="MM_nbGroup('init','group1','Contactus','../Assets/Navigation/contactus_up.gif',1) " /></a><br />
              <br />
              <br />
              <br />
              <br />
          </div>
          <br /></th>
      </tr>
    </table>
    <div id="apDiv18">
      <div align="center">24 Hour Emergency Service</div>
    </div>
    <div id="apDiv11"><img src="../Assets/Photography/lady_on_phone.jpg" alt="Hickerson Brothers trusted service for over 30 years" title="Hickerson Brothers trusted service for over 30 years" width="254" height="193" /></div>
    <div id="apDiv9"></div>
    <div id="apDiv6">
    <?php
    $to = "[email protected]";
    $subject = "Online Request for Electrical Problem";
    // This is displayed when the email has been sent
    $thankyou_message = "<br>
    <b>THANK YOU $CustomerName!</b><br><br>
    We'll contact you soon.
    <p> </p>";
    $from_email = "$EmailAddress";
    $message = "Customer Name: $CustomerName\n
    Email Address: $EmailAddress\n
    Primary Phone#: $Primary\n
    Secondary Phone#: $Secondary\n
    Problem: $Problem\n";
    if (!isset($_POST['CustomerName'])) {
    ?>
      <form id="form1" name="form1" method="post" action="<?php echo $PHP_SELF;?>">
        <table width="0" cellspacing="0" cellpadding="0">
          <tr>
            <td><label for="CustomerName">Customer Name:</label></td>
            <td><label for="CustomerName"></label>
                <input type="text" name="CustomerName" id="CustomerName" /></td>
          </tr>
          <tr>
            <td><label for="EmailAddress">Email Address:</label></td>
            <td><label for="EmailAddress"></label>
                <input type="text" name="EmailAddress" id="EmailAddress" /></td>
          </tr>
          <tr>
            <td><Primary>Primary Phone#</primary></td>
            <td><label for="Primary"></label>
                <input type="text" name="Primary" id="Primary" /></td>
          </tr>
          <tr>
            <td><label for="Secondary">Secondary Phone#</label></td>
            <td><label for="Secondary"></label>
                <input type="text" name="Secondary" id="Secondary" /></td>
          </tr>
          <tr>
            <td><label for="Problem">
              <Problem>Electrical Problem:</problem>
            </label></td>
            <td><label for="Problem"></label>
                <textarea name="Problem" id="Problem" cols="45" rows="5"></textarea>
                <label for="Problem"></label>
            </td>
          </tr>
          <tr>
            <td> </td>
            <td><input type="submit" name="reset" id="reset" value="Clear Form" /> <input type="submit" name="Submit" id="Submit" value="Submit" /></td>
          </tr>
          <tr>
            <td> </td>
            <td> </td>
          </tr>
          <tr>
            <td> </td>
            <td> </td>
          </tr>
          <tr>
            <td> </td>
            <td> </td>
          </tr>
          <tr>
            <td height="16"> </td>
            <td> </td>
          </tr>
        </table>
        <br />
        <br />
        <br />
        <br />
        <br />
      </form>
    <?php
    else {
        mail("$to", "$subject", "$message", "From:$EmailAddress\r\nReply-to:$EmailAddress");
    // Display the thankyou message
        echo $thankyou_message;
    ?>
    </div>
    <div id="apDiv4"><img src="../Assets/Logos/Slogan.jpg" alt="familytag" width="171" height="116" /></div>
    <div class="style2" id="apDiv">Drop us a line and describe what electrical problem you're having. If you're experiencing an emergency, please don't hesitate to call us immediately at: (703) 594-3913. Our phones are answered 24/7. Thank you. And sorry for the inconvenience.</div>
    <div class="style2" id="apDiv10">
      <p align="center">If you're experiencing an emergency, please don't hesitate to call us immediately at: (703) 594-3913. Our phones are answered 24/7. Thank you.</p>
    </div>
    <div id="apDiv2">
      <div id="apDiv5">
        <h1 align="right">(703) 594-3913</h1>
      </div>
    <a href="../index.html"><img src="../Assets/Logos/Hickerson_bros_hr.jpg" alt="Hickerson Brothers Electric Service" title="Hickerson Brothers Electric Service" width="213" height="126" /></a></div>
    </body>
    </html>
    Thank's for not giving up on me. I will look into a more secure form after this fix - good idea.
    jeff

  • My iPhone 5 is working perfect except for calls. The person receiving the call is not hearing me at all please I need some help

    I need help with my iPhone 5 I'm hearing perfectly but the person receiving the call is not hearing me at all. Can anyone help. Thanks

    You can call your carrier for troubleshooting but ultimatly this is common with the Iphone 5 and you will end up needing a warranty replacement.

  • Please i need some help,just got a movie on my iPhone and I'm not able to play it in my MAC , anybody knows how to do that?

    i bought a movie on itunes from my iphone and now im trying to watch the movie in my mac and its not showing on my purchase list on my mac itunes
    anyone can give me a help?

    Did you purchase the movie or rent it?  If you rented it, it cannot be transferred from your iPhone.
    If you purchased it, are you sure you're using the same Apple ID on your Mac as you are on your iPhone?  If not, you would be trying to watch a movie owned by someone else.

  • Please! Need some help here!

    public class NobleHouse
        private String names;
        private int maxno;
        private Knight[] knight;
        public NobleHouse(String names,int maxno)
            this.names=names;
            this.maxno=maxno;
            knight=new Knight[maxno];
        public String getHouseName()
            return names;
        public int getCurrentKnights()
            return maxno;
        public Knight getBestKnight()
            Knight max=knight[0];
            for(int i=1;i<getCurrentKnights();i++)
                if(knight.getSkill()>max.getSkill())
    max=knight[i];
    return null;
    public Knight getKnightByName(String names)
    for(int i=0;i<getCurrentKnights();i++)
    if (knight[i].equals(names))
    return knight[i];
    return null;
    public Knight getNextKnight()
    int next=0;
    next++;
    if(getCurrentKnights() == next)
    next=0;
    return knight[next];
    public void addKnight(Knight next)
    int i;
    for(i=0;i<getCurrentKnights();i++)
    if(next!=null && i<getCurrentKnights())
    next=new Knight(next.getName(),next.getJousts(),next.getVictories());
    knight[i]=next;
    next.setHouseName(names);
    public void printKnights()
              if(knight[0]==null)
                   System.out.println("Emty House");
    else
    for(int i=0;i<getCurrentKnights();i++)
    System.out.println(knight[i].getName());
    import java.util.*;
    import java.text.*;
    public class Knight
        private String name,type;
        private int joust,victories;
        public Knight(String name,int joust,int victories)
            type="Freelance";
            this.name=name;
            this.joust=joust;
            this.victories = victories;
        public String getHouseName()
            return type;
        public void setHouseName(String housename)
            type=housename;
        public String getName()
            return name;
        public int getJousts()
            return joust;
        public int getVictories()
            return victories;
        public String getRank()
            String a="Squire";
            String b="Knight";
            String c="Kings Chapion";
            if(joust<20 && joust>0)
                return a;
            else
                if(joust>20 && joust<40)
                    return b;
            return c;
        public double getBaseSkill()
            double ratio;
            double totalvictory=getVictories()*getVictories();
            double totaljoust=getJousts()*getJousts();
            double total=totalvictory/totaljoust;
            ratio=Math.sqrt(total);
            return ratio;
        public int getSkill()
            int number=0;
            if(getRank()=="Squire")
              number=(int) (100*getBaseSkill()*1);
            else
                if(getRank()=="Knight")
                   number=(int) (100*getBaseSkill()*1.5);
               else
                    if(getRank()=="Kings Chapion")
                       number=(int) (100*getBaseSkill()*2);
            return number;
        public void incrementJousts(boolean won)
            joust++;
            if(won==true)
                victories++;
        public boolean joust(boolean won)
            Random no = new Random();
            won=false;
            int knit1=no.nextInt(250)+getSkill();
            int knit2=no.nextInt(250)+getSkill();
            if(knit1>knit2)
                won=true;
            incrementJousts(won);
            return won;
        public void print()
            DecimalFormat ft=new DecimalFormat("0.#");
            System.out.println("Knights name: "+getName());
            System.out.println("Knights rank: "+getRank());
            System.out.println("House name: "+getHouseName());
            System.out.println("Knights skill: "+ft.format(getSkill()));
    public class HouseTest
         public static void main(String [] args)
            //Create teh NobleHouse object to test...
              NobleHouse nh = new NobleHouse("Round Table", 3);
              //Now test the methods...
              System.out.println("TEST : printKnight() on empty set...");
            System.out.println("TEST : (Should say that the house is empty)");
              nh.printKnights();
              System.out.println();
            System.out.println("TEST : addKnight() then calling printKnights()...");
            System.out.println("TEST : (Should print Gwain)");
              nh.addKnight(new Knight("Gwain", 10, 10));
              nh.printKnights();
              System.out.println();
            System.out.println("TEST : getKnightByName() on Gwain...");
            System.out.println("TEST : (Should print Gwains details again)");
            Knight k = nh.getKnightByName("Gwain");
            k.print();
            System.out.println();
              System.out.println("TEST : Adding another Knight...");
              nh.addKnight(new Knight("Lancalot", 40, 40));
            nh.printKnights();
            System.out.println();
            System.out.println("TEST :  getNextKnight()...");
            System.out.println("TEST : (Should print \"gwain, lanc, gwain, lanc\")");
            k = nh.getNextKnight();
            k.print();
            k = nh.getNextKnight();
            k.print();
            k = nh.getNextKnight();
            k.print();
            k = nh.getNextKnight();
            k.print();
            System.out.println();
            System.out.println();
            System.out.println("TEST : Adding one more Knight...");
            nh.addKnight(new Knight("Friday", 25, 20));
            nh.printKnights();
            System.out.println();
            System.out.println("TEST : getBestKnight() (should be Lancelot)...");
              k = nh.getBestKnight();
            k.print();
    }I have no error when compiled but when i run the program don't give me the correct result ! (Exception in thread "main" java.lang.NullPointerException)
    I think something is wrong at the addKnight() method of the NobleHouse class!
    Any idear how to fix it and what is wrong in there????! sothe program will give me the correct result! Thank

    see if this works
    import java.util.*;
    import java.text.*;
    class NobleHouse
        int next = 0;
        private String names;
        private int maxno;
        private Knight[] knight;
        int currentKnights = 0;
        public NobleHouse(String names,int maxno)
            this.names=names;
            this.maxno=maxno;
            knight=new Knight[maxno];
        public String getHouseName(){return names;}
        public int getCurrentKnights(){return currentKnights;}
        public Knight getBestKnight()
            Knight max=knight[0];
            for(int i=1;i<getCurrentKnights();i++)
                if(knight.getSkill()>max.getSkill())
    max=knight[i];
    return max;
    public Knight getKnightByName(String names)
    for(int i=0;i<getCurrentKnights();i++)
    if (knight[i].getName().equals(names))
    return knight[i];
    return null;
    public Knight getNextKnight()
    next++;
    if(getCurrentKnights() == next)
    next=0;
    return knight[next];
    public void addKnight(Knight next)
    int i;
    for(i=0;i<maxno;i++)
    if(knight[i] == null)
    knight[i]=new Knight(next.getName(),next.getJousts(),next.getVictories());
    knight[i].setHouseName(names);
    currentKnights++;
    break;
    public void printKnights()
    if(knight[0]==null) System.out.println("Emty House");
    else for(int i=0;i<getCurrentKnights();i++) System.out.println(knight[i].getName());
    class Knight
    private String name,type;
    private int joust,victories;
    public Knight(String name,int joust,int victories)
    type="Freelance";
    this.name=name;
    this.joust=joust;
    this.victories = victories;
    public String getHouseName(){return type;}
    public void setHouseName(String housename){type=housename;}
    public String getName(){return name;}
    public int getJousts(){return joust;}
    public int getVictories(){return victories;}
    public String getRank()
    String a="Squire";
    String b="Knight";
    String c="Kings Chapion";
    if(joust<20 && joust>0) return a;
    else if(joust>20 && joust<40) return b;
    return c;
    public double getBaseSkill()
    double ratio;
    double totalvictory=getVictories()*getVictories();
    double totaljoust=getJousts()*getJousts();
    double total=totalvictory/totaljoust;
    ratio=Math.sqrt(total);
    return ratio;
    public int getSkill()
    int number=0;
    if(getRank()=="Squire")
    number=(int) (100*getBaseSkill()*1);
    else
    if(getRank()=="Knight") number=(int) (100*getBaseSkill()*1.5);
    else if(getRank()=="Kings Chapion") number=(int) (100*getBaseSkill()*2);
    return number;
    public void incrementJousts(boolean won)
    joust++;
    if(won==true) victories++;
    public boolean joust(boolean won)
    Random no = new Random();
    won=false;
    int knit1=no.nextInt(250)+getSkill();
    int knit2=no.nextInt(250)+getSkill();
    if(knit1>knit2) won=true;
    incrementJousts(won);
    return won;
    public void print()
    DecimalFormat ft=new DecimalFormat("0.#");
    System.out.println("Knights name: "+getName());
    System.out.println("Knights rank: "+getRank());
    System.out.println("House name: "+getHouseName());
    System.out.println("Knights skill: "+ft.format(getSkill()));
    class HouseTest
    public static void main(String [] args)
    NobleHouse nh = new NobleHouse("Round Table", 3);
    System.out.println("TEST : printKnight() on empty set...");
    System.out.println("TEST : (Should say that the house is empty)");
    nh.printKnights();
    System.out.println();
    System.out.println("TEST : addKnight() then calling printKnights()...");
    System.out.println("TEST : (Should print Gwain)");
    nh.addKnight(new Knight("Gwain", 10, 10));
    nh.printKnights();
    System.out.println();
    System.out.println("TEST : getKnightByName() on Gwain...");
    System.out.println("TEST : (Should print Gwains details again)");
    Knight k = nh.getKnightByName("Gwain");
    k.print();
    System.out.println();
    System.out.println("TEST : Adding another Knight...");
    nh.addKnight(new Knight("Lancalot", 40, 40));
    nh.printKnights();
    System.out.println();
    System.out.println("TEST : getNextKnight()...");
    System.out.println("TEST : (Should print \"gwain, lanc, gwain, lanc\")");
    k = nh.getNextKnight();
    k.print();
    k = nh.getNextKnight();
    k.print();
    k = nh.getNextKnight();
    k.print();
    k = nh.getNextKnight();
    k.print();
    System.out.println();
    System.out.println();
    System.out.println("TEST : Adding one more Knight...");
    nh.addKnight(new Knight("Friday", 25, 20));
    nh.printKnights();
    System.out.println();
    System.out.println("TEST : getBestKnight() (should be Lancelot)...");
    k = nh.getBestKnight();
    k.print();

  • TS1702 I need some help the apps were downloading slowly

    The apps downloaded but it didn't cause it's stuck in downloading mode what should I do?
    The iOS 6 update didn't work.
    Please I need some help.
    The apps didn't download.
    Talking Angela and Ginger didn't download.
    Talking Santa didn't update.

    Try moving the existing backup file to a safe location so that iTunes has to create an entire new file.  The backup file is located here. You can delete that backup once you get a successfull backup.
    iTunes places the backup files in the following places:
    Mac: ~/Library/Application Support/MobileSync/Backup/
    Windows XP: \Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    Windows Vista and Windows 7: \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    Note: If you do not see the AppData or Application Data folders, you may need to show hidden files (Windows XP,  Windows Vista and Windows 7), or iTunes may not be installed in the default location. Show hidden files and then search the hard drive for the Backup directory.

  • Remote App on iPad connects but drops after about  20 mins. Need to turn  off wait about 1 minute then turn on wifi on iMac before it can reconnect. Need some help please.

    Remote App on iPad connects but drops after about  20 mins. Need to turn  off wait about 1 minute, then turn on wifi on iMac before it can reconnect. Need some help please.
    Already gone through troubleshooting guide a zillion times. Thanks.

    This worked for me... A little time consuming but once you get rolling it goes GREAT... Thanks....
    I got my artwork and saved it to my Desktop
    Opened up Microsoft Paint and clicked on "File" and "Open" and found it to get it on the screen to resize it
    Clicked "resize" and a box for changing it opened up
    Checked the box "Pixels" and "Unchecked maintain aspect ratio"
    Set Horizontal for 640 and Vertical for 480
    Clicked on "OK" and went back to "File" and did a "Save As" and chose JPEG Picture
    It came up "File Already Existed" and clicked "OK" (really did not care about the original artwork I found because wrong size)
    Went to iTunes and on the movie right clicked on "Get Info", clicked on "Details", then "Artwork"
    Go to the little box on the top left that shows your old artwork and click on it to get the little blue border to appear around it and hit "Delete" to make it gone
    Click on "Add Artwork" and find it where you put the one from above on your Desktop and hit "Open" and OK and your new artwork is now there and all good.
    Sounds like a lot of steps to follow but after around 5 or so you will fly through it. This worked perfect on my iPhone 6 Plus and I have artwork on my Home Videos now.

  • Hi! I got movies on my external hard drive that are AVI kind and won't play on my macbook pro? need some help please!!

    Hi! I got Movies on my external hard drive that are AVI kind and won't play on my macbook pro? When I start playing the movie a message pops up and says "a required codec is not available". I tried flip4mac, xvid, divx already and still not playing my video. need some help please!! thanks.

    Although vlc mentioned above is a much more powerful and better player you could try installing Perian if you insist on using the quicktime player.  It may supply the codec it needs.
    Not sure why you wouldn't be able to play straight avi files though in quicktime.

  • TS2634 Please People I need some help.My iPod is disabled and when I connect it to iTunes it says: Itunes could not connect to the ipod because it is locked with a passcode...

    Please People I need some help.My iPod is disabled and when I connect it to iTunes it says: Itunes could not connect to the ipod because it is locked with a passcode...how can I do it?

    Place the iPod in Recovery mode and then restore.

  • Need some help and guidance please!

    Hi everyone,
    I desperately need some help because I am at my wits end.   In September I purchased a Compaq Presario CQ60-450US.  Shortly after purchasing, I fresh installed Windows 7 Professional.  Recently I decided to tried to dual boot ubuntu on the machine only to find that the installation failed because of CD read error.  I know for a fact that the CD is not the issue because I have used this CD three other times to install ubuntu thus I came to the conclusion that the CD/DVD drive was bad.  
    I called HP support to get a new CD/DVD drive replaced only to spend 2 hours on the phone with a individual that decided to troubleshoot first trying to install ubuntu remotely (I informed the indiviual that the remote session would end), then by playing a DVD and "skipping throughout" the movie.  He/she said that she could see no issue.  (no diagnostic was run)I informed the individual that I had issues with buring as well.  He/she proceeded to go online and install software asking me to demonstrate the issue after which the call got dropped mysteriously.
    I called HP support back and told them that I am having an issue now burning.  They proceed to connect remotely and look at the software the previous support individual downloaded and said that the software was not supported by HP.  I informed the individual that I give permission to install any software needed to troubleshoot but the individual said that I could not be suppoted because I wasn't using the OS installed by HP.  I was instructed to recover my machine to the OS that was installed with the machine if I was to continue to get support.
    I informed the individual that the drivers and software are the same for either OS considering the CD/DVD rom is a plug and play device.  The individual refused to help and told me I had lost my warranty because of my decision to install an OS directly from Microsoft or a third paper vendor. 
    That is where I stand.  HP is refusing to give me support because I am not running their Vista Home edition even though my issue is hardware.  I cannot find any warrent information stating that I need to have the original operating system installed on the machine to receive support.   Can anyone point me to a reputable division that can help me with my issue?  I feel I was just thrown aside so that they don't have to initiate a repair.  If not has anyone filed a compalint against this outrageous support requirement?   

    Dear ndjumpball,
    I would like to say that I have some good -- or at least encouraging -- advice.  Regretfully, I do not.  I had issues with my dv7 practically since purchasing it a year ago specifically so I would have a reliable computer for school.  My first problem: I bought my laptop a mere 7 weeks before HP started offering their free upgrade to Windows 7.  Consequently, I was forced to purchase the full installation retail or continue to deal with the wonton freezes and system failures that inevitably occurred while I was working on homework -- courtesy of HP's installation of Vista Home Premium 64-bit.  Thankfully, I was able to purchase a copy of Windows 7 Professional 64-bit through a significant student discount offer from Microsoft, and I had my new OS downloaded the evening of October 23, 2009; I had to give their servers time to free up, since it seemed like everyone and their dogs were also downloading what the reviews posted on CNET and PC World touted as being more reliable.  I recall (I can't remember exactly which site this appeared) the statement, "Windows 7 is what Vista should have been from the beginning."
    I was all excited and happy now that I had a laptop for school that had everything I was looking for:  decent size hard drive, a fair amount of RAM, great 17.3" display with awesome colors, and a CDRW/DVDRW/Blu-Ray disk drive in the bay.  Not only was I very satisfied with the hardware; it also came with a decent host of software that are thought was pretty cool, too.  It came with CyberLink's DVD Suite 6 that I could activate simply by touching a soft button above the keyboard.  Aside from Vista Home Premium crashing on me at the most inopportune times, I was exceedingly happy with my $1000 purchase and investment.  Then came the "upgrade" to Windows 7 Professional 64-bit...Because I didn't have a "compatible" version of Vista, I had to do a full ("custom") install.  In other words, I lost all of the cool features I originally bought the machine for in the first place...no more cool one-finger's brush software activation (still don't have that working), and HP Chat Support told me the same thing they told you.  The following is a direct copy/paste quote from an email response I received from HP Total Care:  "In order to help you relevantly I would like to request you to please revert back to Vista operating system and check whether the issue is persisting or not.  If the issue is still persisting after reverting the operating system back to vista then we need to perform system recovery."
    After pursuing my case for 6 months -- finally getting my case escalated to two HP Customer Care Case Managers in Texas/Oklahoma -- the best "customer support" I received was what I'm sure was a truly heartfelt and sincere apology...  Oh, neither case manager was "able" to send me either the true upgrade disks that would have preserved the features purchased, nor were they willing to send me a stand-alone installation of the CyberLink’s DVD Suite 6 that is currently offered with the HP Pavilion dv6t Quad Edition series.  (In massive frustration and anger, I bought the CyberLink’s DVD software - $100 I didn't have to spend on something I had already bought...)
    A month later (late March), MY CD-RW/DVD-RW/Blu-Ray drive stopped working.  After an hour online with Customer Care, I had finally convinced the rep that the drive was working fine after my ditching Vista Home Premium, and that its failure had absolutely nothing to do with Windows 7 Pro.  After giving the guy my credit card number as security, I had a replacement drive shipped to me.
    My personal recommendation:  clearly state that the hardware failure had nothing to do with whatever software or OS you chose to install.  Bottom line:  your computer is only 8 months old and is still covered under warranty, they can replace the defective part, or you can return the entire machine.  You probably want to be the "Nice Guy" but you need to remind them that you have other brands available to purchase.
    I don't know if that helps or not, but thank you for giving me the opportunity to vent!  :-)

Maybe you are looking for