Please Help!! strange error

hi, am having trouble with a program , it gives me the error incomaitable data type however i cant seem to find the problem anywhere.
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;
import java.io.*;
import javax.swing.border.*;
class DataRecord extends JPanel {
     JTextField NameField, HeightField;
     public DataRecord(int num) {
          JPanel p = new JPanel();
          p.setLayout(new GridLayout(0,2));
          p.add(new JLabel("Record "+num));
          p.add(new JLabel(""));
          p.add(new JLabel("Name: "));
          NameField = new JTextField(15);
          p.add(NameField);
          p.add(new JLabel("Height: "));
          HeightField = new JTextField(15);
          p.add(HeightField);
          setLayout(new FlowLayout(FlowLayout.CENTER));
          add(p);
     public String getName() {
          return NameField.getText();
     public String getHeight() {
          return HeightField.getText();
public class Example extends JFrame implements ActionListener {
     JPanel recordsPanel;
     ArrayList records;
     JButton save,add;
     public Example() {
          setTitle("Example");
          setDefaultCloseOperation(EXIT_ON_CLOSE);
          setResizable(false);
          records = new ArrayList();          
          records.add(new DataRecord(1));
          recordsPanel = new JPanel();
          recordsPanel.setLayout(new GridLayout(0,1));
          recordsPanel.add((DataRecord)records.get(0));
          Container c = getContentPane();
          c.setLayout(new BorderLayout());
          JScrollPane jsp = new JScrollPane(recordsPanel,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
          c.add(jsp,BorderLayout.CENTER);
          JPanel south = new JPanel();
          south.setLayout(new FlowLayout(FlowLayout.CENTER));
          add = new JButton("Add Record");
          south.add(add);
          add.addActionListener(this);
          save = new JButton("Save Records");
          south.add(save);
          save.addActionListener(this);
          c.add(south,BorderLayout.SOUTH);
          pack();
          setSize(this.getWidth(),400);
          show();
     public void actionPerformed(ActionEvent e) {
          if (e.getSource() == save) {
               try {
                    save();
               catch (IOException ioe) {
                    ioe.printStackTrace();
          else if (e.getSource() == add) add();
     protected void add() {
          DataRecord dr = new DataRecord(records.size()+1);
          records.add(dr);
          recordsPanel.add(dr);
          validate();
     protected void save() throws IOException {
          String file = "records.txt";
          PrintStream p = new PrintStream(new FileOutputStream(file));
          DataRecord d;
          for (int j = 0;j < records.size();j++) {
               d = (DataRecord)records.get(j);
               String s = "Record "+(j+1);
               p.println(s);
               for (int n = 0;n < s.length();n++) p.print("-");
               p.println("");
               p.println("Name: "+d.getName());
               p.println("Phone #: "+d.getHeight());
               p.println("");
     public static void main(String[] args) {
          new Example();
}anyone else know what the prob is?

i apologise about the double post, i refreshed by mistake
k am posting the code again with some highlights of where the problem is
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;
import java.io.*;
import javax.swing.border.*;
class DataRecord extends JPanel {
     JTextField NameField, HeightField;
     public DataRecord(int num) {
          JPanel p = new JPanel();
          p.setLayout(new GridLayout(0,2));
          p.add(new JLabel("Record "+num));
          p.add(new JLabel(""));
          p.add(new JLabel("Name: "));
          NameField = new JTextField(15);
          p.add(NameField);
          p.add(new JLabel("Height: "));
          HeightField = new JTextField(15);
          p.add(HeightField);
          setLayout(new FlowLayout(FlowLayout.CENTER));
          add(p);
     public String getName() {
          return NameField.getText();
     public String getHeight() {
          return HeightField.getText(); <<<<<HeightField
public class Example extends JFrame implements ActionListener {
     JPanel recordsPanel;
     ArrayList records;
     JButton save,add;
     public Example() {
          setTitle("Example");
          setDefaultCloseOperation(EXIT_ON_CLOSE);
          setResizable(false);
          records = new ArrayList();          
          records.add(new DataRecord(1));
          recordsPanel = new JPanel();
          recordsPanel.setLayout(new GridLayout(0,1));
          recordsPanel.add((DataRecord)records.get(0));
          Container c = getContentPane();
          c.setLayout(new BorderLayout());
          JScrollPane jsp = new JScrollPane(recordsPanel,JScrollPane.VERTICAL_SCROLLBAR_ALWAYS,JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
          c.add(jsp,BorderLayout.CENTER);
          JPanel south = new JPanel();
          south.setLayout(new FlowLayout(FlowLayout.CENTER));
          add = new JButton("Add Record");
          south.add(add);
          add.addActionListener(this);
          save = new JButton("Save Records");
          south.add(save);
          save.addActionListener(this);
          c.add(south,BorderLayout.SOUTH);
          pack();
          setSize(this.getWidth(),400);
          show();
     public void actionPerformed(ActionEvent e) {
          if (e.getSource() == save) {
               try {
                    save();
               catch (IOException ioe) {
                    ioe.printStackTrace();
          else if (e.getSource() == add) add();
     protected void add() {
          DataRecord dr = new DataRecord(records.size()+1);
          records.add(dr);
          recordsPanel.add(dr);
          validate();
     protected void save() throws IOException {
          String file = "records.txt";
          PrintStream p = new PrintStream(new FileOutputStream(file));
          DataRecord d;
          for (int j = 0;j < records.size();j++) {
               d = (DataRecord)records.get(j);
               String s = "Record "+(j+1);
               p.println(s);
               for (int n = 0;n < s.length();n++) p.print("-");
               p.println("");
               p.println("Name: "+d.getName());
               p.println("Height: "+d.getHeight());  <<<<<<<<<HeightField
               p.println("");
     public static void main(String[] args) {
          new Example();
}the exact error message is
Example.java:34: getHeight() in DataRecord cannot override getHeight() in javax.swing.JComponent; at
o use incompatible return type
found : java.lang.String
required: int
public String getHeight() {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Please help: strange error message when trying to burn cds

    I have been trying to burn an itunes playlist onto cds and I have never had trouble doing this before, but just this afternoon I have started getting an error message and the disc will automatically eject itself immediately following the initializing stage.
    The error message I receive is this: "The attempt to burn a disc failed. The device failed to calibrate the laser power for this media."
    What does this mean? What can I do to fix the problem? Thank you in advance!!
    (Additional information in case this is helpful: The discs are Maxwell CD-R audio cds with 700mb/80min capacity, and my itunes is version 7.3.1. The playlist is long -- spanning multiple cd lengths -- but I have never encountered a problem with that before, so I don't think that is causing the error.)

    Same here.Although i've had this problem since febuary of this year.
    Just upgraded to 7.4 and it still does'nt work.Its not an uncommon problem,there has been hundreds of threads about this and thousands of users with the same problem,apple don't seem to want to recognise or solve the problem.Disgraceful behaviour on their part.
    I've simply had enough now so i've contacted these...
    http://www.bbc.co.uk/consumer/tvand_radio/watchdog/contactindex.shtml
    ...people.Hopefully they can make apple sit up and take notice of this problem,although i have my doubts.I suggest you do the same if you to have had enough of apple's simply dreadful customer service and faulty software.
    Sorry i could'nt be of any help to you but i can assure you that are not alone in this.

  • Please help - strange error message when trying to download i tunes

    Hi
    When i try and download i-tunes i get a message about URBCHN1 not being a win32 command, or something similar. I have tried all thr suggestion on the web, deleted i tunes and quicktime, deleted temp folders and even changed the settings in myconfig, but what ever i do i still get the same message!
    HELP PLEASE

    When i try and download i-tunes i get a message about URBCHN1 not being a win32 command, or something similar.
    ... that's an unusual one.
    could you possibly send us a screenshot of the error message box? for instructions, see the following user tip:
    hudgie: Taking screenshots to help with problems

  • Please help: Strange error occurs when loading courseware

    Hi all,
    We have developed numerous training packages using Captivate 5. For the most part they seem to work nicely, however, three of our users (out of hundreds) have reported the following error (please view attached screenshot).
    One user is using Firefox (dont know browser or flash version),
    Second User is using Internet Explorer 8.0.7601  with a flash version of 10.2.1.53
    Third user tried both IE and Firefox and has a flash version of 10.2.15.1
    I myself am using IE 8 with a flash version of 10.2.153 and am not able to replicate the error.
    I have done a search on the forums trying to see if anyone else has come accross the same error and found the following thread: http://forums.adobe.com/message/3269584   However we are not using the aggregator for our projects, and although we do use a preloader, the vast majority of our users are not experiencing problems. For those users who are having difficulties two of them seem to be able to open some modules but not others (yet the same pre loader is used throughout all our courseware).
    One interesting observation that I have had is that for one user the error only occurs on modules that are using a table of contents (in overlay mode) and they are able to open all other modules. Yet, for one of the other users the error is occuring on all modules, even those without a table of contents.
    I can't figure out what may be causing the problem because each user is experiencing the error under slightly different circumstances (In terms of flash versions, browsers and whether or not the module has a table of contents or preloaders).
    Has anyone else experienced the above error. If so did you figure out what was causing the problem?
    thanks!

    Hi,
    Would it be possible to share that swf file, so that i will try from my end and see whether i can reproduce the issue?
    You can e-mail to my address [email protected]
    Thanks,
    Vikranth.

  • Please Help - "page error" / a system error occurred

    I am very basic with Coldfusion Developed websites and pretty awesome on HTML and PHP. While working on a website I made an HTML change and added a line to a page. All works well on the test website/server but after uploading the changed page the page went offline/errored a day later.
    I have an error receipt and am hoping to resolve this issue with some insight from a good Coldfusion Developer or Programmer.
    PLEASE HELP, see error below.
    A system error occurred: http://www.mix.co.zm/mix_schools.cfm?
    Error - struct
    Detail    Note: If you wish to use an absolute template path (for example, template="/mypath/index.cfm") with CFINCLUDE, you must create a mapping for the path using the ColdFusion Administrator. Or, you can use per-application settings to specify mappings specific to this application by specifying a mappings struct to THIS.mappings in Application.cfc. <br> Using relative paths (for example, template="index.cfm" or template="../index.cfm") does not require the creation of any special mappings. It is therefore recommended that you use relative paths with CFINCLUDE whenever possible.
    Message    Could not find the included template components/mix_documents2.cfm.
    MissingFileName    components/mix_documents2.cfm
    StackTrace    coldfusion.tagext.lang.IncludeTag$NoSuchIncludeTemplateException: Could not find the included template components/mix_documents2.cfm. at coldfusion.tagext.lang.IncludeTag.setTemplate(IncludeTag.java:349) at cfmix_schools2ecfm527774291.runPage(D:\hshome\mixnet\mix.co.zm\mix_schools.cfm:15) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:231) at coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:416) at coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:360) at coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48) at coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40) at coldfusion.filter.PathFilter.invoke(PathFilter.java:94) at coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70) at coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:79) at coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8) at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46) at coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62) at coldfusion.CfmServlet.service(CfmServlet.java:200) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at com.intergral.fusionreactor.filter.FusionReactorFilter.i(FusionReactorFilter.java:566) at com.intergral.fusionreactor.filter.FusionReactorFilter.c(FusionReactorFilter.java:258) at com.intergral.fusionreactor.filter.FusionReactorFilter.doFilter(FusionReactorFilter.java: 164) at jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 ) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at jrun.servlet.FilterChain.service(FilterChain.java:101) at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106) at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286) at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543) at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203) at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320) at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428) at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266) at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    TagContext    Error - array
    1    Error - struct
    COLUMN    0
    ID    CFINCLUDE
    LINE    15
    RAW_TRACE    at cfmix_schools2ecfm527774291.runPage(D:\hshome\mixnet\mix.co.zm\mix_schools.cfm:15)
    TEMPLATE    D:\hshome\mixnet\mix.co.zm\mix_schools.cfm
    TYPE    CFML
    TagName    CFINCLUDE
    Type    MissingInclude

    With LR closed move the preferences file to the Trash as described at the below link. You will lose your Preferences settings, so you may want to record them if unsure what you have changed from the default settings.
    http://helpx.adobe.com/lightroom/kb/error-changing-modules-lightroom
    DO NOT RESTART LR!
    Next uninstall LR and then completely shutdown your system and turn the power OFF. Your catlog(s) will not be removed, so no worries.
    Restart your system and reinstall LR using the latest version download available (LR5.4, LR4.4).
    What version of LR and OS X are you using?

  • Hello apple.help me network iphone 4 use ios7.12 error network.acoount icloud apple please help support errors no service network.thank you

    hello apple.help me network iphone 4 use ios7.12 error network.acoount icloud.apple please help support errors no service network.thank you
    <Personal Information Edited by Host>

    tran ngoc nhan,
    Viết bằng tiếng mẹ đẻ của bạn?
    Tôi đoán Việt Nam?
    Chúng tôi có thể dịch!
    Nói cho tất cả vấn đề của bạn!
    Cung cấp cho nhiều chi tiết!
    Nếu không Việt Nam, dịch này ở đây!
    https://translate.google.com/
    Write in your native language?
    I guess Vietnamese?
    We can translate!
    Tell all your problem!
    Give much detail!
    If not Vietnamese, translate this here!
    https://translate.google.com/
    CCC

  • PLEASE HELP! Error -50

    I have tried EVERYTHING!
    "media browser"
    "export movie"
    "export using QuickTime"
    "share to iDVD"
    "share to media browser"
    But always:
    The project could not be prepared for publishing because an error occured. (-50)
    My film:
    lasts for 06:51 mins
    music is mp3
    I have deleted many videos to get space for my film, so that doesn't seem to be the problem. PLEASE HELP ME, I'm dying here!
    BTW: I have a Mac OS X version 10.06.08 and imovie´ 11     9.0.4 

    Hi
    Error -50
    Error -50   paramErr  Error in user parameter list
    Can there be any external hard disks - if so How is/are it/they formatted ? Must be Mac OS Extended (hfs) if used for Video.
    UNIX/DOS/FAT32/Mac OS Exchange - works for most but not for VIDEO.
    What this means in Your situation is above me.
    • free space on internal boot hard disk? How much ?
    Pictures
    • in what format ? .jpg, .bmp, .tif, else ?
    Audio
    • from where/what format ? iTunes, .avi, .mp3, .aiff, else ?
    I convert all audio to .aiff 48kHz or from Audio-CD 44.1kHz (still .aiff)
    The "com.apple.iMovie.plist" file
    Many users has not observed that there are TWO libraries.
    • Library - at root level
    • Library - in user/account folder - THIS IS THE ONE to look into
    from Luke Burns
    I fixed the problem.. but it was very, very strange. I had a very long section for credits and set the line spacing to 1.0.. for some reason this caused it. I removed it, and it worked fine. I put it back, and I couldn't preview or play the video.
    I don't know why that could cause that big of a problem, but it did..
    Yours Bengt W

  • Please Help! ERROR: Application Server failed. when Refreshing

    Please help on this below issue. Thanks.
    We have a requirement that using ASP.NET (C#), we need to open saved .rpt file (saved with data and the rpt file is assigned to the web page as query string) and let the users refresh themselves with latest data by clicking at refresh icon of the CrystalReportViewer. But it throws 'The Report Application Server failed' error message. What could cause this message. below is the piece of code we are using to configure the report.
    private void ConfigureCrystalReports()
    string reportPath = Server.MapPath("Reports
    SEMS0001_UBS.rpt");
    this.CrystalReportSource2.ReportDocument.Load(reportPath);
    CrystalReportViewer1.Visible = false;
    SetDBLogonForReport(this.CrystalReportSource2.ReportDocument);
    int i = 0;
    foreach (ParameterField field in this.CrystalReportSource2.ReportDocument.ParameterFields)
    field.HasCurrentValue = true;
    //this.CrystalReportSource2.ReportDocument.Refresh();
    CrystalReportViewer1.ParameterFieldInfo = this.CrystalReportSource2.ReportDocument.ParameterFields;
    CrystalReportViewer1.Visible = true;
    public void SetDBLogonForReport(ReportDocument reportDocument)
    Tables tables = reportDocument.Database.Tables;
    connectionInfo.ServerName = "server"; //ConfigurationManager.AppSettings["DBServer"];
    connectionInfo.UserID = "user"; //ConfigurationManager.AppSettings["DBUser"];
    connectionInfo.Password = "passwd"; //XsiteWinRpt.ConnUtil.GetOnlyPasswordOfConnString(); //ConfigurationManager.AppSettings["DBPassword"];
    //foreach (CrystalDecisions.Shared.IConnectionInfo connection in reportDocument.DataSourceConnections)
    // connection.SetConnection(ConfigurationManager.AppSettings["DBServer"], "", ConfigurationManager.AppSettings["DBUser"], ConfigurationManager.AppSettings["DBPassword"]);
    // connection.SetLogon(ConfigurationManager.AppSettings["DBUser"], ConfigurationManager.AppSettings["DBPassword"]);
    foreach (CrystalDecisions.CrystalReports.Engine.Table table in tables)
    TableLogOnInfo tableLogonInfo = table.LogOnInfo;
    tableLogonInfo.ConnectionInfo = connectionInfo;
    table.ApplyLogOnInfo(tableLogonInfo);
    //reportDocument.Database.Tables[0].ApplyLogOnInfo(tableLogonInfo);

    Attaching full code ... Our case is the RPT files are stored wih default parameters and saved data. We need to let users just refresh the rpt files with latest db data and overwrite with the same rpt files. But this code keep showing The application server failed mesg. when the refresh icon of viewer is clicked.
    Attaching the code as it is not properly attached in my previous reply ...
    =======================
    Begin - aspx.cs code
    =======================
    using System;
    using System.Data;
    using System.Data.OleDb;
    using System.Configuration;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Web.UI.HtmlControls;
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.CrystalReports;
    using CrystalDecisions.Shared;
    using CrystalDecisions.Web;
    public partial class _Default : System.Web.UI.Page
        private ConnectionInfo connectionInfo = new ConnectionInfo();
        protected void Page_Load(object sender, EventArgs e)
            if (!IsPostBack)
                //ConfigureCrystalReports();
        protected void  CrystalReportViewer1_Init(object sender, EventArgs e)
            ConfigureCrystalReports();
        private void ConfigureCrystalReports()
            string reportPath = Server.MapPath(@"Reports\Report1.rpt");
            this.CrystalReportSource1.ReportDocument.Load(reportPath);
            CrystalReportViewer1.Visible = false;
            SetDBLogonForReport(this.CrystalReportSource1.ReportDocument);
            foreach (ParameterField field in this.CrystalReportSource1.ReportDocument.ParameterFields)
                field.HasCurrentValue = true;
            //this.CrystalReportSource1.ReportDocument.Refresh();
            CrystalReportViewer1.ReuseParameterValuesOnRefresh = true;
            CrystalReportViewer1.Visible = true;
        public void ReportDocument_RefreshReport(object sender, EventArgs e)
            try
    SetDBLogonForReport(this.CrystalReportSource1.ReportDocument);
    CrystalReportViewer1.ReuseParameterValuesOnRefresh = true;
                this.CrystalReportSource1.ReportDocument.SetDatabaseLogon("user", "passwd", "server", "");
                foreach (ParameterField field in this.CrystalReportSource1.ReportDocument.ParameterFields)
                    field.HasCurrentValue = true;
                    field.AllowCustomValues = true;
                    //field.EnableNullValue = true;               
                this.CrystalReportSource1.ReportDocument.Refresh();
                       this.CrystalReportSource1.ReportDocument.SaveAs(@"C:\Inetpub\wwwroot\XsiteRpt\Reports\Report1.RPT", true);
            catch (Exception ex)
                Msg.Text = ex.Message;
        public void SetDBLogonForReport(ReportDocument reportDocument)
            Tables tables = reportDocument.Database.Tables;
            connectionInfo.ServerName = "server"; //ConfigurationManager.AppSettings["DBServer"];
            connectionInfo.UserID = "user"; //ConfigurationManager.AppSettings["DBUser"];
            connectionInfo.Password = "passwd"; //XsiteWinRpt.ConnUtil.GetOnlyPasswordOfConnString(); //ConfigurationManager.AppSettings["DBPassword"];
            foreach (CrystalDecisions.CrystalReports.Engine.Table table in reportDocument tables)
                TableLogOnInfo tableLogonInfo = table.LogOnInfo;
                tableLogonInfo.ConnectionInfo = connectionInfo;
                table.ApplyLogOnInfo(tableLogonInfo);
    =======================
    End - aspx.cs.code
    =======================
    =======================
    Begin - Assemblies
    =======================
    <assemblies>
                        <add assembly="CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Shared, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.ReportSource, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Framework, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.CrystalReports.Engine, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/><add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
          </assemblies>
    =======================
    End - Assemblies
    =======================
    =======================
    Begin - aspx
    =======================
    <%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Xsite.aspx.cs" Inherits="_Default" %>
    <%@ Register Assembly="CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
        Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
    <!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 runat="server">
        <title>Refresh Report</title>
        <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
            rel="stylesheet" type="text/css" />
        <link href="/aspnet_client/System_Web/2_0_50727/CrystalReportWebFormViewer3/css/default.css"
            rel="stylesheet" type="text/css" />
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
            <asp:Panel ID="PanelMsg" runat="server">
            <br />
            <asp:Label ID="Msg" runat="server" Font-Bold="False" Font-Names="Verdana" ForeColor="Navy"></asp:Label>
            <br />
            </asp:Panel>
            <asp:Panel ID="PanelViewer" runat="server">
            <CR:CrystalReportViewer ID="CrystalReportViewer1" OnReportRefresh="ReportDocument_RefreshReport" runat="server" AutoDataBind="True"
                EnableDatabaseLogonPrompt="False" EnableParameterPrompt="False" ReuseParameterValuesOnRefresh="True" HasRefreshButton="True" Height="820px" OnInit="CrystalReportViewer1_Init" ReportSourceID="CrystalReportSource1" ShowAllPageIds="True" Width="1215px" />
            <CR:CrystalReportSource ID="CrystalReportSource1" runat="server">           
            </CR:CrystalReportSource>
            </asp:Panel>
        </div>
        </form>
    </body>
    </html>
    =======================
    End - aspx
    =======================

  • Please help! Error -48 can't sync, tried everything!!

    Hi
    as above really, I have had my ipod 20gb clickwheel nearly 4 years and no problems, all of a sudden itunes has come up with this error message. I cannot take off or put songs onto the ipod, or move them around in playlists etc, but when not connected to my pc the ipod itself works fine.
    Please help, I have tried most things such as unistalling itunes, error-checking the disk in my computer etc.
    Has anyone got any other suggestions? I don't really want to restore the ipod as some of my music is not backed up, I manage it manually it that helps??

    Use this microsoft installer cleanup tool to get reid of itunes, then quicktime.
    http://support.microsoft.com/kb/290301
    Then try a fresh iTunes install.

  • PLEASE HELP! Error Message When Trying to Publish Site

    No matter how many of these errors I fix (edit the file and re-upload it onto the site), Muse comes up with a new error every time I try and publish. How can I resolve this issue, so I can publish my updated site. It should not be a problem with the files considering I have been able to publish the same files in the past...something is wrong with Muse itself.
    PLEASE HELP!!@

    Business Catalyst does not support special characters in file names (i.e. "&"). Through normal paths of placing or importing files, Muse will automatically alter the file names during publish to remove the special characters. The one exception path I'm aware of is an .oam file from Edge, where Muse doesn't have enough knowledge of what all is within the .oam package to safely alter the file names.
    When the error occurs, is it always for a file that contains a special character in the file name?
    How many files are being uploaded?
    If you click "Resume" does the Publish process:
    A) Proceeds and completes
    B) Puts up the same dialog for the same file
    C) Puts up a similar dialog, but for a different file
    D) Other?
    Thanks.

  • Please Help! Error message: Incorrect serial number, The serial number you entered is not valid. Click OK to retry serial number.???

    My old PC crashed and died, and I am unable to deactivate the licence of Photoshop Elements 7.
    I re-installed Photoshop Elements 7 via a trial download from Adobe website onto my new PC, Windows 8.1 single language.
    My serial number is not accepted.
    Error message: 'Incorrect serial number, The serial number you entered is not valid. Click OK to retry serial number'.
    Customer help care is not helpful and keep ending my chat before I get a solution.
    Can someone please help me and let me know how I can rectify this problem!!!

    Thank you Benjamin MItchley.  I reviewed the chat log and I can confirm that they are correct we do not provide installation support for Photoshop Elements 7 due to the age of the software title.  Photoshop Elements 7 also does not support activation so there is no risk that you were unable to deactivate the software on your previous computer.
    I am showing the serial number under your account was provided from an equipment manufacturer.  It is possible there may have been a customized installer for that version.  Have you contacted the computer manufacturer to obtain the installation files for the copy of Photoshop Elements 7 included with your computer?
    Since you did not migrate/transfer over any files it is unlikely there is a software issue preventing the installation.  You can try running the CC Cleaner Tool to ensure that no corrupt licensing files may be preventing the installation process.  You can find details of the use of the CC Cleaner Tool at Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6 - http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html.

  • Urgent ..Please Help .Geting error URI too long

    I have a jsp page and it has a text area. When I am inputing shorter
    text it works fine but when I am putting longer text I am
    having an error that "Get is not defined" and in the http server error
    log I am getting URI too long error.
    The text area when submitted...supposed to invoke a servlet which(the servlet) will do some error checking on the input text.
    How can i overcome this limitation of http server ?
    Please help ...
    Thanks.

    I tried with post method but still get the error.
    Here is my jsp code..
    <form name="inputnews" method="post" action="validation">
    <table>
    <tr>
    <td width="600"><img src="//www.ibm.com/i/c.gif" width="600" height="4" alt=""/>
    </td>
    </tr>
    and here is the servelet(name validation) code:
    public void doPost(
         javax.servlet.http.HttpServletRequest req,
    javax.servlet.http.HttpServletResponse resp)
         hrows javax.servlet.ServletException, java.io.IOException
              System.out.print("i am in post");
              HttpSession session = null;
              String flag3 = "";
              String check = "checkok";
              Info info = null;
              String category = req.getParameter("category");
              String title = req.getParameter("title");
              String content_area = req.getParameter ("content_area");
    *** the content_area is the text area where user put long input
    Anything i am missing here ?

  • Please help app error 523

    ive got a bb pearl 9105 and everytime i turn it on its come up with error messages then comes up with a white screen that says error 523. i cant plug it into my comp as the charge port is broken and cant get rid of the error messages to activate the bluetooth.
    anyone could any ideas?? ive tried reseting it, taking battery, sim,memory card out and nothings doing the trick...please help...

    Hi and Welcome to the Community!
    Here is a KB that discusses that error:
    KB24395 "Error 523", "App Error 523", or "JVM 523" appears on the BlackBerry smartphone
    Unfortunately, the actual remedy may well require connection to your computer...but with the port broken, that won't be possible. So you won't be able to fix this without seeking formal hardware-level support.
    If you remain in warranty, you should seek out support via that channel. If you have no warranty, then you would seek out a local (to you) shop with qualified BB hardware technicians who can give you a proper diagnosis and estimate.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Please help! error -61399, how to create custom vi for every input in project explorer

    Please help! I have been trying whole night but couldn't get through it.
    I am creating custom vi to simulate cRIO inputs on development computer. ( FPGA target>>execute vi on>> development computer>>custom vi) I then follow tutorial creating test benches:
    Tutorial: Creating Test Benches (FPGA Module)
    but when I run fpga vi I get error -61399, input item/node is not supported (input item/node is my input which I've added from project explorer).
    The closest I got in my research on why this error is occuring- I have not connected all inputs/outputs in project explorer to custom vi. I followed tutorial exactly step by step but still I couldn't get through it.
    Please help! Please help!
    In order to do further investigation, I converted custom vi to a state machine , please find attachment. Having highlight execution on, it clearly demonstrates that input in cRIO are not being selected as a result default cases execute.
    Please find attached modified custom vi with state machine, fpga vi, and original custom vi.
    Best regards 
    Ta
    Attachments:
    custom vi.vi ‏32 KB
    inverter.vi ‏16 KB
    original custom vi.vi ‏22 KB

    Solution:
    You will see this error if no Custom VI has been selected or the Custom VI has not been configured for every I/O item that you are using in your FPGA code???
    I think that's exactly where I'm stuck!
    How do I configure it for inputs??? My attachement show that I have done everything being asked in tutorial!
    Thanks!

  • Please Help unknown error

    I just finished redesigning my website www.thelostsheepcompany.com and I did a preview in browser from Muse to check out the functionality and layout and everything worked seamlessly. however once I published it, it now comes up with this error:  MuseJSAssert: Error calling selector function: Error no such interface supported on the contact us page (Contact Us) and the ministry registration page (Ministry Registration). I have no idea why this is happening. PLEASE HELP!!!

    Hello,
    It could be because of many reasons like conflict of any code with the form etc. If you have the back up file from the time when it was giving issue, we can check it for you and let you know the exact issue.
    Regards,
    Neha

  • Please help : small error

    I have this piece of code . I am getting error that
    use of loop variable 'i' is invalid.
    Please help
    CREATE OR REPLACE procedure A
    is
    v_commit_count number(10);
    v_wf_id number(8):= 20001;
    v_atlanta_operator number(8);
    cursor c1 is
    select * from customer_query_progress;
    type temp_c1 is table of customer_query_progress@slpmig1%rowtype
    index by binary_integer;
    t2 temp_c1;
    procedure do_bulk_insert is
    begin
    forall j in 1..t2.count
    insert into customer_query_progress@slpmig1 values t2(j);
    commit;
    t2.delete;
    k:=0;
    end do_bulk_insert;
    begin
    select value into v_commit_count from t2_system_parameter where name='batch_size';
    select value into v_atlanta_operator from t2_system_parameter where name='atlanta_operator';
    for i in c1 loop
    k:=K+1;
    t2(k).customer_query_id:=i.CUSTOMER_QUERY_ID;
    t2(k).last_modified:= i.LAST_MODIFIED;
    t2(k).PROGRESS_SEQNR := i.progress_seqnr;
    t2(k).OPEN_QUERY_IND_CODE:=i.OPEN_QUERY_IND_CODE;
    t2(k).WORK_FORCE_ID:=v_wf_id;
    t2(k).OPEN_DATE:=i.open_date;
    t2(k).RESPONSE_DUE_DATE:=i.RESPONSE_DUE_DATE;
    t2(k).PROGRESS_TEXT:=i.progress_text;
    t2(k).ACTION_DATE:=i.action_date;
    t2(k).ACTION_TEXT:=i.action_text;
    t2(k).ATLANTA_OPERATOR_ID:=v_atlanta_operator;
    t2(k).RESOLUTION_TEXT:=i.resolution_text;
    if mod(k,v_commit_count)=0 then
    do_bulk_insert;
    end if;
    end loop;
    do_bulk_insert;
    end;

    You have to declare and initialize k (to zero, I think):
    CREATE OR REPLACE procedure A
    is
    k pls_integer := 0;
    Regards,
    Gerd

Maybe you are looking for

  • Nokia-C7 Missing Feature - Can't change dialer vis...

    Hi, In the Nokia-C7 In the home screen, when selecting Call to open the Dialer, it is possible to search for a contacts immediately by pressing the numbers buttons to entering the characters that appears on them. The language that appears on the butt

  • What is this stupid "recovery mode"?

    My iPhone was working perfectly until the sync I did today. It said a new version was available. I followed the instructions to the letter. After it finished everything, I disconnected it just like I normally did after a sync or sync/update. Next tim

  • Exception in finding the Home object Please Help

    Hi All, I am learning EJB. I wrote a bean called Hello Bean(from examples) which just prints out Hello. I tried calling it from the client program and I get this exception javax.naming.NameNotFoundException: Unable to resolve HelloLocalHome. Resolved

  • Print PDF Pages quality not high enough

    I'm pretty happy with using Aperture to design relatively simple photo books. Its great to stay in one tool. But I'm not happy with how it exports JPGs from the book I designed. Don't think its a problem with my automator workflow file either.  I'm u

  • Trying to activate Skype Number

    I'm trying to activate Skype Number. I'm in Poland, but need the number to be British (for calls from UK). I'm selecting the number, being shown "this is your skype number" etc. then I'm going to payment page, but first website demands me to log in a