Hi,
I am getting this compilation error suddenly, any clues?? The list of errors
is stated below..
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs
Internal Compiler Error: stage 'COMPILE'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs
Internal Compiler Error: stage 'COMPILE'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(1):
Internal Compiler Error: stage 'COMPILE' symbol ''
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(1):
Internal Compiler Error: stage 'COMPILE' symbol ''
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(8):
Internal Compiler Error: stage 'COMPILE' symbol 'MyCompany'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(8):
Internal Compiler Error: stage 'COMPILE' symbol 'MyCompany'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(8):
Internal Compiler Error: stage 'COMPILE' symbol 'MyCompany.Tech'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(8):
Internal Compiler Error: stage 'COMPILE' symbol 'MyCompany.Tech'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(8):
Internal Compiler Error: stage 'COMPILE' symbol 'MyCompany.Tech.CNet'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(8):
Internal Compiler Error: stage 'COMPILE' symbol 'MyCompany.Tech.CNet'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(8):
Internal Compiler Error: stage 'COMPILE' symbol
'MyCompany.Tech.CNet.Component'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(8):
Internal Compiler Error: stage 'COMPILE' symbol
'MyCompany.Tech.CNet.Component'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(13):
Internal Compiler Error: stage 'COMPILE' symbol
'MyCompany.Tech.CNet.Component.PrintRequest'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(13):
Internal Compiler Error: stage 'COMPILE' symbol
'MyCompany.Tech.CNet.Component.PrintRequest'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(86):
Internal Compiler Error: stage 'BIND' symbol
'MyCompany.Tech.CNet.Component.PrintRequest.SaveSinglePrintedRequest(System.IAsyncResult)'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(86):
Internal Compiler Error: stage 'BIND' symbol
'MyCompany.Tech.CNet.Component.PrintRequest.SaveSinglePrintedRequest(System.IAsyncResult)'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(86):
Internal Compiler Error: stage 'COMPILE' symbol
'MyCompany.Tech.CNet.Component.PrintRequest.SaveSinglePrintedRequest(System.IAsyncResult)'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(86):
Internal Compiler Error: stage 'COMPILE' symbol
'MyCompany.Tech.CNet.Component.PrintRequest.SaveSinglePrintedRequest(System.IAsyncResult)'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(86):
Internal Compiler Error: stage 'COMPILE' symbol
'MyCompany.Tech.CNet.Component.PrintRequest.SaveSinglePrintedRequest(System.IAsyncResult)'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(86):
Internal Compiler Error: stage 'COMPILE' symbol
'MyCompany.Tech.CNet.Component.PrintRequest.SaveSinglePrintedRequest(System.IAsyncResult)'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(86):
Internal Compiler Error: stage 'COMPILE' symbol
'MyCompany.Tech.CNet.Component.PrintRequest.SaveSinglePrintedRequest(System.IAsyncResult)'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(86):
Internal Compiler Error: stage 'COMPILE' symbol
'MyCompany.Tech.CNet.Component.PrintRequest.SaveSinglePrintedRequest(System.IAsyncResult)'
C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(114):
Internal Compiler Error: stage 'BIND'
NewBie - 25 Jul 2005 01:20 GMT
I have traced the problem to be in this function below, if i am commenting
this it works ok..
Appreiate a quick response from you guys....
public void SaveSinglePrintedRequest(IAsyncResult ar)
{
AsyncResult aResult = (AsyncResult)ar;
Printer.pdfPrintingAsyncDelegate temp = (pdfPrintingAsyncDelegate
)aResult.AsyncDelegate;
bool result = temp.EndInvoke(ar);
string status="";
if (result)
status="STP";
else
status="ESP";
CNetDA objCNetDA = new CNetDA();
CNetCorrespondence myCNCntr= new CNetCorrespondence();
NetVantageRequest myNVCntr= new NetVantageRequest();
CNetCorrespondence.CNET_CUSTOMERINFORMATIONRow myRow=
(CNetCorrespondence.CNET_CUSTOMERINFORMATIONRow)myCNCntr.CNET_CUSTOMERINFORMATION.NewRow() ;
myRow["CUSTOMERINFORMATIONID"]=_cNetId;
myRow["NV_COMM_ID"]=_nvId;
myRow["STATUS"]=status;
myCNCntr.CNET_CUSTOMERINFORMATION.AddCNET_CUSTOMERINFORMATIONRow((CNetCorrespondence.CNET_CUSTOMERINFORMATIONRow)myRow);
CNetCorrespondence.CNET_TRIGGERFILERow myTFRow =
(CNetCorrespondence.CNET_TRIGGERFILERow )myCNCntr.CNET_TRIGGERFILE.NewRow();
myTFRow["UNIQUE_ID"]=_cNetId;
myTFRow["STATUS"]=status;
myCNCntr.CNET_TRIGGERFILE.AddCNET_TRIGGERFILERow((CNetCorrespondence.CNET_TRIGGERFILERow)myTFRow);
NetVantageRequest.batch_communicationRow myBCRow =
(NetVantageRequest.batch_communicationRow)myNVCntr.batch_communicationRow.NewRow();
myBCRow["COMM_ID"]=_nvId;
myBCRow["STATUS"]=status;
objCNetDA.UpdateStatusALLCorres(myCNCntr,myNVCntr);
}
#endregion Save
Thanks,
Hitesh
> Hi,
>
[quoted text clipped - 58 lines]
> C:\Apps\Soln\CNET\CNET\MyCompany.Tech.CNet.Component\PrintRequest.cs(114):
> Internal Compiler Error: stage 'BIND'