User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T05:59:19Zhttp://stackoverflow.com/feeds/user/16989http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1504684/sql-turn-dates-of-adding-and-removing-into-date-ranges0sql turn dates of adding and removing into date rangespetebob7962009-10-01T15:35:08Z2009-12-11T18:36:08Z
<p>I am using a timetabling application called CELCAT and trying to pull out some data about when students should have been marked for reporting... This seems to be extremely difficult because of the way the adding and removing of students on registers is structured see below:</p>
<p>studentid eventid fromdatetime addition removal<br/>
25149 25145 2009-09-12 10:30:00.000 Y NULL<br/>
25149 25145 2009-09-12 10:30:00.000 NULL Y<br/>
25149 25145 2009-09-12 10:30:00.000 Y NULL<br/>
25150 23013 2009-09-08 09:00:00.000 Y NULL<br/>
25150 23554 2009-09-07 09:00:00.000 Y NULL<br/>
25150 25145 2009-09-12 10:30:00.000 Y NULL<br/>
25150 25145 2009-07-27 00:00:00.000 NULL Y<br/>
25150 25145 2009-09-12 10:30:00.000 Y NULL<br/>
25150 25145 2009-09-12 10:30:00.000 NULL Y<br/>
25150 25145 2009-09-12 10:30:00.000 Y NULL<br/>
25150 25148 2009-09-12 15:00:00.000 Y NULL<br/>
25151 25145 2009-09-12 10:30:00.000 Y NULL<br/>
25151 25145 2009-10-10 00:00:00.000 NULL Y<br/>
25152 25145 2009-09-19 10:30:00.000 Y NULL<br/>
25152 25145 2009-07-27 00:00:00.000 NULL Y<br/></p>
<p>So an addition of a student means they should be marked from that date onwards in the register (registers are weekly reccurring events with their own week profile, I can handle that side of it though). A removal would mean the student doesn't need to be marked past this date, however a student could potentially be added, removed and then re-added in a later week.</p>
<p>What I think would get me in the right direction would be to get a table of structure</p>
<p>studentid eventid fromdate todate<br>
25149 25145 2009-09-12 10:30:00.000 2009-09-28 10:30:00.000 <br>
25149 25145 2009-10-13 10:30:00.000 2009-10-24 10:30:00.000 </p>
<p>Any ideas how to do this? Or a better suggestion? I imagine it will involve some use of cursors unless someone has an awesome solution. The tables are designed by CELCAT and cannot be modified.</p>
<p>Oh yeah it's sql server 2005.</p>
<p><strong>EDIT</strong> by KM, here is some code to test solutions with:</p>
<pre><code>DECLARE @YourTable table (studentid int
,eventid int
,fromdatetime datetime
,addition char(1)
,removal char(1)
)
SET NOCOUNT ON
INSERT INTO @YourTable VALUES (25149,25145,'2009-09-12 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25149,25145,'2009-09-12 10:30:00.000', NULL,'Y')
INSERT INTO @YourTable VALUES (25149,25145,'2009-09-12 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25150,23013,'2009-09-08 09:00:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25150,23554,'2009-09-07 09:00:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25150,25145,'2009-09-12 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25150,25145,'2009-07-27 00:00:00.000', NULL,'Y')
INSERT INTO @YourTable VALUES (25150,25145,'2009-09-12 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25150,25145,'2009-09-12 10:30:00.000', NULL,'Y')
INSERT INTO @YourTable VALUES (25150,25145,'2009-09-12 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25150,25148,'2009-09-12 15:00:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25151,25145,'2009-09-12 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25151,25145,'2009-10-10 00:00:00.000', NULL,'Y')
INSERT INTO @YourTable VALUES (25152,25145,'2009-09-19 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25152,25145,'2009-07-27 00:00:00.000', NULL,'Y')
SET NOCOUNT OFF
</code></pre>
http://stackoverflow.com/questions/1888081/retrieve-fields-in-visual-studio-of-stored-procedure-which-uses-temp-tables0Retrieve fields in Visual Studio of stored procedure which uses temp tablespetebob7962009-12-11T13:31:05Z2009-12-11T14:14:37Z
<p>I have some complex stored procedures pulling data from other databases using linked servers. This data is put into temp tables which are joined in a select query for output. The procedures work fine but in visual studio if I try to add the stored procedure to a dataset using the designer I get the error invalid object name #tmp or whatever the first temp table is called. It is unable to retrieve the database schema. It's the same for using and sqldatasource in ASP.NET.</p>
<p>The procedure is still usable but I have to manually add all the columns it should output to the datatable. This is going to be a pain to do manually and I assume it is to do with the way visual studio gathers the output fields from the stored procedure, it doesn't seem to run it in the normal way. Is there a way to correct this as I have quite a lot of these to do and don't want to have to add all the columns manually, which is time consuming and error prone.</p>
http://stackoverflow.com/questions/1868097/net-idisposable-inline-temps0.NET IDisposable inline tempspetebob7962009-12-08T16:25:33Z2009-12-08T20:29:55Z
<p>I use code rush and refactor pro (highlight possible code issues and so on like ReSharper) and they were telling me I had undisposed locals (that implemented IDisposable). So I changed the code to this with two using statements:</p>
<pre><code>using (Reports.StudentRegisters.StudentQueriesDataTable studentDataTable = new Reports.StudentRegisters.StudentQueriesDataTable())
{
using (StudentQueriesTableAdapter studentTableAdapter = new StudentQueriesTableAdapter())
{
try
{
studentTableAdapter.FillByQAbsenceRegRow(studentDataTable, year, school, division, progArea, sinceWeek, missedLessons, includeWdlTrn, ageMin, ageMax, studentGLH);
ds = new DataSet();
ds.Tables.Add((DataTable)studentDataTable);
ReportDocument.SetDataSource(ds.Tables[0]);
}
catch (Exception err)
{
LogReportError(err, this.CrystalViewer, null, ErrorType.Reporting);
}
}
}
</code></pre>
<p>Since the studentTableAdapter is used once I could in line it like below:</p>
<pre><code>using (Reports.StudentRegisters.StudentQueriesDataTable studentDataTable = new Reports.StudentRegisters.StudentQueriesDataTable())
{
try
{
(new StudentQueriesTableAdapter()).FillByQAbsenceRegRow(studentDataTable, year, school, division, progArea, sinceWeek, missedLessons, includeWdlTrn, ageMin, ageMax, studentGLH);
ds = new DataSet();
ds.Tables.Add((DataTable)studentDataTable);
ReportDocument.SetDataSource(ds.Tables[0]);
}
catch (Exception err)
{
LogReportError(err, this.CrystalViewer, null, ErrorType.Reporting);
}
}
</code></pre>
<p>Obviously in this solution I now have no way to call dispose on the StudentQueriesTableAdapter. Is this called automatically as there is no reference to the object anymore or would this potentially leave something not disposed properly.</p>
<p>I will stress i'm not interested in whether I actually need to use dispose on the two objects, I know some things implement it and it's not really required (Although should always be done). I'm specifically interested in if it is called.</p>
http://stackoverflow.com/questions/724323/crystal-reports-close-the-database-connection/1866319#18663190Answer by petebob796 for Crystal reports - close the database connectionpetebob7962009-12-08T11:15:52Z2009-12-08T11:15:52Z<p>Marks code seems to somewhat relieve the situation although it is a bit backwards, should be something like: </p>
<pre><code>ReportDocument rd = (ReportDocument) viewer.ReportSource;
foreach (Table table in rd.Database.Tables)
table.Dispose();
viewer.ReportSource = null;
rd.Database.Dispose();
rd.Close();
rd.Dispose();
rd = (ReportDocument) viewer.ReportSource;
GC.Collect();
</code></pre>
<p>This didn't completely plug the leak for me but certainly helped.</p>
http://stackoverflow.com/questions/1770684/c-sync-ms-access-database-to-sql-server1C# Sync MS Access database to sql serverpetebob7962009-11-20T14:13:07Z2009-12-07T21:38:48Z
<p>I am trying to set up a synchronization routine in C# to send data from a ms access database to a sql server. MS Access is not my choice it's just the way it is. </p>
<p>I am able to query the MS Access database and get OleDbDataReader record set. I could potentially read each individual record and insert it onto SQL Server but it seems so wasteful. </p>
<p>Is there a better way to do this. I know I could do it in MS Access linking to sql server and perform the update easy but this is for end users and I don't want them messing with access.</p>
<p><strong>EDIT:</strong>
Just looking at SqlBulkCopy I think that may be the answer if I get my results into DataRow[]</p>
http://stackoverflow.com/questions/1848065/c-liststream-dispose-close1C# List<Stream> dispose/closepetebob7962009-12-04T16:25:17Z2009-12-04T17:06:23Z
<p>I am setting up a subscription service to send reports to various people in our company on a schedule. I plan to email the reports, the reporting system I am using is able to export as PDF stream (rather than writing temp files). Most people will receive more than one report so I am trying to attach them all to one email doing something like</p>
<pre><code>List<Stream> reports = new List<Stream>();
//looping code for each users set of reports
Stream stream = ReportSource.ReportDocument.ExportToStream(PortableDocFormat)
reports.Add(stream);
stream.Flush(); //unsure
stream.Close(); //unsure
//end looping code
SmtpClient smtpClient = new SmtpClient(host, port);
MailMessage message = new MailMessage(from, to, subject, body);
foreach (Stream report in reports)
{
message.Attachments.Add(new Attachment(report, "application/pdf"));
}
smtpClient.Send(message);
</code></pre>
<p>What I am unsure about is should I be flushing and closing the stream just after adding it to the list will this be ok? Or do I need to loop the List afterwards to flush and dispose? I am trying to avoid any memory leak that is possible.</p>
http://stackoverflow.com/questions/1829999/asp-net-get-windows-username-outside-of-page0ASP.NET get windows username outside of pagepetebob7962009-12-02T00:48:13Z2009-12-02T02:54:19Z
<p>I have an Existing ASP.NET reporting application using windows authentication. A lot of the report generation code is in separate classes and has a core error logger that I didn't write, this error logger I believe was built for windows apps as it uses WindowsIdentity.GetCurrent().Name. In the case of ASP.NET I believe this will return the account running the ASP.NET pages at the server.</p>
<p>I believe using User.Identity.Name on the pages would be the correct way to do this but it is not available from within the report generation classes only on the page. Is there a way to obtain it withing the error logger class without passing it as an extra parameter. </p>
<p>There are hundreds of report classes so I dread to have to go through and add a parameter to every one.</p>
http://stackoverflow.com/questions/1565979/asp-net-crystal-report-parameters-from-query-string-not-working0ASP.NET crystal report parameters from query string not workingpetebob7962009-10-14T12:38:00Z2009-12-02T01:10:58Z
<p>I am updating an existing reporting system in ASP.NET which uses crystal reports. In the past reports have been given their parameters by session variables, however I now have a need to post them in the web address e.g.</p>
<p>www.mysite.com?reportname=myreport&year=2009</p>
<p>I have grabbed the parameters off using request.querystring as usual and the report generates and the first page looks ok. However as soon as I try to go to the next page on the report viewer toolbar the report errors getting no data.</p>
<p>If I remove the parameters and hard code some values the page works fine. Any ideas if this is a known issue with crystal reports? Is there a way around it?</p>
<p>I'm thinking it's something to do with caching not working when parameters are in the address, have something in the back of my mind about it</p>
http://stackoverflow.com/questions/1565979/asp-net-crystal-report-parameters-from-query-string-not-working/1830071#18300710Answer by petebob796 for ASP.NET crystal report parameters from query string not workingpetebob7962009-12-02T01:10:58Z2009-12-02T01:10:58Z<p>It seems to be an issue with crystal reports, it must use the address in some way. I modified my code to put in an intermediate page where the request.querystring variables are put into the session and then the user is forwarded to another page which generates the report.</p>
http://stackoverflow.com/questions/1667061/c-printdialog-printersettings-canduplex-reports-wrongly0C# PrintDialog.PrinterSettings.CanDuplex Reports Wronglypetebob7962009-11-03T12:32:14Z2009-12-02T01:08:42Z
<p>I'm trying to setup some code to print to different trays on a photo copier depending on what the document is (different sizes, paper colours...). It is one particular type of copier so I am not too worried about the code working in other scenarios. I still want to show the print dialog, just with the settings having better defaults for each document.</p>
<p>I have managed to setup the majority of what I want using properties in </p>
<pre><code>PrintDialog.PrinterSettings.
</code></pre>
<p>However on trying to set the duplexing using</p>
<pre><code>PrintDialog.PrinterSettings.Duplex = System.Drawing.Printing.Duplex.Vertical;
</code></pre>
<p>It fails, remaining the same as it was before. If I check if duplex is supported using </p>
<pre><code>PrintDialog.PrinterSettings.CanDuplex;
</code></pre>
<p>It returns false which is not the case I can change it on the dialog and it prints fine. Has anyone else had this problem? Is there a work around? Perhaps something involving COM (please be gentle not used interop code much)</p>
<p>It's a Gestetner 2212 copier and I believe the print server is a Windows Server 2008 machine.</p>
<p><strong>Edit:</strong></p>
<p>I found this link</p>
<p><a href="http://bytes.com/topic/c-sharp/answers/238860-using-setprinter-c-set-duplex-option-print-prefs" rel="nofollow">http://bytes.com/topic/c-sharp/answers/238860-using-setprinter-c-set-duplex-option-print-prefs</a></p>
<p>Which seems to be a similar problem it seems to be some kind of problem related to using a networked printer and trying to set duplex. However the link doesn't post the solution it was emailed to them (I hate it when people do that). Anyone know how I can set the duplexing using COM interop code.</p>
http://stackoverflow.com/questions/1667061/c-printdialog-printersettings-canduplex-reports-wrongly/1830061#18300610Answer by petebob796 for C# PrintDialog.PrinterSettings.CanDuplex Reports Wronglypetebob7962009-12-02T01:08:42Z2009-12-02T01:08:42Z<p>Seems network printers duplex property cannot be set in .NET code easily, even when it says it has changed the property it doesn't output correctly. There is a way to do it using com interop but it still requires modifying security levels for the printer so is more hassle than it is worth.</p>
http://stackoverflow.com/questions/1486478/linked-server-with-space-in-table-name0Linked server with space in table namepetebob7962009-09-28T11:04:12Z2009-12-02T01:04:34Z
<p>I have added an linked server from an SQL 2000 server to an SQL 2005 server which is a named instance. This has worked well until I have got to a table with a space in the name. </p>
<p>It seems to not be able to resolve the object, and causes an error on the query. Is this a known issue with linked servers, I can't find anything mentioning it and do not really want to have to rename a table, finding all references to it.</p>
<p>EDIT: I did use square brackets around the table name</p>
http://stackoverflow.com/questions/1486478/linked-server-with-space-in-table-name/1830044#18300440Answer by petebob796 for Linked server with space in table namepetebob7962009-12-02T01:04:34Z2009-12-02T01:04:34Z<p>For whatever reson table names with spaces in don't work no matter what square brackets you use. This may be a limitation related to the fact the server I am linking from is sql 2000. I solved this using a view with the same name without the space.</p>
http://stackoverflow.com/questions/1044644/net-dll-versions-and-xcopy-deployment1.NET DLL versions and xcopy deploymentpetebob7962009-06-25T15:38:29Z2009-12-02T01:00:41Z
<p>I have been deploying several programs into one folder using XCOPY deployment to a shared network drive as it makes it extremely easy for me to update in house programs. These have a shared DLL NNC.dll. It doesn't often get modified but has done recently so when I went to deploy I couldn't overwrite as it is a breaking change.</p>
<p>If I change the Assembly name in the NNC project to say NNC 1.1.dll copying it into the same folder on the network, would the newly deployed programs pick up the new DLL and the old ones NNC.DLL. This is ideally what I would like, but I wouldn't want to deploy and then realize the old programs are picking up the newest version assembly as it has a breaking change in it which I haven't fixed in all projects yet.</p>
<p>The assembly has a strong name and I updated the version number to match.</p>
http://stackoverflow.com/questions/1044644/net-dll-versions-and-xcopy-deployment/1830035#18300351Answer by petebob796 for .NET DLL versions and xcopy deploymentpetebob7962009-12-02T01:00:41Z2009-12-02T01:00:41Z<p>It worked the way I hoped in my question.</p>
http://stackoverflow.com/questions/1444026/crystalreports-embedded-reports-in-asp-net1CrystalReports Embedded reports in ASP.NETpetebob7962009-09-18T11:42:03Z2009-12-02T00:56:16Z
<p>We currently have a set of crystal reports used for winforms projects embedded into a dll. This has been working well for us as the dll exposes a simple constructor for each report to pass needed parameters. </p>
<p>A property can then be retrieved which is the:</p>
<p>CrystalDecisions.CrystalReports.Engine.ReportClass object which you send to the report viewer to see the report.</p>
<p>I thought it would be easy to add this dll to an ASP.NET project and do the same. However it seems ASP.NET reports require a path to pick up the actual .rpt file.</p>
<p>From what I can find on the internet it says embedded reports are not supported in CR 2005 and CR 2008 basic but says nothing about <strong>CR 2008 Full Version</strong> (Which is what we have). Is there a way to do it with this version?</p>
<p>If not any work arounds?</p>
http://stackoverflow.com/questions/1444026/crystalreports-embedded-reports-in-asp-net/1830027#18300270Answer by petebob796 for CrystalReports Embedded reports in ASP.NETpetebob7962009-12-02T00:56:16Z2009-12-02T00:56:16Z<p>From what I have managed to discover this is not possbile. I modified my report classes to have a constructor for web and a constructor for windows so the windows one can pick up the embedded reports and the web the standalone ones from bin. This is not ideal but there seems no other solution.</p>
http://stackoverflow.com/questions/1807950/put-asp-net-on-wordpress-site0Put ASP.NET on wordpress sitepetebob7962009-11-27T10:29:32Z2009-11-27T11:08:01Z
<p>I work for a college and our main website has an ASP.NET based course information search which I created. This has become popular and our company facing website (training for companies) has asked for the same system on their website. I'm not involved in the day to day of either website but know theirs was made using Wordpress. Is it going to be possible for me to embed some ASP.NET code within some of the pages? Any articles on doing this?</p>
<p><strong>EDIT:</strong>
The ASP.NET code that would appear in the actual Markup is minimal it's mainly a few asp:Literals I did this on purpose to hide most of it from the website developer to save myself hassle when something gets deleted by accident.</p>
<p><strong>EDIT2</strong> There was a response to do it as a webservice would this be possible. i.e. as search box on the main page displaying the results underneath.</p>
http://stackoverflow.com/questions/186653/c-indexof-the-nth-occurrence-of-a-string4C# - indexOf the nth occurrence of a string?petebob7962008-10-09T10:20:00Z2009-11-11T07:20:14Z
<p>Unless I am missing an obvious built in method what is the quickest way to get the nth occurrence of a string within a string. </p>
<p>I could loop the indexof method with the start index being updated on each loop but it sounds wasteful to me.</p>
http://stackoverflow.com/questions/549504/net-open-pdf-in-winform-without-external-dependencies1.NET open PDF in winform without external dependenciespetebob7962009-02-14T18:29:08Z2009-11-04T16:10:25Z
<p>Is there a FREE library which will allow me to open a pdf and show it on a winform project. I know I could open it in adobe reader or something but it always seems so bloated to me and I would be relying on it being installed. Is there a nice lightweight alternative where I could just include a dll in my project or similar avoiding external dependencies. </p>
<p>I don't need much functionality just view, change page zoom..</p>
<p>I have seen a few libraries but they seem to be about creating PDF's not viewing.</p>
http://stackoverflow.com/questions/226704/email-message-recall-does-it-actually-work0Email message recall does it actually work?petebob7962008-10-22T17:04:42Z2009-11-04T15:29:47Z
<p>I was asked to recall a message I sent out to remove some personal info from it and replace it with a generic made up person as an example. </p>
<p>Does message recall really work?</p>
<p>It's my opinion because you get told a message has been recalled it just causes you to want to find out what was in the original message. All you do is find someone who had already read it.</p>
<p>Can exchange server be adjusted to not tell users when a message is recalled or replaced?</p>
<p>What about bcc, recall doesn't seem to work on these and global emails tend to be the ones you really need to recall.</p>
http://stackoverflow.com/questions/347048/asp-net-publish-with-whitespace-removed0asp.net publish with whitespace removedpetebob7962008-12-07T00:41:42Z2009-10-29T18:48:52Z
<p>Obviously having whitespace in css, aspx and html pages is a great advantage at design time. But is there a way to (a tool that will) clear all the whitespace from all the files and possibly merge javascript and css files in a more optimal way. </p>
<p>I am using asp.net themes so there are quite a lot of separate css files that would be improved through some form of automated combining. I have seen a few http modules but that isn't quite what I want I just want to run something over the published project beofre sending it to the server.</p>
<p>EDIT: Compression at least in IIS is unfortunately not an option, we are currently running it on the same IIS server as a third party web based student management system. It doesn't like compression and the IIS options don't seem to be per application pool. I did apply asp.net compression but the bulk of my extra data seems to be the app_themes which I know would compress well I just don't want to have to manually go through compressing all the css separately.</p>
http://stackoverflow.com/questions/1348687/group-tree-pdf-export-in-crystal-reports/1631859#16318592Answer by petebob796 for Group Tree PDF Export in Crystal Reportspetebob7962009-10-27T16:02:13Z2009-10-27T16:02:13Z<p>Not familiar with that class as I have never had to use it but tried this on my machine:</p>
<pre><code>CrystalDecisions.Shared.PdfFormatOptions options = new CrystalDecisions.Shared.PdfFormatOptions();
options.CreateBookmarksFromGroupTree = true;
</code></pre>
<p>It seemed ok to me. I have the full Crystal Reports 2008 version not the one that comes with visual studio so that could be the reason it doesn't work for you. </p>
<p>I would check that you have a reference in your project to the CrystalDecisions.Shared namespace in your project though.</p>
http://stackoverflow.com/questions/289688/t-sql-replace-on-text-field6t-sql replace on text fieldpetebob7962008-11-14T10:13:48Z2009-10-26T08:52:18Z
<p>I have hit a classic problem of needing to do a string replace on a text field in an sql 2000 database. This could either be an update over a whole column or a single field I'm not fussy.</p>
<p>I have found a few examples of how to use updatetext to achieve it but they tend to be in stored procedures, does anyone know of a similar thing that is wrapped into a function so I can use it like I would usually use Replace(). The problem with the Replace() function for anyone who isn't aware is that it doesn't support text fields.</p>
<p>Edit: I realised I could probably get away with varchar(8000) so have swapped the fields to this type which fixes the issue. I never found a true solution.</p>
http://stackoverflow.com/questions/214124/winforms-html-editor6winforms html editorpetebob7962008-10-17T23:01:46Z2009-09-22T09:00:09Z
<p>Anyone know of a good free winforms html editor for .NET. Ideally I would like html and preview modes along with the possibility of exporting to a pdf, word doc or similar. </p>
<p>Although the export I could probably create myself from the html output.</p>
<p>Another nice feature would be a paste from word that removes all the extra tags you usually end up with but again it's a nice to have not a required.</p>
http://stackoverflow.com/questions/664203/silverlight-recommended-book7Silverlight Recommended Bookpetebob7962009-03-19T21:48:17Z2009-09-21T01:10:44Z
<p>I have just been reading about Silverlight 3 and would like to start getting into Silverlight. Can someone recommend a good silverlight book (version 2 would be fine).
I found this but the answers and one ups were quite sparse, perhaps there is a better answer now it has been around longer.</p>
<p><a href="http://stackoverflow.com/questions/60822/can-anyone-recommend-a-silverlight-2-book">http://stackoverflow.com/questions/60822/can-anyone-recommend-a-silverlight-2-book</a>
<br></p>
<p>I think I am a learn by doing person, so a tutorial book would probably be best for me.</p>
http://stackoverflow.com/questions/1297198/display-crystal-report-within-silverlight1Display Crystal Report within silverlightpetebob7962009-08-18T23:54:35Z2009-08-19T16:05:42Z
<p>I am about to start replacing an old internal website with lots of crystal reports on it with something new. I am thinking about using silverlight but would still need to be able to display the crystal reports passing parameters from the silverlight side. Anyone know if this is possible, I found this:</p>
<p><a href="http://www.global-webnet.net/blogengine/post/2009/01/06/Running-Crystal-Reports-from-Silverlight.aspx" rel="nofollow">http://www.global-webnet.net/blogengine/post/2009/01/06/Running-Crystal-Reports-from-Silverlight.aspx</a></p>
<p>This opens a new page passing parameters in the link but I don't think passing to a completely new page is a great user experience, is there a way to do this within the same window? Currently I can only think of frames which is obviously not a choice I would like to make, hopefully there is some way of renedering HTML within silverlight. I may stick with asp.net if this can't be done.</p>
http://stackoverflow.com/questions/169357/net-usercontrols-telerik-devexpress-infragistics-componentone-whos-best6.NET Usercontrols telerik devexpress infragistics ComponentOne: who's best?petebob7962008-10-03T23:51:53Z2009-08-19T13:09:40Z
<p>I am considering the purchase of some .NET user controls with interest in both WinForms and asp.net. I have trialed in the past devexpress when I needed a hierarchical data grid for a personal project which I was impressed with. Rather than just jump for them I am interested in peoples experience of different products such as:<br><br>
Telerik<br>Dev Express<br>Infragistics<br>
ComponentOne<br>
Any Others?<br><br>
I would like peoples opinions on:<br>
- Features Set and Number of Controls<br>
- Installation and Upgrade<br>
- Ease of use<br>
- Documentation<br>
- Price<br>
- License<br>
- Development (Updates to controls their side)<br><br>
Also if anyone has any links to review (hopefully side by side) please post them</p>
http://stackoverflow.com/questions/1259046/terminal-services-ms-accesss-vba-errors-corruption0Terminal Services MS accesss VBA errors/corruptionpetebob7962009-08-11T08:23:57Z2009-08-11T08:23:57Z
<p>Sorry if this is the wrong place i thought about putting it on server fault but felt this was more appropriate.</p>
<p>A site I work at has just upgraded to windows server 2008 remote desktop services (Terminal Services) with ms access 2007. They have a few old ms access programs with VBA code and whatever else which I didn't write. These are failing to run on the server even after trying enabling all macros to run and other security settings. It even ends up corrupting the MDB's sometimes creating a module not found error despite me still being able to see the VBA code and also clears references some times. Luckily I had a backup of all the MDB's. </p>
<p>Any ideas what is stopping this I have tried converting the files to various different versions of Access and compacts and repairs and all sorts.</p>
http://stackoverflow.com/questions/132305/linked-server-performance-and-options1Linked Server Performance and optionspetebob7962008-09-25T09:25:33Z2009-08-03T15:30:16Z
<p>So at work we have two servers one is running an application a lot of people use which has an sql 2000 back end. I have been free to query this for a long time but can't add anything to it such as stored procedures or extra tables. This has lead to us having a second sql server linked to the first one and me building up a library of stored procedures that query data from both sides using linked server. Some of these queries are taking longer than what I would like. <br>
<br>
Can someone point me to some good articles about using linked servers, I am particularly interested in finding out what data is being transferred between the two as usually the majority of the sql statement could be performed remotely but I have the feeling it may be transferring the full tables, it is usually just a join to a small final table locally.
<br><br>
Also what do the linked server options do I currently have:<br>
Collation Compatible True<br>
Data Access True<br>
Rpc True<br>
Rpc Out True<br>
Use Remote Collation False<br>
Collation Name (Blank)<br>
Connection Timeout 0<br>
Query Timeout 0<br></p>
<p><strong>EDIT:</strong>
Just thought I would update this post I used openqueries with dynamic parameters for a while to boost performance, thanks for the tip. However doing this can make queries more messy as you end up dealing with strings. finally this summer we upgraded sql server to 2008 and implemented live data mirroring. To be honest the open queries were approaching the speed of local quereis for my tasks but the mirroring has certainly made the sql easier to deal with.</p>
http://stackoverflow.com/questions/1888081/retrieve-fields-in-visual-studio-of-stored-procedure-which-uses-temp-tablesComment by on Retrieve fields in Visual Studio of stored procedure which uses temp tables2009-12-11T16:12:39Z2009-12-11T16:12:39ZYeah you can't use dynamic SQL or openquery in a function as far as I know. Correct me if I am wrong.http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-queryComment by on Can someone copyright a SQL query?2009-12-11T16:09:12Z2009-12-11T16:09:12ZI work for a college I would guess the db layout is pretty straight forward I have seen a few student management systems and they tend to rely on 5 or 6 core tables but have hundreds of barey used ones. There will be a biographical, address (if needed), student level per year info table (ie disabilities, special requirements...), and a course per year table (academic year, start date, expected end date, actual end, course code...). It will be deady easy for anyone on SO to implement it for you if you can't yourself. And parameterized.
http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1842475#1842475Comment by on Can someone copyright a SQL query?2009-12-11T16:01:16Z2009-12-11T16:01:16ZI'm currently one of the poor souls trying to improve things for the education system. They have a really bad way of using MIS resources they have a couple of guys at each college/school not collaborating even though they use the same underlying student management system. Work is duplicated badly and getting coherent data to compare schools/colleges is next to impossible. If they used an overall approach they would save money and improve accuracy.http://stackoverflow.com/questions/1840847/can-someone-copyright-a-sql-query/1840969#1840969Comment by on Can someone copyright a SQL query?2009-12-11T15:55:15Z2009-12-11T15:55:15ZDepends what country you are inhttp://stackoverflow.com/questions/1888081/retrieve-fields-in-visual-studio-of-stored-procedure-which-uses-temp-tables/1888330#1888330Comment by on Retrieve fields in Visual Studio of stored procedure which uses temp tables2009-12-11T14:54:40Z2009-12-11T14:54:40ZYeah but it's only being used for the designer, the developer knows what columns need to exist in the end it's just quicker for it to put them in for you based on the values you give it for the stored proc. An example is crystal report it takes the values you give it and pulls out the last datatable a stored procedure gives you. It doesn't matter the fact that they may not exist at runtime as this is always the case anyway as you could easily change any sql query.http://stackoverflow.com/questions/1888081/retrieve-fields-in-visual-studio-of-stored-procedure-which-uses-temp-tables/1888330#1888330Comment by on Retrieve fields in Visual Studio of stored procedure which uses temp tables2009-12-11T14:29:02Z2009-12-11T14:29:02ZYeah I understand that and I would also never write one where it would return potentially a different number of columns. But why doesn't it just retrieve the columns for the variables I specify.http://stackoverflow.com/questions/1888081/retrieve-fields-in-visual-studio-of-stored-procedure-which-uses-temp-tables/1888185#1888185Comment by on Retrieve fields in Visual Studio of stored procedure which uses temp tables2009-12-11T13:53:45Z2009-12-11T13:53:45ZSemes like that will take nearly as long, I don't see why visual studio can't obtain the meta data by running the query as normal since for instance Crystal report can do this without hassle.http://stackoverflow.com/questions/1814015/was-visual-studio-2008-or-2010-written-to-use-multi-cores/1814117#1814117Comment by on Was Visual Studio 2008 or 2010 written to use multi cores?2009-12-10T17:04:32Z2009-12-10T17:04:32ZI think in VS 2010 it's a very close run thing, it's certainly more threaded than before. And if you have set ms build correctly it will build projects in parallel. Most people have several projects in their solution that have dependencies on each other in some way.
Combine that with the fact you are running an OS, email client, web browser... probably all the time 4 cores makes sense to me. Don't think multiple threads for one program think multiple apps.http://stackoverflow.com/questions/150227/best-visual-studio-hardware-upgrade/150285#150285Comment by on Best Visual Studio Hardware Upgrade2009-12-10T13:33:30Z2009-12-10T13:33:30ZSSD seems more appropriate nowhttp://stackoverflow.com/questions/9545/who-in-the-software-world-do-you-admire-the-most/55346#55346Comment by on Who in the software world do you admire the most?2009-12-10T13:28:13Z2009-12-10T13:28:13ZAm I right in thinking this is an approximationhttp://stackoverflow.com/questions/58640/great-programming-quotes/1770932#1770932Comment by on Great programming quotes2009-12-10T10:40:51Z2009-12-10T10:40:51ZPossibly update to Never memorize what you can google.http://stackoverflow.com/questions/58640/great-programming-quotes/1175781#1175781Comment by on Great programming quotes2009-12-10T10:30:18Z2009-12-10T10:30:18ZAnd that's where every programmers I need to start from scratch rewrite desire comes in.http://stackoverflow.com/questions/58640/great-programming-quotes/59290#59290Comment by on Great programming quotes2009-12-10T09:07:41Z2009-12-10T09:07:41ZWas the flood leaky code.http://stackoverflow.com/questions/1841555/what-are-some-good-entity-framework-alternatives/1841601#1841601Comment by on What are some good Entity Framework Alternatives2009-12-09T16:30:21Z2009-12-09T16:30:21ZFor that matter just too damn complicated to do it in ORM, try select statements with 20 tables and sub queries. It's just simpler in sql sometimes.http://stackoverflow.com/questions/1859902/in-3-minutes-what-is-reflection/1859934#1859934Comment by on In 3 minutes, What is Reflection?2009-12-09T16:27:33Z2009-12-09T16:27:33ZI would agree it's not pretty but sometimes you really need something from a third party control. I found a memory leak in one and they wouldn't patch it for months so used reflection to temporarily do it myself.