User Craig - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T10:24:33Zhttp://stackoverflow.com/feeds/user/27294http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/502060/webformpostbackoptions-documentation3WebForm_PostBackOptions documentationCraig2009-02-02T02:48:37Z2009-12-21T04:32:13Z
<p>Is there any documentation on the parameters to WebForm_PostBackOptions? I can't find anything by Googling.</p>
http://stackoverflow.com/questions/456807/asp-mvc-cookies-not-persisting0ASP MVC Cookies not persistingCraig2009-01-19T07:38:16Z2009-12-18T22:50:08Z
<p>I have a ASP MVC App with some seemingly simple code to save and retrieve cookies but for some reason they won't persist. The code in the controller is :</p>
<pre><code>if (System.Web.HttpContext.Current.Response.Cookies["CountryPreference"] == null)
{
HttpCookie cookie = new HttpCookie("CountryPreference");
cookie.Value = country;
cookie.Expires = DateTime.Now.AddYears(1);
System.Web.HttpContext.Current.Response.Cookies.Add(cookie);
}
</code></pre>
<p>And to load it again :</p>
<pre><code>if (System.Web.HttpContext.Current.Request.Cookies["CountryPreference"] != null)
{
System.Web.HttpContext.Current.Request.Cookies["CountryPreference"].Expires = DateTime.Now.AddYears(1);
data.Country = System.Web.HttpContext.Current.Request.Cookies["CountryPreference"].Value;
}
</code></pre>
<p>For some reason the cookie is always null?</p>
http://stackoverflow.com/questions/1877824/crystal-report-verifydatabase-not-working0Crystal Report VerifyDatabase not workingCraig2009-12-10T00:02:10Z2009-12-11T13:01:35Z
<p>I have a Crystal Report that was designed against a dev database. When I load it into the live system I need it to run a different but equivalent database. Normally I just run reports through some code in C# that sets the connection info, parameters and calls VerifyDatabase on the report and subreports and it all works well. </p>
<p>In one particular report this doesn't work though and doesn't seem to verify anything and the report crashes with an error 'The field name is not known' in one of the sub reports. With this report if I manually verify it in the Crystal Reports application against the live database then it all works fine. </p>
<p>So the question is, is there anything different that Verify Database function in the Crystal application does that I should do in code other than set connection info, parameters and call VerifyDatabase method?</p>
<p>Edit: Some more info on what I tried</p>
<ol>
<li>Get a backup of the live database and put it on our dev environment.</li>
<li>Manually verify the report against this database (which is exactly the same structure as live)</li>
<li>Load the report into the live system and run it.</li>
</ol>
<p>Error still occurs.</p>
http://stackoverflow.com/questions/924211/nhibernate-linq0nhibernate LinqCraig2009-05-29T02:58:24Z2009-12-11T00:45:16Z
<p>I am using the old linq provider for nHibernate and waiting patiently
for the new one to come out. I am sure it will save me much pain.
Anyway, I have a problem with the code below as it generates a "Object
reference not set to an instance of an object". The line
"c.Disciplines.Any(d => disciplines.Contains(d))" is the one causing
the problem. Is there any know issues with a statement like this using
nHibernate Linq?</p>
<pre><code>var agencies = m_AgencyRepository.Linq;
Discipline[] disciplines = user.Disciplines.ToArray<Discipline>();
return (from c in agencies
where (String.IsNullOrEmpty(criteria.AgencyName) || c.AgencyName.Contains(criteria.AgencyName))
&& (criteria.AgencyType == null || c.AgencyType.AgencyTypeId == criteria.AgencyType)
&& (String.IsNullOrEmpty(criteria.AgencyLevel) || c.AgencyLevel.AgencyLevelId == criteria.AgencyLevel)
&& (c.Disciplines.Any(d => disciplines.Contains(d)))
select c)
</code></pre>
<p>Stack Trace:</p>
<pre><code> at NHibernate.Loader.Criteria.CriteriaQueryTranslator.GetEntityName(ICriteria subcriteria, String propertyName)
at NHibernate.Loader.Criteria.CriteriaQueryTranslator.GetType(ICriteria subcriteria, String propertyName)
at NHibernate.Loader.Criteria.CriteriaQueryTranslator.GetTypeUsingProjection(ICriteria subcriteria, String propertyName)
at NHibernate.Criterion.InExpression.GetTypedValues(ICriteria criteria, ICriteriaQuery criteriaQuery)
at NHibernate.Criterion.Junction.GetTypedValues(ICriteria criteria, ICriteriaQuery criteriaQuery)
at NHibernate.Loader.Criteria.CriteriaQueryTranslator.GetQueryParameters()
at NHibernate.Criterion.SubqueryExpression.InitializeInnerQueryAndParameters(ICriteriaQuery criteriaQuery)
at NHibernate.Criterion.SubqueryExpression.ToSqlString(ICriteria criteria, ICriteriaQuery criteriaQuery, IDictionary`2 enabledFilters)
at NHibernate.Criterion.Junction.ToSqlString(ICriteria criteria, ICriteriaQuery criteriaQuery, IDictionary`2 enabledFilters)
at NHibernate.Loader.Criteria.CriteriaQueryTranslator.GetWhereCondition(IDictionary`2 enabledFilters)
at NHibernate.Loader.Criteria.CriteriaJoinWalker..ctor(IOuterJoinLoadable persister, CriteriaQueryTranslator translator, ISessionFactoryImplementor factory, CriteriaImpl criteria, String rootEntityName, IDictionary`2 enabledFilters)
at NHibernate.Loader.Criteria.CriteriaLoader..ctor(IOuterJoinLoadable persister, ISessionFactoryImplementor factory, CriteriaImpl rootCriteria, String rootEntityName, IDictionary`2 enabledFilters)
at NHibernate.Impl.SessionImpl.List(CriteriaImpl criteria, IList results)
at NHibernate.Impl.CriteriaImpl.List(IList results)
at NHibernate.Impl.CriteriaImpl.List()
at NHibernate.Impl.CriteriaImpl.UniqueResult()
at NHibernate.Linq.Visitors.ImmediateResultsVisitor`1.HandleAggregateCall(MethodCallExpression call)
at NHibernate.Linq.Visitors.ImmediateResultsVisitor`1.VisitMethodCall(MethodCallExpression call)
at NHibernate.Linq.Visitors.ExpressionVisitor.Visit(Expression exp)
at NHibernate.Linq.Visitors.NHibernateExpressionVisitor.Visit(Expression exp)
at NHibernate.Linq.Visitors.ImmediateResultsVisitor`1.GetResults(MethodCallExpression expr)
at NHibernate.Linq.Visitors.RootVisitor.HandleImmediateResultsCall(MethodCallExpression call)
at NHibernate.Linq.Visitors.RootVisitor.VisitMethodCall(MethodCallExpression expr)
at NHibernate.Linq.Visitors.ExpressionVisitor.Visit(Expression exp)
at NHibernate.Linq.Visitors.NHibernateExpressionVisitor.Visit(Expression exp)
at NHibernate.Linq.Visitors.NHibernateQueryTranslator.Translate(Expression expression, QueryOptions queryOptions)
at NHibernate.Linq.NHibernateQueryProvider.Execute(Expression expression)
at NHibernate.Linq.QueryProvider.System.Linq.IQueryProvider.Execute[T](Expression expression)
at System.Linq.Queryable.Count[TSource](IQueryable`1 source)
at PPSS.Services.AgencyRepository.List(AgencyListCriteria criteria, Int32& total) in C:\Development\PPSS\PPSS.Services\Services\Agency\AgencyRepository.cs:line 57
at PPSS.Models.AgencyViewData..ctor(AgencyListCriteria criteria) in C:\Development\PPSS\PPSS\Domains\Maintenance\ViewModels\AgencyViewData.cs:line 26
at PPSS.Controllers.AgencyController.Index(AgencyListCriteria criteria) in C:\Development\PPSS\PPSS\Domains\Maintenance\Controllers\AgencyController.cs:line 34
at lambda_method(ExecutionScope , ControllerBase , Object[] )
at System.Web.Mvc.ActionMethodDispatcher.Execute(ControllerBase controller, Object[] parameters)
at System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClassa.<InvokeActionMethodWithFilters>b__7()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodFilter(IActionFilter filter, ActionExecutingContext preContext, Func`1 continuation)
</code></pre>
http://stackoverflow.com/questions/792289/serialize-detachedcriteria-with-nhibernate1Serialize DetachedCriteria with nHibernateCraig2009-04-27T05:00:30Z2009-12-09T16:18:07Z
<p>I am trying to serialize a DetachedCriteria so I can save it in a database and reuse the same criteria at a later date. When I run the code below I get "NHibernate.Criterion.DetachedCriteria cannot be serialized because it does not have a parameterless constructor". </p>
<pre><code>DetachedCriteria criteria1 = DetachedCriteria.For<SecurityObjectDTO>("so")
.Add(Expression.Eq("ObjectCode", "1234"));
XmlSerializer s = new XmlSerializer(typeof(DetachedCriteria));
TextWriter writer = new StringWriter();
s.Serialize(writer, criteria1);
writer.Close();
</code></pre>
<p>Is there any good way to serialize a DetachedCriteria?</p>
http://stackoverflow.com/questions/1309198/nhibernate-linq-projection0nHibernate Linq ProjectionCraig2009-08-20T22:35:28Z2009-12-02T21:00:02Z
<p>I am using the version 1.0 release of Linq for nHibernate. When I run
the following linq statements I receive the error</p>
<p><strong>not a single-length projection: Surname</strong></p>
<p>I can find very few references to this on the web and looking into the
source it says it should never occur! ClientID is a Int type and
Surname is a string. When I comment out all the string fields in the
projection and just leave ClientID it runs ok, but as soon as I add
surname back it errors.</p>
<pre><code>var context = m_ClientRepository.Linq;
var result = (from client in context
from address in client.Addresses
from contact in client.Contacts
where client.Surname.StartsWith(surname)
&& client.GivenName.StartsWith(givenName)
&& contact.Value.StartsWith(phoneNumber)
group client by new { client.ClientID, client.Surname, client.GivenName } into clientGroup
select new ClientSearchDTO()
{
ClientID = clientGroup.Key.ClientID,
Surname = clientGroup.Key.Surname,
GivenName = clientGroup.Key.GivenName,
Address = clientGroup.Max(x => x.Addresses.FirstOrDefault().Address),
PhoneNumber = clientGroup.Max(x => x.Contacts.FirstOrDefault().Value)
})
.Skip(Paging.FirstRecord(pageNumber))
.Take(5);
</code></pre>
http://stackoverflow.com/questions/1829587/crystal-report-viewer-accuracy0Crystal Report Viewer AccuracyCraig2009-12-01T23:06:43Z2009-12-02T01:35:52Z
<p>I have several Crystal Reports which I am displaying in the Viewer in an ASP.NET web page. These reports are pretty advanced with tables and charts on them. One thing we have noticed is that the lines tend to take on a mind of their own, often out by a few pixels in the preview, or running off the bottom of the page. This is not a problem when running the reports in the Crystal designer application, only the web preview. Has anyone else seen or resolved this in the past?</p>
http://stackoverflow.com/questions/1186048/crystal-reports-the-report-you-requested-requires-further-information1Crystal Reports - "The report you requested requires further information"Craig2009-07-27T01:15:07Z2009-12-01T05:41:23Z
<p>I have some Crystal Reports that were created using Crystal (external to Visual Studio) and are now loaded in the VS project. Before the report is previewed I set up the report database information like this in the report and all subreports.</p>
<pre><code> var connectionInfo = new ConnectionInfo();
connectionInfo.ServerName = "192.168.x.xxx";
connectionInfo.DatabaseName = "xxxx";
connectionInfo.Password = "xxxx";
connectionInfo.UserID = "xxxx";
connectionInfo.Type = ConnectionInfoType.SQL;
connectionInfo.IntegratedSecurity = false;
TableLogOnInfo logon = table.LogOnInfo;
table.LogOnInfo.ConnectionInfo = connectionInfo;
table.ApplyLogOnInfo(logon);
</code></pre>
<p>The report displays correctly when it is initially previewed but when I go to the next page in the report preview I get the message, "The report you requested requires further information" and are prompted for the database login information again. Once I have entered it here I am no longer prompted. It appears that the initial ConnectionInfo I set up is not sticking past the first page.</p>
<p>I am using Crystal XI and Visual Studio 2008.</p>
http://stackoverflow.com/questions/1822816/azure-ctp-signup0Azure CTP signupCraig2009-11-30T22:20:44Z2009-11-30T22:23:45Z
<p>I am trying to signup to the Azure CTP but am finding the whole process real non user friendly. On this <a href="http://www.microsoft.com/windowsazure/getstarted/" rel="nofollow">http://www.microsoft.com/windowsazure/getstarted/</a> web page it gives me a link to go to get a token, but when I click it doesn't appear to do anything. It takes me to another page but doesn't tell me if a token has been sent or I have to do something else. </p>
<p>On the dashboard of Microsoft Connect it tells me my status in Azure is 'Participating'. What does this mean? I am not participating because I don't have a token. The whole process is very frustrating!</p>
<p>Is it possible to contact an actual person?</p>
http://stackoverflow.com/questions/248642/gridview-item-text-wrapping1GridView item text wrappingCraig2008-10-29T22:20:37Z2009-11-30T03:00:03Z
<p>I have a GridView control that I am dynamically creating at runtime. I am creating all the columns like this.</p>
<pre><code>foreach (GridColumnConfig column in columns)
{
BoundField boundField = new BoundField();
boundField.HeaderText = column.Title;
boundField.DataField = column.FieldName;
boundField.SortExpression = column.FieldName;
boundField.ItemStyle.Wrap = false;
boundField.ItemStyle.Width = new Unit(column.Width, UnitType.Pixel);
boundField.ItemStyle.HorizontalAlign = TextToAlign(column.Align);
m_GenericListView.Grid.Columns.Add(boundField);
}
</code></pre>
<p>However even though I have specified the item not to wrap text it still does so in IE6. In FireFox it just creates a very wide column which is probably not what either, even though the width has been specified. </p>
<p>Is there any way to really control these widths and wrapping columns in a GridView ?</p>
http://stackoverflow.com/questions/1325188/nhibernate-icriteria-join-condition1nHibernate ICriteria Join ConditionCraig2009-08-24T22:45:34Z2009-11-25T04:00:03Z
<p>I am trying to use ICriteria to create a query that has a join
condition. The SQL I am trying to generate should look like this</p>
<pre><code>SELECT c.ClientID
FROM Client c
LEFT OUTER JOIN ClientContact t on c.ClientID = t.ClientID AND
t.ContactType = 'Email'
</code></pre>
<p>If I use a criteria like</p>
<pre><code>m_ClientRepository.QueryAlias("client")
.CreateCriteria("client.Contacts", "c", JoinType.LeftOuterJoin)
.Add(Restrictions.Eq("c.ContactType", ContactType.Email));
</code></pre>
<p>It will generate the sql below which I don't want.</p>
<pre><code>SELECT c.ClientID
FROM Client c
LEFT OUTER JOIN ClientContact t on c.ClientID = t.ClientID
WHERE t.ContactType = 'Email'
</code></pre>
<p>Is there anyway to do this with ICriteria or HQL if ICriteria is not possible ?</p>
<p>Edit: I have discovered nHibernate 2.1 (which I am using) does now <a href="http://nhforge.org/blogs/nhibernate/archive/2009/05/17/nhibernate-2-1-0-hql-with-clause.aspx" rel="nofollow">allow this</a>. Not sure about ICriteria though, this is my preference.</p>
http://stackoverflow.com/questions/1761179/crystal-report-view-page-numbers0Crystal Report View page numbersCraig2009-11-19T05:57:01Z2009-11-19T17:26:01Z
<p>I am using the Crystal Report Viewer in an ASP.NET application. On the viewer it displays the page numbers along the lines of '1 / 1+' where the 1+ is dynamically calculated. I would like it to display the correct total number of pages from the start rather than 1+. Is there a way to do this?</p>
http://stackoverflow.com/questions/1036116/nhibernate-criteria-api-projections0nHibernate Criteria API ProjectionsCraig2009-06-24T02:04:54Z2009-11-17T09:56:44Z
<p>I have an entity that is like this</p>
<pre><code>public class Customer
{
public Customer() { Addresses = new List<Address>(); }
public int CustomerId { get; set; }
public string Name { get; set; }
public IList<Address> Addresses { get; set; }
}
</code></pre>
<p>And I am trying to query it using the Criteria API like this.</p>
<pre><code>ICriteria query = m_CustomerRepository.Query()
.CreateAlias("Address", "a", NHibernate.SqlCommand.JoinType.LeftOuterJoin);
var result = query
.SetProjection(Projections.Distinct(
Projections.ProjectionList()
.Add(Projections.Alias(Projections.Property("CustomerId"), "CustomerId"))
.Add(Projections.Alias(Projections.Property("Name"), "Name"))
.Add(Projections.Alias(Projections.Property("Addresses"), "Addresses"))
))
.SetResultTransformer(new AliasToBeanResultTransformer(typeof(Customer)))
.List<Customer>() as List<Customer>;
</code></pre>
<p>When I run this query the Addresses property of the Customer object is null. Is there anyway to add a projection for this List property?</p>
http://stackoverflow.com/questions/652793/nhibernate-setfirstresult-setmaxresults-problems0nHibernate SetFirstResult & SetMaxResults ProblemsCraig2009-03-17T02:00:46Z2009-11-12T20:07:39Z
<p>I am using nHibernate and trying to implement some paging. If I run this code</p>
<pre><code>IList list = session.CreateQuery("FROM Author").List();
</code></pre>
<p>it returns 8 records. If I run this code though</p>
<pre><code>IList list = session.CreateQuery("FROM Author")
.SetFirstResult(1).SetMaxResults(5).List();
</code></pre>
<p>it returns 0 records. When I look at the SQL generated I can't see that there is any paging logic. </p>
<p>What is the most likely errors with this?</p>
http://stackoverflow.com/questions/1711555/asp-net-mvc-new-project-how-to-begin/1711585#17115853Answer by Craig for Asp.Net MVC - New Project How to Begin?Craig2009-11-10T22:08:17Z2009-11-10T22:08:17Z<p>I would probably check out the NerdDinner sample app and eBook. It provides some pretty good direction on the best way to do things. <a href="http://weblogs.asp.net/scottgu/archive/2009/03/10/free-asp-net-mvc-ebook-tutorial.aspx" rel="nofollow">Link Here</a></p>
http://stackoverflow.com/questions/1698752/spark-view-engine-an-assembly-with-the-same-simple-name-error0Spark View Engine "An assembly with the same simple name" errorCraig2009-11-09T02:01:19Z2009-11-10T20:20:43Z
<p>I am trying out the Spark view engine with ASP MVC but get the error below when displaying a view. The view references model objects that are in a different assembly to the main web application (MyApp.Model.dll). I am stuck on the cause or resolution to this.</p>
<p>Dynamic view compilation failed.
0,0): error CS1704: An assembly with the same simple name
'MyApp.Model, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=null has already been imported. Try removing one of the
references or sign them to enable side-by-side. </p>
http://stackoverflow.com/questions/350847/google-base-query-problems0Google Base Query ProblemsCraig2008-12-08T20:50:53Z2009-11-09T07:00:16Z
<p>I am querying Google Base using the .NET library pretty much as described on this page.</p>
<p><a href="http://code.google.com/apis/base/docs/2.0/developers_guide_dotnet.html" rel="nofollow">http://code.google.com/apis/base/docs/2.0/developers_guide_dotnet.html</a></p>
<p>When I run the query a GBaseFeed is returned and it will usually have the TotalRecords property set to something like 35, but in the Entries collection it will often have no items or very few items. Other times the query returns all 35 items as expected in the Entries. Has anyone seen this behaviour or have any idea what could cause it?</p>
http://stackoverflow.com/questions/1684920/does-sql-azure-support-the-filestream-datatype0Does SQL Azure support the FILESTREAM datatypeCraig2009-11-06T01:54:26Z2009-11-06T03:46:58Z
<p>I am looking at using SQL Azure and wondering if it supports the FILESTREAM data type introduced int SQL Server 2008 or should I look at another solution.</p>
http://stackoverflow.com/questions/1641842/profile-c-class-creation2Profile C# class creationCraig2009-10-29T05:59:47Z2009-10-29T08:17:24Z
<p>I have a class like this with some code to profile how long the constructor takes to execute. I would ideally like to have this code injected automatically, preferably in the BaseClass. Is this possible somehow so I don't need to add it to every class?</p>
<pre><code>public MyClass : BaseClass
{
public MyClass() : base()
{
using (new ProfileRegion("MyClass"))
{
// Do Stuff
}
}
}
</code></pre>
http://stackoverflow.com/questions/905081/nhibernate-validator-custom-imessageinterpolator1nHibernate Validator custom IMessageInterpolatorCraig2009-05-25T01:55:33Z2009-10-12T04:17:29Z
<p>Has anyone managed to get a custom IMessageInterpolator working to
enable customisation of error messages. I have tried following the
instructions on this web page but to no avail.
<a href="http://codelog.climens.net/2009/03/04/nhibernate-validator-custom-messages/" rel="nofollow">http://codelog.climens.net/2009/03/04/nhibernate-validator-custom-messages/</a></p>
<p>Looking into the code the DefaultMessageInterpolator seems pretty
baked into the framework so is there anything I am missing.</p>
<p>I have included my unit tests to show how I am implementing it.</p>
<pre><code>namespace TestValidator
{
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestValidator()
{
var customer = new Customer();
ClassValidator classValidator = new ClassValidator(customer.GetType());
InvalidValue[] validationMessages = classValidator.GetInvalidValues(customer);
Assert.IsTrue(validationMessages.Length == 1);
Assert.IsTrue(validationMessages[0].Message == "may not be null or empty");
}
[TestMethod]
public void TestCustomInterpolator()
{
ValidatorEngine ve = new ValidatorEngine();
NHVConfiguration nhvc = new NHVConfiguration();
nhvc.Properties[Environment.MessageInterpolatorClass] = typeof(CustomMessageInterpolator).AssemblyQualifiedName;
ve.Configure(nhvc);
var customer = new Customer();
ClassValidator classValidator = new ClassValidator(customer.GetType());
InvalidValue[] validationMessages = classValidator.GetInvalidValues(customer);
Assert.IsTrue(validationMessages.Length == 1);
// THIS TEST FAILS!!
Assert.IsTrue(validationMessages[0].Message == "CustomMessageInterpolator");
}
}
public class Customer
{
public virtual int CustomerId { get; set; }
[NotNullNotEmpty]
public string CustomerName { get; set; }
}
public class CustomMessageInterpolator : IMessageInterpolator
{
public CustomMessageInterpolator()
{
}
public string Interpolate(string message, IValidator validator, IMessageInterpolator defaultInterpolator)
{
return "CustomMessageInterpolator";
}
}
}
</code></pre>
http://stackoverflow.com/questions/905081/nhibernate-validator-custom-imessageinterpolator/1552673#15526731Answer by Craig for nHibernate Validator custom IMessageInterpolatorCraig2009-10-12T04:17:29Z2009-10-12T04:17:29Z<p>I have got this to work finally. Before calling the validator in my repository I explicitly create and pass the Interpolator as a parameter.</p>
<pre><code>ClassValidator classValidator = new ClassValidator(obj.GetType(), null, new CustomMessageInterpolator(),
CultureInfo.CurrentCulture, ValidatorMode.UseAttribute);
InvalidValue[] validationMessages = classValidator.GetInvalidValues(obj);
</code></pre>
http://stackoverflow.com/questions/587658/asp-net-usercontrol-inheritence0ASP.NET UserControl InheritenceCraig2009-02-25T20:15:55Z2009-09-30T02:00:03Z
<p>I have a UserControl that is working fine. It is declared like this.</p>
<pre><code>public partial class DynamicList : System.Web.UI.UserControl
{
protected static BaseListController m_GenericListController = null;
public DynamicList()
{
m_GenericListController = new GenericListController(this);
}
}
</code></pre>
<p>Now I want to override this control so I can change some of the properties. I have created a class like this.</p>
<pre><code>public partial class JobRunningList : DynamicList
{
public JobRunningList()
{
m_GenericListController = new JobListController(this);
(m_GenericListController as GenericListController).ModuleId = 14;
}
}
</code></pre>
<p>It appears that the controls in the DynamicList are not getting created though when I use the JobRunningList control now causing predictably bad results. The DynamicList UserControl has a ListView on it and a few other controls. It appears these are not created when using the JobRunningList. Is there any secret to this?</p>
http://stackoverflow.com/questions/324736/uk-suburb-database0UK Suburb DatabaseCraig2008-11-27T22:18:19Z2009-09-22T18:51:08Z
<p>This is not a really technical question but is required for a system I am building. I am after a UK suburb/postcode database. I haven't been able to find this anywhere and wonder if it is available (freely). I know in Australia is is freely downloadable from Australia Post. Also a US suburb/zip database is required as a secondary concern.</p>
http://stackoverflow.com/questions/279552/asp-ajax-calendar-extender-and-displaying-time0ASP Ajax Calendar Extender and displaying timeCraig2008-11-10T23:26:41Z2009-09-16T19:27:19Z
<p>I am using the Ajax Control Toolkit Calendar Extender control. In some fields though I want to display the time along with the date. I have tried just setting the Format to "dd/MM/yyyy hh:mm:ss" but the time section gets wiped off. If the user wants to change the time section they can do it manually, the calendar drop down is only used for changing the date part. </p>
<p>Are there any workarounds or alternatives to get this working? </p>
http://stackoverflow.com/questions/908356/calling-the-mcafee-virus-scan-engine2Calling the McAfee virus scan engineCraig2009-05-25T23:22:02Z2009-09-15T18:21:31Z
<p>I have a request from a client to integrate virus scanning into an application using the McAfee Virus Scan which they have on their server. I have done a bit of investigation and found that McScan32.dll is the main scan engine and it exports various functions that look useful. I have also found mentions of a McAfee Scan Engine SDK, but had trouble getting more information about it. </p>
<p>Has anyone used the McAfee Scan Engine SDK, if so where did you get information about it. I am trying to integrate into a C# application and the SDK appears to export C style functions, but that is a different issue once I get hold of the SDK.</p>
http://stackoverflow.com/questions/490036/setting-the-height-of-a-select-in-ie0Setting the height of a SELECT in IECraig2009-01-29T00:24:44Z2009-09-02T10:35:52Z
<p>IE seems to ignore the height set in CSS when rendering a HTML SELECT. Are there any work around's for this or do we have to just accept IE will not look as good as other browsers?</p>
http://stackoverflow.com/questions/1264132/get-executed-sql-from-nhibernate1Get executed SQL from nHibernateCraig2009-08-12T03:53:26Z2009-08-12T22:54:23Z
<p>I am using nHibernate ICriteria to execute a query, and I would like to be able to get the SQL that was executed after the statement runs. So for example I have something like this.</p>
<pre><code>ISession session = NHibernateSessionManager.Instance.GetSession();
DetachedCriteria query = BuildCriteria(); // Goes away and constructs the ICriteria
var result = query.GetExecutableCriteria(session).List<object>()
// somehow here get the sql that was just run
string sql = query.GetSqlSomehow();
</code></pre>
<p>I know I can log it and see the sql in the log, but I want to get it immediately after executing the statement so I can display the SQL to the user (even if it doesn't look nice).</p>
http://stackoverflow.com/questions/348187/jquery-slider-range0jQuery slider rangeCraig2008-12-07T22:04:42Z2009-08-06T10:17:35Z
<p>I am trying to use the range property of the jQuery slider so that the slider control displays two handles from which the user can select a price range for real estate. The code I have is:</p>
<pre><code>$("#price").slider({ range: true, minValue: 0, maxValue: 2000000,
change:
function(e, ui) {
var range = (Math.round(ui.range) * 10) + " to " + ui.value;
$("#pricedesc").text(range);
}
});
</code></pre>
<p>The price range should be from $0 to $2,000,000. When I slide the handles on the slider though I get unusual values such as "690 to 13". How exactly is the double handle slider meant to work?</p>
http://stackoverflow.com/questions/1236657/what-is-the-best-way-to-manage-user-photos-for-a-website/1236750#12367500Answer by Craig for What is the best way to manage user photos for a website?Craig2009-08-06T02:53:43Z2009-08-06T02:53:43Z<p>This is common question and the basic answer is that it depends. You need to give more information. What database are you planning on using? SQL Server 2008 has some good new features for handling this scenario with FILESTREAM function. Generally I prefer to put them in the database, but if you just stuff them in their without thinking about design and access requirements you could have poor performance as the number of photos increases.</p>
http://stackoverflow.com/questions/1220374/silverlight-3-dataform-best-practices1Silverlight 3 DataForm best practicesCraig2009-08-03T01:25:52Z2009-08-03T01:35:49Z
<p>I have got a new project I am doing in Silverlight 3 which is a LOB application. It will have a fair number of data entry screens, some of which will be pretty complicated. Is the new DataForm control up to the task for anything other than simple generic forms or should I create custom forms? And if I create custom forms, are there any best practices available for layout out forms in XAML?</p>
http://stackoverflow.com/questions/1877824/crystal-report-verifydatabase-not-working/1887935#1887935Comment by Craig on Crystal Report VerifyDatabase not workingCraig2009-12-13T21:43:44Z2009-12-13T21:43:44ZThanks for this. The reports were created in XI which is different to 10.5 which comes with VS2008. But why do the reports run normally in one environment (with 10.5 runtime) and not the other with the same runtime?
http://stackoverflow.com/questions/1877824/crystal-report-verifydatabase-not-workingComment by Craig on Crystal Report VerifyDatabase not workingCraig2009-12-11T08:56:58Z2009-12-11T08:56:58ZNo, I am referring to using the Crystal Reports application. The reports are all stored as external .rpt files that are dynamically loaded.http://stackoverflow.com/questions/1877824/crystal-report-verifydatabase-not-workingComment by Craig on Crystal Report VerifyDatabase not workingCraig2009-12-11T01:43:03Z2009-12-11T01:43:03Z.NET 3.5 and Crystal 10.5, the version that comes with VS2008.http://stackoverflow.com/questions/1877824/crystal-report-verifydatabase-not-working/1877942#1877942Comment by Craig on Crystal Report VerifyDatabase not workingCraig2009-12-10T02:38:10Z2009-12-10T02:38:10ZThanks Ray. I added an edit to the question. The dev database is exactly the same as live, it is a backup, and I manually verified against it, but the error still occurs. I am wondering if different default database collations could cause the problem.http://stackoverflow.com/questions/1877824/crystal-report-verifydatabase-not-working/1877836#1877836Comment by Craig on Crystal Report VerifyDatabase not workingCraig2009-12-10T00:09:22Z2009-12-10T00:09:22ZThanks. I am not using typed datasets but connecting directly to the database in the report.http://stackoverflow.com/questions/324736/uk-suburb-database/324763#324763Comment by Craig on UK Suburb DatabaseCraig2009-12-09T21:52:02Z2009-12-09T21:52:02ZLooks like this data may be free soon. <a href="http://news.bbc.co.uk/2/hi/technology/8402327.stm" rel="nofollow">news.bbc.co.uk/2/hi/technology/8402327.stm</a>http://stackoverflow.com/questions/1761179/crystal-report-view-page-numbers/1763668#1763668Comment by Craig on Crystal Report View page numbersCraig2009-11-19T21:53:31Z2009-11-19T21:53:31ZThanks Dusty. Just adding a Page N of M on and suppressing it will have the desired effect.http://stackoverflow.com/questions/1711555/asp-net-mvc-new-project-how-to-begin/1711585#1711585Comment by Craig on Asp.Net MVC - New Project How to Begin?Craig2009-11-11T22:57:00Z2009-11-11T22:57:00ZJemes, I generally create Model and Services projects up front and then try and put all the logic and validation in them from the start. It is a good idea to keep your controllers as thin as possible, they are just an intermediary between the View and domain logic, they should just have some plumbing code really.http://stackoverflow.com/questions/1698752/spark-view-engine-an-assembly-with-the-same-simple-name-error/1698790#1698790Comment by Craig on Spark View Engine "An assembly with the same simple name" errorCraig2009-11-09T09:53:08Z2009-11-09T09:53:08ZI had a look at this but am not using <use assembly=""> anywhere and the problem still occurs.http://stackoverflow.com/questions/1698752/spark-view-engine-an-assembly-with-the-same-simple-name-error/1698790#1698790Comment by Craig on Spark View Engine "An assembly with the same simple name" errorCraig2009-11-09T02:51:30Z2009-11-09T02:51:30ZThanks. I am also a bit confused about the _global.spark file and how it relates to this and spark engine setup in the global.aspx. Is there any good reference on this?http://stackoverflow.com/questions/148857/what-is-the-opposite-of-parse/1597205#1597205Comment by Craig on What is the opposite of 'parse'?Craig2009-10-20T22:35:59Z2009-10-20T22:35:59ZPlease tell me how nHibernate would help me to do this?http://stackoverflow.com/questions/148857/what-is-the-opposite-of-parse/1597205#1597205Comment by Craig on What is the opposite of 'parse'?Craig2009-10-20T22:35:04Z2009-10-20T22:35:04ZReason was basically we had to turn a query 'SELECT CustomerId FROM Customer' into something like 'SELECT <<field:25>> FROM <<table:76>>'. This is easy for basic select, very difficult for complex queries.http://stackoverflow.com/questions/148857/what-is-the-opposite-of-parse/1597205#1597205Comment by Craig on What is the opposite of 'parse'?Craig2009-10-20T21:46:06Z2009-10-20T21:46:06ZI must agree, I had recently a perfectly good reason to parse SQL that had nothing to do with ORM's (which I used in the project as well).http://stackoverflow.com/questions/908356/calling-the-mcafee-virus-scan-engine/1428856#1428856Comment by Craig on Calling the McAfee virus scan engineCraig2009-09-16T01:57:23Z2009-09-16T01:57:23ZYes, we ended up doing what the forum suggested and use MetaScan.http://stackoverflow.com/questions/32100/what-is-the-simplest-sql-query-to-find-the-second-largest-value/32108#32108Comment by Craig on What is the simplest SQL Query to find the second largest value?Craig2009-09-16T00:22:20Z2009-09-16T00:22:20ZHave you run this on SQL Server?