September 25th, 2009 06:45 AM
I deployed it the same way with the publish but for the reports to work you must have run a Crystal run time on the machine where you installed your application.
Which run time did you install?
...
September 24th, 2009 02:55 PM
Hello,
I created a VS 2008 C# MVC application which uses CrystalReportViewer to display a report. All the .dll files I used are either version 12.0.2000 or 12.0.1100.
The application works well...
February 27th, 2009 08:32 AM
I found an answer even though it's not a one-line solution it's a good one that works.
EnvironmentalMonitoringModelUnitOfWork uow = DataService.Context.CreateUnitOfWork();
//select all...
February 26th, 2009 08:46 PM
Oh... :) thanks for the correction... but unfortunately there is something else wrong with the query I have.
Let me make it a bit more general
What is the LINQ expression to remove certain...
February 26th, 2009 03:53 PM
Hello,
I need to write a LINQ expression to remove all the entries from my VqEmSampleSchedules table which have their VqEmTestByLocationId == to the id I have passed to that function.
I have all...
February 20th, 2009 11:51 AM
I've tried putting <option value="<%=location.id%>"> but it does not like it
February 20th, 2009 11:44 AM
Hello,
I need to be able to specify a value in my <option> tag inside of a <select> tag but the value is actually the id of a field.
Here is the code:
<select id="cmbLocation">
...
February 17th, 2009 08:37 AM
Hello,
I am trying out to develop a prototype of a product using the new MVC framework in C#.
So I created the project and all the basic Views and Controllers are created by the environment....
February 6th, 2009 12:08 PM
I just wanna tell u that u saved my day....thank u like 1000 times.
I took your idea and implemented it a bit differently.
I created a static class in the core with all the properties that I...
February 6th, 2009 08:31 AM
Hello All I am developing an application in C# and I have my project split the following way :
1. Windows project which contains all of the UI stuff
2. Core project which contains the core...
February 5th, 2009 12:14 PM
Never Mind - found a great article on it.
For those of you who may stumble upon the same issue visit the following link:
http://www.codeproject.com/KB/cs/winservicemanage.aspx
Susan
February 5th, 2009 11:50 AM
Hello ,
I need to check if a Windows Service is running and if so then Stop it
How can I do that from Code in C#.
Thanks
Susan
February 4th, 2009 03:41 PM
Thanks to all of you who replied.
I just wanted to say that I resolved the issue.
After looking at the code I saw that the threads were running well indeed ( based on the post that yraen made I...
February 4th, 2009 02:57 PM
The _controller.StartProcessing basically calls another object called Watcher.StartProcessing,etc. which monitors a folder for dropped files in it.
February 4th, 2009 02:26 PM
Hello All gurus,
I have a multithreading question.
I am writing a service which basically is going to be a listener which monitors a folder and when files are dropped in it...etc,etc..... in...
December 3rd, 2008 10:16 AM
Thanks so much for the fast reply. It has been very helpful.
I implemented the suggestion and my solution looks much cleaner.
Regards,
Susan
December 3rd, 2008 08:58 AM
Hello Everyone,
I have a question regarding windows Identity.
I am using the following code to get the user name of the user which is currently logged in the system
string...
August 5th, 2008 07:43 AM
Hello Everyone,
I have a C# application and I need to connect to an oracle database sitting on a different computer.
The computer name is test and the database name is UDA.
I have the following...