TRYING TO SET UP I PAD TO HP AIR PRINTER HAD PROBLEMS WITH ,TALKTALK ROUTER, ASKED AT PC WORLD ADVISED TO BY AIRPORT EXPRESS BUT STILL NO LUCK WILL NOT COMPLETE SET UP. THOUGHT THIS WOULD REPLACE THE ROUTER, I THINK I MAY HAVE BEEN WRONGLY ADVISED

Having problems with air printer to i pad, problem seems to lie with talktalk router, hp solutions managed to get i mac to air printer working but not i pad, adivsed to buy another router as talktalk is not compatiable with bonjour. Went to PC world apple department advised to by airport express. tried setting it up using but will not finalise. i was led to believe this would replace the talktalk router? i feel i have been sold the wrong thing. Any suggestions

This happened to me when I was setting up the wireless router for a friend.  The issue is with the Westall modem.  You need to go in and setup the "bridge" option on the westell modem.  The link below gives directions or you can call bellsouth dsl support (this is how I learned about it).
http://help.bellsouth.net/bellsouth/asp/contentview.asp?isbrowse=true&sprt_cid=3f993409%2Ddff7%2D422...
Good luck
Solution:
Method 1 - Hard Reset
Restore the modem to default settings by pressing the Reset button on the back of the modem and holding it for 3 seconds. (Bridged mode is the default setting for the Westell).
After the modem regains sync, it is in Bridged mode. Do not attempt to surf into the modem as surfing into the modem will enable the Easy Login page and convert the modem from bridged mode to a PPP mode.
Method 2 – Bridged Mode
Access the Westell interface using http://192.168.1.254 or http://launchmodem.
Click on the Broadband DSL Line button. 
Click on the Protocols button 
Select the radio button to the left of Option 2 (Bridge)
Click the save button. Once the modem has restarted it is in bridge mode. 
ALL STEPS COMPLETE

Similar Messages

  • An error occurred during local report processing.The definition of the report '' is invalid.The definition of this report is not valid or supported by this version of Reporting Services. he report definition may have been created with a later version of R

    Hi,
    I am trying to create rdlc file programmatically. Using Memory Table as dataset. Here is my code
    ' For each field in the resultset, add the name to an array listDim m_fields AsArrayList
      m_fields = NewArrayList()
      Dim i AsIntegerFor i = 0 To tbdataset.Tables(0).Columns.Count - 1
          m_fields.Add(tbdataset.Tables(0).Columns(i).ColumnName.ToString)
      Next i
      'Create Report 'http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition'http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition' Open a new RDL file stream for writingDim stream AsFileStream
      stream = File.OpenWrite("D:\MyTestReport2.rdlc")
      Dim writer AsNewXmlTextWriter(stream, Encoding.UTF8)
      ' Causes child elements to be indented
      writer.Formatting = Formatting.Indented
      ' Report element
      writer.WriteProcessingInstruction("xml", "version=""1.0"" encoding=""utf-8""")
      writer.WriteStartElement("Report")
      writer.WriteAttributeString("xmlns", Nothing, "http://schemas.microsoft.com/sqlserver/reporting/2010/01/reportdefinition")
      writer.WriteAttributeString("xmlns:rd", "http://schemas.microsoft.com/SQLServer/reporting/reportdesigner")
      writer.WriteStartElement("ReportSections")
      writer.WriteStartElement("ReportSection")
      writer.WriteElementString("Width", "11in")
      writer.WriteStartElement("Body")
      writer.WriteElementString("Height", "5in")
      writer.WriteStartElement("ReportItems")
      writer.WriteStartElement("Tablix")
      writer.WriteAttributeString("Name", Nothing, "Tablix1")
      writer.WriteElementString("Top", ".5in")
      writer.WriteElementString("Left", ".5in")
      writer.WriteElementString("Height", ".5in")
      writer.WriteElementString("Width", (m_fields.Count * 1.5).ToString() + "in")
      writer.WriteStartElement("TablixBody")
      ' Tablix Columns
      writer.WriteStartElement("TablixColumns")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixColumn")
          writer.WriteElementString("Width", "1.5in")
          writer.WriteEndElement() ' TableColumnNext fieldName
      writer.WriteEndElement() ' TablixColumns' Header Row
      writer.WriteStartElement("TablixRows")
      writer.WriteStartElement("TablixRow")
      writer.WriteElementString("Height", ".25in")
      writer.WriteStartElement("TablixCells")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixCell")
          writer.WriteStartElement("CellContents")
          writer.WriteStartElement("Textbox")
          writer.WriteAttributeString("Name", Nothing, "Header" + fieldName)
          ' writer.WriteAttributeString("CanGrow",  True)' writer.WriteAttributeString("Keeptogether", True)
          writer.WriteStartElement("Paragraphs")
          writer.WriteStartElement("Paragraph")
          writer.WriteStartElement("TextRuns")
          writer.WriteStartElement("TextRun")
          writer.WriteElementString("Value", fieldName)
          writer.WriteStartElement("Style")
          writer.WriteElementString("TextDecoration", "Underline")
          writer.WriteElementString("PaddingTop", "0in")
          writer.WriteElementString("PaddingLeft", "0in")
          writer.WriteElementString("LineHeight", ".5in")
          ''writer.WriteElementString("Width", "1.5in")''writer.WriteElementString("Value", fieldName)
          writer.WriteEndElement() ' Style
          writer.WriteEndElement() ' TextRun
          writer.WriteEndElement() ' TextRuns
          writer.WriteEndElement() ' Paragraph
          writer.WriteEndElement() ' Paragraphs
          writer.WriteEndElement() ' TexBox
          writer.WriteEndElement() ' CellContents
          writer.WriteEndElement() ' TablixCellNext
      writer.WriteEndElement() ' TablixCells
      writer.WriteEndElement() ' TablixRow'writer.WriteEndElement() ' TablixRows          Do not close Rows tag here colse it after details'End of Headers'Details Rows'writer.WriteStartElement("TablixRows")         Since Rows tag in header is not closed not need to open fresh tag
      writer.WriteStartElement("TablixRow")
      writer.WriteElementString("Height", ".25in")
      writer.WriteStartElement("TablixCells")
      ForEach fieldName In m_fields
          writer.WriteStartElement("TablixCell")
          writer.WriteStartElement("CellContents")
          writer.WriteStartElement("Textbox")
          writer.WriteAttributeString("Name", Nothing, fieldName)
          '  writer.WriteAttributeString("CanGrow", True)'  writer.WriteAttributeString("Keeptogether", True)
          writer.WriteStartElement("Paragraphs")
          writer.WriteStartElement("Paragraph")
          writer.WriteStartElement("TextRuns")
          writer.WriteStartElement("TextRun")
          'writer.WriteElementString("Value", fieldName)
          writer.WriteElementString("Value", "=Fields!" + fieldName + ".Value")
          writer.WriteStartElement("Style")
          writer.WriteElementString("TextDecoration", "Underline")
          writer.WriteElementString("PaddingTop", "0in")
          writer.WriteElementString("PaddingLeft", "0in")
          writer.WriteElementString("LineHeight", ".5in")
          ''writer.WriteElementString("Width", "1.5in")''writer.WriteElementString("Value", fieldName)
          writer.WriteEndElement() ' Style
          writer.WriteEndElement() ' TextRun
          writer.WriteEndElement() ' TextRuns
          writer.WriteEndElement() ' Paragraph
          writer.WriteEndElement() ' Paragraphs
          writer.WriteEndElement() ' TexBox
          writer.WriteEndElement() ' CellContents
          writer.WriteEndElement() ' TablixCellNext
      writer.WriteEndElement() ' TablixCells
      writer.WriteEndElement() ' TablixRow
      writer.WriteEndElement() ' TablixRows'End of Details Rows
      writer.WriteEndElement() ' TablixBody
      writer.WriteStartElement("TablixRowHierarchy")
      writer.WriteStartElement("TablixMembers")
      writer.WriteStartElement("TablixMember")
      ' Group
      writer.WriteElementString("KeepWithGroup", "After")
      writer.WriteEndElement() ' TablixMember' Detail Group
      writer.WriteStartElement("TablixMember")
      writer.WriteStartElement("Group")
      writer.WriteAttributeString("Name", Nothing, "Details")
      writer.WriteEndElement() ' Group
      writer.WriteEndElement() ' TablixMember
      writer.WriteEndElement() ' TablixMembers
      writer.WriteEndElement() ' TablixRowHierarchy
      writer.WriteStartElement("TablixColumnHierarchy")
      writer.WriteStartElement("TablixMembers")
      'writer.WriteStartElement("TablixMember")ForEach fieldName In m_fields
          writer.WriteStartElement("TablixMember")
          writer.WriteEndElement() ' TablixMemberNext' writer.WriteEndElement() ' TablixMember
      writer.WriteEndElement() ' TablixMembers
      writer.WriteEndElement() ' TablixColumnHierarchy
      writer.WriteElementString("DataSetName", "tbdataset")
      writer.WriteEndElement() ' Tablix
      writer.WriteEndElement() ' ReportItems
      writer.WriteEndElement() ' Body
      writer.WriteStartElement("Page")
      ' Page Header Element
      writer.WriteStartElement("PageHeader")
      writer.WriteElementString("Height", "1.40cm")
      writer.WriteStartElement("ReportItems")
      writer.WriteStartElement("Textbox")
      writer.WriteAttributeString("Name", Nothing, "Textbox1")
      writer.WriteStartElement("Paragraphs")
      writer.WriteStartElement("Paragraph")
      writer.WriteStartElement("TextRuns")
      writer.WriteStartElement("TextRun")
      writer.WriteElementString("Value", Nothing, "ABC CHS.")
      writer.WriteEndElement() ' TextRun
      writer.WriteEndElement() ' TextRuns
      writer.WriteEndElement() ' Paragraph
      writer.WriteEndElement() ' Paragraphs
      writer.WriteEndElement() ' TextBox
      writer.WriteEndElement() ' ReportItems
      writer.WriteEndElement() ' PageHeader
      writer.WriteEndElement() ' Page
      writer.WriteEndElement() ' ReportSection
      writer.WriteEndElement() ' ReportSections' DataSources
      writer.WriteStartElement("DataSources")
      writer.WriteStartElement("DataSource")
      writer.WriteAttributeString("Name", Nothing, "tbdata")
      writer.WriteStartElement("DataSourceReference")
      writer.WriteEndElement() ' DataSourceReference
      writer.WriteEndElement() ' DataSource
      writer.WriteEndElement() ' DataSources'DataSet
      writer.WriteStartElement("DataSets")
      writer.WriteStartElement("DataSet")
      writer.WriteAttributeString("Name", Nothing, "tbdataset")
      writer.WriteStartElement("Query")
      writer.WriteElementString("DataSourceName", Nothing, "tbdata")
      'writer.WriteElementString("CommandText", Nothing, "/* Local Query */")
      writer.WriteElementString("CommandText", Nothing, "TableDirect")
      writer.WriteEndElement() ' Query'Fields
      writer.WriteStartElement("Fields")
      ForEach fieldName In m_fields
          writer.WriteStartElement("Field")
          writer.WriteAttributeString("Name", Nothing, fieldName)
          writer.WriteElementString("DataField", fieldName)
          writer.WriteElementString("rd:TypeName", fieldName.GetType.ToString)
          writer.WriteEndElement() ' FieldNext
      writer.WriteEndElement() ' Fields' rd datasetinfo
      writer.WriteEndElement() ' DataSet
      writer.WriteEndElement() ' DataSets
      writer.WriteEndElement() ' Report' Flush the writer and close the stream
      writer.Flush()
      stream.Close()
      'Convert to StreamDim myByteArray AsByte() = System.Text.Encoding.UTF8.GetBytes("D:\MyTestReport2.rdlc")
      Dim ms AsNewMemoryStream(myByteArray)
      'Supply Stream to ReportViewer
      ReportViewer1.LocalReport.LoadReportDefinition(ms)
      ReportViewer1.LocalReport.Refresh()When I open rdlc in designer I get following error"Data at the root level is invalid."When I run the aspx I get following error
    An error occurred during local report processing.
    The definition of the report '' is invalid.
    The definition of this report is not valid or supported by this version of Reporting Services.
    The report definition may have been created with a later version of Reporting Services, or contain content that is not well-formed or not valid based on Reporting Services schemas.
    Details: Data at the root level is invalid. Line 1, position 1.
    Can anybody guide me?

    Hi Wendy Fu,
    Thanks for your feed back. I could see Microsoft.ReportViewer.ProcessingObjectModel.dll to add as reference to my project. Actually I can open generated rdlc in designer, at run time I get error. I could not make out where is the exact mistake out of three
    options flashed.
    The definition of this report is not valid or supported by this version of Reporting Services.
    The report definition may have been created with a later version of Reporting Services
    or contain content that is not well-formed or not valid based on Reporting Services schemas
    Details: Data at the root level is invalid
    My web config has following references
    <add assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
    <add assembly="Microsoft.ReportViewer.Common, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845DCD8080CC91"/>
    May be I have to change these versions to 9 or 10.
    First I will try adding Microsoft.ReportViewer.ProcessingObjectModel.dll .
    Once thanks for your reply.
    Races

  • Firefox 6 will not allow you to paste a cookie into the addressbar like all previous versions have. I use software to replace web chat and must do this and have been able to do it in all past versions. What's the deal?

    Firefox 6 will not allow you to paste a cookie into the addressbar like all previous versions have. I use software to replace web chat and must do this and have been able to do it in all past versions. What's the deal?

    Thank you for your response.
    After searching around for any pointers to my problem, the above fixes I listed were the things that came closest to maybe addressing the issue, that I was able to locate. But since none worked, and as you pointed out, it is now clear they will only help towards viewing sent images rather than helping with inserting any images in the body of the email, which is the problem I suddenly started facing today.
    Coming to your suggestion, on opening the Write window, the Insert choice on the menu bar is indeed available. And I had already tried using that, by clicking on the '''Insert ----> Image''' option listed. That opens
    up the "Image Properties" box but using that has not resolved the matter either. It results in an image box getting inserted within the email but without the actual image itself.
    Plus, normally I am able to use the '''Paste''' function in the Edit menu or through right-click, but today the (Cut/Copy/Paste) functions have gone inactive, thereby disallowing me to use that to place an image within the email.

  • I had my iphone 5 replaced at the apple store as of a broken sleep button and i was wondering if they would replace again as i think it may of happend again as it works most of the time but theres an odd click where it wont work.

    I had my iphone 5 replaced at the apple store as of a broken sleep button and i was wondering if they would replace again as i think it may of happend again as it works most of the time but theres an odd click where it wont work.

    Yes.

  • HT5868 I am always prompted to Trust this computer, but still my iTunes will not sync.  I have Windows 8 on my  laptop.  All of my photos transfer to the computer just fine, but the iTunes is not communicating between my phone and laptop.

    I am always prompted to Trust the Computer by my iPhone 4S, but still my iTunes will not sync.  I have Windows 8.  All of my pictures transfer to the computer when I plug my phone in, but not the iTunes. My playlists and purchased songs are not syncing either from the computer to the phone, or from the phone to the computer.  I have been working on this for days and have tried every suggestion in Help

    you just need to call the apple support or just book an appointment at the genus bar at your nearest apple store.

  • "The file [name of file] may have been changed by another user since you last saved it." Issue affects both network and local files.

    When a certain user saves a file in Excel 2010, she gets a message: "The file <name of file> may have been changed by another user since you last saved it."  She can choose to save as another file or overwrite with her changes. 
    This just started happening a week or so ago.  She was concerned that someone else was accessing her files, but we did several tests that opened, made a change and saved in a matter of seconds, and she still gets the message.  It happens on
    most files, but not all – both network and local.
    We already tried the QFE_Saskatchewan registry fix.  I also checked the file server for Services for Macintosh.

    You may be confused by the error in Excel saying “another user”. Actually Excel cannot tell who (the real human) is editing the file. Based on my research the No.1 possibility of the error is KB2626998.
    2626998  Connection to a network document is lost in the 2007 Office system or in Office 2010 after the computer resumes from standby
    http://support.microsoft.com/kb/2626998
    For Excel 2010, follow these steps:
    a.  Click Start , click Run , type regedit in the Open box, and then click OK .
    b.  Locate and then select the following registry subkey: HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Excel\Options
    c.  On the Edit menu, point to New , and then click Dword Value .
    d.  Type NetworkAvailableTimeInSeconds , and then press Enter.
    e.  Right-click NetworkAvailableTimeInSeconds , and then click Modify .
    f.  In the Value data box, click Decimal , type a number value, and then click OK .
    Note This registry subkey sets the time, in seconds, that Excel waits for the network to resume. For example, if you type 15 for the number value, Excel waits 15 seconds for the network to resume. You might have to do some tests in your own environment to
    determine an appropriate value. You may have to try multiple numbers.
    g.  Locate and then select the following registry subkey.
    HKEY_CURRENT_USER\Software\Microsoft\office\14.0\common\Internet
    h.  Repeat step 2C through step 2F again. Reuse the same value that you used previously.
    i.  Exit Registry Editor.
    Feel free to post back. Thanks.
    Cheers,
    Tony Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please contact
    [email protected]

  • Hi Forum, can u please help? iRecently bought a mac pro & my garageband 11 was working fine but now it's showing a question mark in the dock but it won't open. I think it may have been accidentally trashed. I've searched the trash & spotlighted. What now?

    Hi Forum, can u please help? iRecently bought a macbook pro and garageband 11 was working fine but now it's showing a question mark in the dock and it won't open. I think it may have been accidentally trashed. I've searched the trash and spotlighted but don't know what to do next. Any ideas? Thanks.

    How  did you install GarageBand on your Mac? Did it come preinstalled with the other iLife applications?
    If your MacOS supports the AppStore, you should be able to redownload GarageBand from the AppStore, see this support Article: OS X: About OS X Recovery on how to download again:
    Double-click the App Store icon in the dock.
    Enter your Apple ID and password.
    Click Purchases.
    If you haven't previously accepted your bundled iLife applications within the Mac App Store, you should see your iLife applications appear in the Accept portion of the screen. Click Accept.
    You may be asked for your Apple ID and password once again. Your iLife applications now move to the Purchased section. These applications are part of the software that came with your Lion based computer. Your account will not be charged for them. Click Install to complete installation of your applications.
    Regards
    Léonie

  • HT4259 I have the old airport express but my iPad 3 is not able to connect to it even with the app downloaded. What can I do?

    I have the old airport express but my iPad 3 is not able to connect to it even with the app downloaded. What can I do?

    Use a windows computer.. or ask a friend to bring a windows laptop and use the 5.6 version windows utility.

  • I have an older airport express but don't know where to look to find its model number.  The version number is airport utility 6.3.4 (634.17).  Can anyone point me in the right direction?  Thanks.

    I have an older airport express, but don't know where to look to find its model number. 
    The version number is airport utility 6.3.4 (634.17). 
    Can anyone point me in the right direction?  Thanks.

    Hard to see it's so teeny. I needed a magnifying glass.
    FWIW, you should not mark your reply as Solved because you did not solve your question. Helpful and Solved are used to reward the user who help you or solved your problem.

  • Iphoto will not open anymore, and tells me to "Update the latest version" even though I have it.

    HELP! I have the latest updated version of OS X Lion, but now my iphoto will not open anymore and keeps telling me to "Update the latest version". SO then i tried to update it again and again, but it just does not work. What do I do?

    What version of iPhoto do you actually have?

  • Time capsule will not back up my iMac since I replaced the hard drive

    I replaced the hard drive in my iMac, now time machine won't back up to time capsule because there is not enough space. I believe time machine/time capsule thinks the new hard drive is a new computer and therefore must perform a new complete backup even though the data on the new hard drive came directly off the old hard drive (the was backed up on time capsule. Our time capsule is currently backing up two computers (both Macs). How do I get time capsule to start backing up the new hard drive?

    You'll have to be more specific -- that's like emailing an auto mechanic saying only "My car won't start."
    Has it ever worked?
    Does your Mac recognize your Time Capsule?
    Do backups start?
    If so, do they hang, or fail?  If they fail, with what message?
    Start with Time Machine - Troubleshooting.   It will show you how to locate the message(s) that describe the problem, then help you fix it.    If that doesn't help, post back with details, including all the messages, your setup, what you've done, and the results.

  • A friend downloaded a disk on to my gateway windows 7 computer ....I have icloud storage and it was a dvr but it dissappeared off of the dvr, we think it may have went to icloud so we may still be able to save the information.is this true and how do Iget

    A friend downloaded a disk on my gateway touch screen computer....I am connected to facebook which is also connected to I cloud....I own a I-PHone 5 and a Ipad 2 and when they brought up the disk on the computer with wiped it clean....we dont know how because it was a dv-r and suppossedly you can not wipe them out but it did....we checked it on 3 different computers.....Here is my question I am connected to Facebook and to I-cloud storage...would it not automatically go there so I can retrieve it and the answer is I do have I-cloud set up that way...I went into look!  How would I retrieve the document from the dvr.  Thank you so much in advance

    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923

  • I am getting the error "we're sorry but we can not complete your request at this time through the itunes store"

    Hi Itunes was working on monday and now it isn't, it's giving me this error anytime I try to access updates for my apps or buy new apps, any ideas?

    just started having the same issue since aobut 2 hours ago.  I did downloads yesterday morning and it was working just fine.
    as of 2 hours ago it's showing cannot connect to itunes store at all not even under top 25, cateogories nothing.  just wondering if there is anything that has gone wrong with the itunes store.

  • I WANT REMOV E FIREFOX BUT THEY WILL NOT LET ME, I THOUGHT THIS WAS A FREE COUNTRY AND THAT I HAD A CHOICE OF WHAT I HAVE ON MY COMPUTER.

    I DO NOT WANT FIREFOX ON MY COMPUTER, IS TOO HARD FOR YOU TO UNDERSTAND?

    See also:
    *http://kb.mozillazine.org/Uninstalling_Firefox
    If you cant uninstall Firefox then you can remove the Firefox Profile Folder manually.
    *(32 bit Windows) C:\Program Files\Mozilla Firefox\
    *(64 bit Windows) C:\Program Files (x86)\Mozilla Firefox\

  • Purchased a 2nd hand iPhone - unable to set up as it displays as associated with prior owners email - he has removed device from his account but still won't let me complete set up. Any advice on next steps?

    Display shows previous owner set up find my phone function & it is linked to their apple account. Owner has removed device from a/c but
    it still won't allow me to proceed with set up.

    Hello Penng185,
    Steps to be done to remove the device from the previous owner's iCloud Account, if you have already done this things then there might be something that you might have missed due to which the iPhone is still showing the Find My iPhone Activation Lock screen.
    Resolution : http://support.apple.com/kb/ts4515
    If the previous owner is with you and can access the device
    Ask them to enter their Apple ID and password on the Activate iPhone screen (shown above) to remove the device from their account. You can then proceed through the rest of the device setup process.
    If the previous owner is not present
    Contact them and ask them to follow these steps to remove the device from their account:
    Sign in to their iCloud account at www.icloud.com/find.
    Choose the device from their Find My iPhone device list by clicking All Devices and selecting the correct device.
    Click "Remove from Account" to remove the device from the account.
    After the device has been removed from the previous owner’s account, turn it off by pressing and holding the Sleep/Wake button located on the top right side of the device. Then restart your device and proceed with device setup as you would normally.

Maybe you are looking for

  • Budget Currency

    We have one Primary ledger having Currency as BRL . Also we have a secondry ledger having Currency as USD . Now we have defined a Project in Primary Ledger and have put the Currency of Project (at the time of defining the Project) as USD . Can we obt

  • Problem Creating Portles Using JAVABEANS

    I have an application that uses JSP and JavaBeans that works perfectly outside of a portlet. When implementing it as a portlet it is unable to find the JavaBeans. I have stored the JavaBeans in the default /WEB-INF/classes directory. The JSP files ar

  • Crvs 2010 beta - Chart shortcut menu issues

    Hello, In a previus message (see CRVS2010 beta - Chart Options dialog box), I referenced one option on the chart shortcut menu that opens the Chart Options dialog box that was not working properly. The other 2 other options on the same shortcut menu

  • HOW MAY I STOP THE WARNING RE. SECURITY UPON OPENING FIREFOX????????

    WHEN OPENING FIREFOX A MESSAGE SCREEN POPS UP RE. SECURITY. HOW CAN I STOP THIS MESSAGE???????????????

  • Can not run ant build. Please help me!

    Please help me. Thks U very much in advance I've installed java Webservice 1.2 included Ant 1.5 (I haven't installed any Ant version before) When I run Ant in cmd, the following error occur: D:\java\doc\jwstutorial12\examples\gs>ant build Exception i