Click here to Skip to main content
15,891,905 members

Comments by JTRizos (Top 28 by date)

JTRizos 7-Nov-14 12:27pm View    
Siva, thank you for the prompt response.

Yes, it is there. I should have included that code too. The code gets the Case record for update whcih includes the CaseWorker column and when the CaseWorker is not in the CaseWorker DropDownList because the person is no longer here, I get the error. The application works well except for this quark.

Here it is:


<pre lang="c#">
//** Called from UpdateFIDM
public DataSet GetOneFIDM(string strFIDMID)
{
query = "SELECT FIDMID, " +
"FIDMStatus, " +
"CaseWorker, " +
"NCPName, " +
"CSENumber, " +
"CallReceivedDate = CASE CallReceivedDate WHEN '01/01/1900' THEN null ELSE CallReceivedDate END, " +
"MultiCountyCase, " +
"LevyDate = CASE LevyDate WHEN '01/01/1900' THEN null ELSE LevyDate END, " +
"EOTWOTW, " +
"AssetType, " +
"FinancialInstitution, " +
"BankNumber, " +
"AmountInAccount, " +
"LevyAmount, " +
"ArrearsBalance, " +
"SourceofFunds, " +
"NCPClaim, " +
"LCSAResolution, " +
"ResolutionType, " +
"Collection, " +
"COESent, " +
"COEReturnDate = CASE COEReturnDate WHEN '01/01/1900' THEN null ELSE COEReturnDate END, " +
"CourtDate = CASE CourtDate WHEN '01/01/1900' THEN null ELSE CourtDate END, " +
"CourtType, " +
"ResolutionDate = CASE ResolutionDate WHEN '01/01/1900' THEN null ELSE ResolutionDate END, " +
"Suppression, " +
"SuppressionLength, " +
"TimeSpent, " +
"Notes, " +
"County, " +
"FIDM.Added, " +
"FIDM.AddedBy, " +
"FIDM.Updated, " +
"FIDM.UpdatedBy " +
"from FIDM " +
"where FIDMID = '" + strFIDMID + "' ";
DataSet ds = obj68.getData(query, connection);
return ds;
}
JTRizos 9-Oct-14 14:12pm View    
Yes, I looked at the versions, VS2013 and VS2008. The C# apps were all developed using VS2008. The VB app was developed with VS2010 but I prepared it for our use with VS2013. I cannot find where I would have set the install folder in either version.

Thanx for your comment.
JTRizos 13-Feb-14 15:38pm View    
SQL and Reporting Services are installed on the same server. I was trying to deploy from Visual Studio on my workstation. However, I think I solved the problem. I added EContacts to Folder Properties on the Report Server with the proper roles and it now works. I missed this one and rereading what you sent made me go back to revisit all my settings. I think what I will do now is back out some of the permissions and SQL Server security settings on EContacts so I understand this better.

Thanx you for your advise and followup. After reading all the stuff that can be Googled, sometimes it just takes someone to say try this to open the gate. I very much appreciate it.
JTRizos 13-Feb-14 14:42pm View    
Thanx mgoad99 for the response. I checked and EContact has all the Roles assigned including Publisher. I read through the article you sent and I have tried all the suggestions but still get teh permissions error when trying to deploy a report or project.
JTRizos 5-Apr-13 13:20pm View    
We were able to correct the Unable to load client print control by removing the problem entry in the registry on our XP machines. We have had no problem since 2009. Now we are migrating to Windows 7 and now have this problem again. None of the suggestions here seem to fix the problem. We use SQL Server 2005. Any ideas on what to do to fix this problem on workstations using Windows 7 will be much appreciated.