User asp316 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T04:37:50Z http://stackoverflow.com/feeds/user/46064 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1469518/how-can-i-handle-multiple-row-revisions-in-a-single-table 0 How can I handle multiple row revisions in a single table? asp316 2009-09-24T02:33:45Z 2009-11-27T21:19:20Z <p>I'm working on an app where users enter pricing quotes. They want to be able to have multiple revisions of the quotes and have access to all of them to revise and view.</p> <p>Currently the data is stored in a Quotes table that looks like this:</p> <p>QuoteID (PK, autonumber) data1, data2, data3 and so on.</p> <p>QuoteID foreign keys to other tables for one to many relationships for details about the quote.</p> <p>Is there a way to keep all of the revisions in the Quotes table AND handle revisions? This way, the FK relationships to other tables would not be broken.</p> http://stackoverflow.com/questions/1725213/how-to-return-an-object-that-implements-an-interface-from-a-method 0 How to return an object that implements an interface from a method asp316 2009-11-12T20:39:09Z 2009-11-12T20:53:01Z <p>I'm trying to learn interfaces and want to try the following:</p> <p>Let's say I have an interface named ICustomer that defines basic properties (UserID, UserName, etc). Now, I have multiple concrete classes like ProductA_User, ProductB_User, ProductC_User. Each one has different properties but they all implement ICustomer as they are all customers.</p> <p>I want to invoke a shared method in a factory class named MemberFactory and tell it to new me up a user and I just give it a param of the enum value of which one I want. Since each concrete class is different but implements ICustomer, I should be able to return an instance that implements ICustomer. However, I'm not exactly sure how to do it in the factory class as my return type is ICustomer.</p> http://stackoverflow.com/questions/484624/createuserwizard-how-to-verify-data-against-db-during-wizard 0 CreateUserWizard- How to verify data against db during wizard? asp316 2009-01-27T18:32:53Z 2009-11-08T14:00:03Z <p>I'm using the asp.net CreateUserWizard control. I've added a WizardStep and need it to verify 3 datapoints against our internal database before allowing the user to create an account. However, when I try to wire the next button click to a codebehind method to check the data, the event never fires in the codebehind.</p> <p>Below is the code on the Next button-</p> <pre><code>&lt;asp:Button ID="StepNextButton" runat="server" BackColor="#FFFBFF" BorderColor="#CCCCCC" BorderStyle="Solid" BorderWidth="1px" CommandName="MoveNext" Font-Names="Verdana" ForeColor="#284775" Text="Next" onclick="StepNextButton_Click1" /&gt; </code></pre> <p>Should it be wired this way? Does the Wizard give you a way to determine which step you're on so you're not checking for every step?</p> <p>One more question. In order to effectively take advantage of Forms Based Auth and tracking if the user is curently logged in or not, it appears to me that all of the pages need to be wrapped in a LoginView control so if their session expires, they view the 'Not logged in' template view? Correct?</p> http://stackoverflow.com/questions/912519/issues-exporting-datagridview-to-excel 0 Issues exporting datagridview to excel asp316 2009-05-26T20:18:29Z 2009-11-01T15:00:03Z <p>Hi all- I'm trying to do an export of a datagrid to excel. For some reason, known working methods aren't working. The export is done from a user control. My page (default.aspx) uses a master page and the page has a user control that actually has the datagrid I'm trying to export. </p> <p>Here's my code on the ascx:</p> <pre><code>Response.ClearContent(); Response.AddHeader("content-disposition", "attachment; filename=MyExcelFile.xls"); Response.ContentType = "application/excel"; StringWriter sw = new StringWriter(); HtmlTextWriter htw = new HtmlTextWriter(sw); _gvwResults.RenderControl(htw); Response.Write(sw.ToString()); Response.End(); </code></pre> <p>On my default.aspx (page the holds the ascx) is this code:</p> <pre><code>public override void VerifyRenderingInServerForm(Control control) { /* Confirms that an HtmlForm control is rendered for the specified ASP.NET server control at run time. - required to export file */ } </code></pre> <p>Here's the error I receive: Sys.Webforms.pagerequestmanagerparsererrorexception. The message received from the server could ot be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, httpmodules or server trace is enabled.</p> <p>Any ideas? This code should work but it's almost as if the response object is not being cleared. Ideas?</p> http://stackoverflow.com/questions/1637582/what-design-pattern-do-you-use-the-most 4 What design pattern do you use the most? asp316 2009-10-28T14:25:02Z 2009-10-29T16:54:43Z <p>The reason I ask is because many applications, particularly web applications, do things in a similar fashion. Of course, the pattern used varies with the task at hand, perhaps even a combination of patterns. I'm guessing that many of us use a primary pattern for apps that we start out from scratch and I'm wanting to see if there is a commonality. </p> <p>I'm also curious if others are coming to the same conclusion on what patterns they feel comfortable with and which ones work well in the test of time.</p> <p><strong>Edit</strong>: Many of the responses so far are architectural patterns. I'm also really interested in creational design patterns.</p> http://stackoverflow.com/questions/1601292/linqtosql-giving-specified-cast-is-not-valid 0 LinqToSql giving 'Specified cast is not valid' asp316 2009-10-21T14:41:04Z 2009-10-22T10:10:05Z <p>Hi- I'm running a stored procedure through L2S and it's returning 'Specified cast is not valid'. The stored proc is returning data when ran manually and when I step thru it, everything is fine until it tries to create the row object in "foreach (var row in result)".</p> <pre><code>var q = new db(); var result = q.GetNearbyLocations(latitude, longitude,searchDistance); foreach (var row in result) { var c = new Clinic() { Name = row.CLINIC_NAME.Trim(), Address1 = row.DRADR1.Trim()... </code></pre> <p>Ideas?</p> http://stackoverflow.com/questions/474878/what-reusable-code-should-every-developer-have-in-their-toolbox 8 What reusable code should every developer have in their toolbox? asp316 2009-01-23T22:30:19Z 2009-10-09T12:48:32Z <p>I'm trying to build up a library of reusable code to use from project to project. As I write code snippets and components, I'm trying to decide which libraries I will get the most use out of long term VS will I really use this again?</p> <p>What code or components do you reuse that should every developer have?</p> <p>I'm primarily interested in .net web and winforms.</p> http://stackoverflow.com/questions/731591/anyone-translate-a-x12-271-healthcare-response 2 Anyone translate a X12 271 Healthcare response asp316 2009-04-08T20:03:27Z 2009-09-30T19:55:23Z <p>Hi all- I'm looking for C# code that translates a 271 health care eligibility benefit response to a more usable format so I can display certain segments and values into a datagridview. I'm looking for code that I can use to break this thing apart as it's not really difficult, just very tedious and was wondering if anybody else has done this and is willing to share.</p> <p>Thanks!!</p> http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/484539#484539 0 Answer by asp316 for What dead programming languages do you know? asp316 2009-01-27T18:10:25Z 2009-09-13T22:53:11Z <p>Assembler for the Motorola 6800.</p> <p>BASIC... but really, who doesn't know BASIC.</p> http://stackoverflow.com/questions/1397120/crystal-reports-in-visual-studio-can-margins-be-dynamically-changed 0 Crystal Reports in Visual Studio - Can margins be dynamically changed? asp316 2009-09-09T01:15:46Z 2009-09-09T21:07:26Z <p>I have a report where the first page has a certain top and bottom margin. Every page after that will have a different margin from the first. Is there a way to do this in Crystal Reports in Visual Studio 2008?</p> http://stackoverflow.com/questions/1392070/state-and-federal-representatives-by-zip/1392086#1392086 0 Answer by asp316 for state and federal representatives by zip asp316 2009-09-08T05:10:31Z 2009-09-08T05:10:31Z <p>We used a feed from <a href="http://www.stateside.com/" rel="nofollow">Stateside</a> that gave representatives and their information. You may want to look there.</p> http://stackoverflow.com/questions/1307790/how-to-improve-your-reading-and-understanding-of-code/1322494#1322494 1 Answer by asp316 for How to improve your reading and understanding of code? asp316 2009-08-24T13:41:12Z 2009-08-24T13:41:12Z <p>2 things in particular</p> <p><strong>Refactor</strong> When you see code that murkys up the waters of your IDE, refactor it so it makes sense so it's easy to ready</p> <p><strong>Comment</strong> Use refactoring to compartmentalize 'how' but use your commenting to show why.</p> <p>Just like Steve McConnell says in Code Complete 2, follow the Psuedocode Programming Process (in this case, after the code is written). It will help you and any future developers read the code.</p> http://stackoverflow.com/questions/1320150/how-to-open-and-run-this-website-in-vs-2008/1320201#1320201 1 Answer by asp316 for How to open and run this website in VS 2008? asp316 2009-08-24T02:20:47Z 2009-08-24T02:20:47Z <p>You don't necessarily need a solution file. Did you do what was in the 'Setup instructions.txt'? Looks to me it wants you to add it to an existing installation of IIS. Follow the steps in this file. From there, you can do an 'Open > Web Site' from VS. Select the web (you will probably need to config it as an application) and you can debug it from there.</p> <p>Don't forget to update the common/ado/connection_open.asp as referenced in the setup instructions.</p> http://stackoverflow.com/questions/1300557/windows-form-controls-and-linq-what-should-i-return/1300652#1300652 1 Answer by asp316 for Windows Form Controls and LINQ; What should I return? asp316 2009-08-19T15:21:08Z 2009-08-19T15:21:08Z <p>I prefer the Business Logic to return an instance of an object, such as Car, ICar or List(Car) Let the DAL populate the object for you. This way you maintain a clear separation between Data and UI.</p> http://stackoverflow.com/questions/1278248/interesting-project-ideas-for-decent-dev-wanting-to-learn-more-asp-net/1278374#1278374 1 Answer by asp316 for Interesting Project Ideas for Decent Dev Wanting to Learn More Asp.Net asp316 2009-08-14T14:59:31Z 2009-08-14T14:59:31Z <p>I've always wanted to write an application that helps me find stuff I'm looking to buy from sites like craigslist, ebay or the local paper web site. I wrote one originally but it was a bit kludge and could not support multiple users (disappointing when friends asked for a copy). However, since it ran early in the morning, i was always the first responder as my little app 'read the paper' for me.</p> <p>Would be cool if you could register for the site, add keywords in your wishlist, add site pages you want to scan and an email address to send the results to.</p> http://stackoverflow.com/questions/1265259/sp-taking-15-minutes-but-the-same-query-when-executed-returns-results-in-1-2-minu/1266343#1266343 0 Answer by asp316 for SP taking 15 minutes but the same query when executed returns results in 1-2 minutes asp316 2009-08-12T14:00:33Z 2009-08-12T14:00:33Z <p>I usually start troubleshooting issues like that by using "print getdate() + ' - step '". This helps me narrow down what's taking the most time. You can compare from where you run it from query analyzer and narrow down where the problem is at.</p> http://stackoverflow.com/questions/1246058/senior-programming-guru-who-cant-program-should-i-find-a-different-career/1246558#1246558 27 Answer by asp316 for Senior programming 'guru' who can't program - should I find a different career? asp316 2009-08-07T19:28:42Z 2009-08-08T23:32:30Z <p>It sounds to me like you've primarily worked on code developed by others. Very easy practice to fall in as it's a comfort zone. The other coders you talk about probably worked more with software design. It takes time to find your own 'brand' when designing software and you just need to find yours.</p> <p>My suggestions: </p> <ol> <li><p>LEARN to design software. Ideally, learning to design would be the best, first step, then learn a language to fit the design. However, many of us learn the language first THEN come up with the solution. This presents the PROBLEM of 'when all you have is a hammer' mentality, which shuns creativity and language independance.</p></li> <li><p>Buy a copy of <a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">CODE COMPLETE</a> and/or <a href="http://rads.stackoverflow.com/amzn/click/0596007124" rel="nofollow">Head First Design Patterns</a> if you haven't already to get your creative juices going. Chances are, you learned a language(s) without learning to design. It's a common theme. Don't be discouraged. It's a hurdle you'll have to eventually jump over. We all have/had the same hurdle.</p></li> <li><p>Go home, spend some time and design a piece of software you need, for fun. Put the keyboard aside and design it. Take some time and lay the whole thing out. Enjoy it!</p></li> <li><p>If you still feel you just can't do it, as others have said, sounds like you have an excellent opportunity for tester or software support, which are both very challenging fields and you're already one foot up on them.</p></li> </ol> http://stackoverflow.com/questions/454082/how-to-create-a-columnar-report-in-visual-studio-2008-crystal-reports 0 How to create a columnar report in Visual Studio 2008 - Crystal Reports asp316 2009-01-17T21:23:51Z 2009-07-31T20:01:59Z <p>Hi, I'm trying to summarize data in a crystal report. I'd like to create a columnar view of data in crystal but am not sure how to do it. I was wanting to use a crosstab but when I try to insert, the control never appears. I create a crosstab report but when done, it comes to a blank report. I want it to be like <a href="http://img123.imageshack.us/my.php?image=61519307xx5.jpg" rel="nofollow">this</a> except columns would be vehicleCategory and rows would be individual charges</p> <p>1 - Any idea what I'm doing wrong and 2 - is there a better way to do this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1213415/does-anyone-use-subsonic-in-net/1213530#1213530 1 Answer by asp316 for Does anyone use SubSonic in .Net asp316 2009-07-31T16:24:12Z 2009-07-31T16:24:12Z <p>I recommend using the new Linq features built into subsonic 3. It should give you all you need for those types of joins.</p> <p><a href="http://subsonicproject.com/docs/Linq%5FSelect%5FQueries" rel="nofollow">Example</a></p> <p>Otherwise you could use the <a href="http://subsonicproject.com/docs/Simple%5FQuery%5FTool" rel="nofollow">Simple Query Tool.</a></p> http://stackoverflow.com/questions/1210122/how-can-i-return-listmyinterface-in-this-scenario 1 How can I return List<MyInterface> in this scenario asp316 2009-07-31T00:37:25Z 2009-07-31T00:48:49Z <p>Let me start by saying I'm pretty new to using interfaces.</p> <p>I'm writing a method (GetClaimDetails) that will return information about a medical insurance claim. If it is claim type A, it will return an list of the ClaimDetailA class. If claim type B, return list of ClaimDetailB class. Both of these classes share common properties but each have unique properties. The common properties are implemented in an interface.</p> <p>I extracted an interface named IClaimDetail and set both to implement it. When i set the method to return IClaimDetail and have it return an instance of an object that implements IClaimsDetail, I get the compiler message </p> <p>'Cannot implicitly convert type 'System.Collections.Generic.List DentalClaimDetail' to 'System.Collections.Generic.List IClaimDetail'</p> <pre><code> private static List&lt;IClaimDetail&gt; GetClaimDetailsB(string claimNumber, string connectionStringName) { var claimReportRows = new List&lt;DentalClaimDetail&gt;(); ..removed for brevity return claimReportRows; } public class DentalClaimDetail : IClaimDetail { ... } </code></pre> <p>When a method returns an interface, you just return an object the implements the interface. Correct? What am I doing wrong?</p> http://stackoverflow.com/questions/1179433/awesome-asp-net-and-c-tutorials-for-beginner/1179509#1179509 0 Answer by asp316 for Awesome ASP.Net and C# tutorials for beginner asp316 2009-07-24T18:56:05Z 2009-07-24T18:56:05Z <p>Here's another:</p> <p><a href="http://geekswithblogs.net/akshaylamba/archive/2009/06/14/learning-visual-c.aspx" rel="nofollow">Learning Visual C#</a></p> <p>If you're willing to shell out a little, LearnVisualStudio.Net is excellent too.</p> http://stackoverflow.com/questions/1178708/keeping-abreast-with-technology/1178752#1178752 3 Answer by asp316 for Keeping abreast with technology asp316 2009-07-24T16:31:24Z 2009-07-24T16:31:24Z <p>Keep involved in podcasts and blogs. Set aside at least 15 minutes a day to ready them or listen to them. Take their ideas, find which ones apply to you or are interested and add it to your personal development plan to learn them.</p> <p>Here are a few previous posts regarding these:</p> <p><a href="http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there">Podcasts</a></p> <p>OR</p> <p><a href="http://stackoverflow.com/questions/950342/good-c-focused-blogs-and-or-podcasts">c# blogs</a></p> http://stackoverflow.com/questions/1171769/when-should-i-use-stored-procedures/1171888#1171888 2 Answer by asp316 for When should I use stored procedures? asp316 2009-07-23T13:51:08Z 2009-07-23T13:57:34Z <p>I used stored procs in 1 of 3 scenarios:</p> <p><strong>Speed</strong> When speed is of the utmost importance, stored procedures provide an excellent method</p> <p><strong>Complexity</strong> When I'm updating several tables and the code logic might change down the road, I can update the stored proc and avoid a recompile. Stored procedures are an excellent black box method for updating lots of data in a single stroke.</p> <p><strong>Transactions</strong> When I'm working an insert, delete or update that spans multiple tables. I wrap the whole thing in a transaction. If there is an error, it's very easy to roll back the transaction and throw an error to avoid data corruption.</p> <p>The bottom 2 are very do-able in code. However, stored procedures provide an black-box method of working when complex and transaction level operations are important. Otherwise, stick with code level database operations. </p> <p>Security used to be one of the reasons. However, with LINQ and other ORMs out there, code level DAL operations are much more secure than they've been in the past. Stored procs ARE secure but so are ORMs like LINQ.</p> http://stackoverflow.com/questions/1132470/issue-using-list-returned-by-webservice 0 Issue using List returned by webservice asp316 2009-07-15T16:26:27Z 2009-07-15T16:54:42Z <p>Hi- I have a webservice that returns a list of "Clinics" near a certain lat/long. However, in my calling web, I can't compile as an error is occuring on the following code.</p> <pre><code>private static List&lt;Clinic&gt; GetClinicsNearLocation(Coordinate coordinate, int searchDistance) { var wsDental = new ProviderLocation_Dental(); List&lt;Clinic&gt; clinics = wsDental.GetSearchResults( coordinate.Latitude, coordinate.Longitude, searchDistance); return clinics; } </code></pre> <p>The error is "Cannot convert expression type 'com.dev.webservices.Clinic[]' to return type 'System.Collections.Generic.List 'com.dev.services.dev.Clinic'"</p> <p>Any ideas as to why? </p> <p>Here is the web service's method:</p> <pre><code>public List&lt;Clinic&gt; GetSearchResults(string latitude, string longitude, int searchDistance) { var results = Clinic.GetClinicsNearLocation(latitude, longitude, searchDistance); return results; } </code></pre> http://stackoverflow.com/questions/1069845/as400-db2-cross-library-query-problem 0 AS400 / DB2 cross-library query problem asp316 2009-07-01T15:33:46Z 2009-07-01T19:14:29Z <p>Hi - I'm querying an Iseries from ODBC in my app and am trying to perform a query that returns results from 2 tables. I need to join the tables but the tables are in different libraries. I don't want to use library identifiers in my query as my libraries change as I move from dev>qa>prod. However, I am certain that these tables will only be in these libraries and there will be no duplicates in other libraries. Is there a way to do this without specifying the Iseries library?</p> <p>In essense, I want this:</p> <pre><code> select DISTINCT GIDNBR, VSL00100.GRNAME FROM **QACOMMON**.CMPGRID2 CMPGRID2 INNER JOIN **QAVISLIVE**.VSL00100 VSL00100 ON VSL00100.GRNO=CMPGRID2.GIDNBR AND VSL00100.GRSUB=CMPGRID2.GIDSUB AND VSL00100.GRLOC=CMPGRID2.GIDLOC AND VSL00100.GRPOOL=CMPGRID2.GIDPOL </code></pre> <p>to look like this:</p> <pre><code>select DISTINCT GIDNBR, VSL00100.GRNAME FROM CMPGRID2 CMPGRID2 INNER JOIN VSL00100 VSL00100 ON VSL00100.GRNO=CMPGRID2.GIDNBR AND VSL00100.GRSUB=CMPGRID2.GIDSUB AND VSL00100.GRLOC=CMPGRID2.GIDLOC AND VSL00100.GRPOOL=CMPGRID2.GIDPOL </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/1058650/whats-the-best-net-technical-thing-youve-learned-over-the-past-3-years 2 What's the best .Net technical thing you've learned over the past 3 years? [closed] asp316 2009-06-29T14:31:33Z 2009-06-29T15:19:13Z <p>What 1 thing in programming has had the largest payoff that you've learned over the past 3 years. Yes, 3 years is an eternity it IT. I'm trying to decide what to learn next and want to see what you've learned that has the most payoff and why.</p> <p>This could be anything like (but not limited to) coding to an interface, unit testing, TDD, mocking, lambdas, regular expressions, F#, WPF or linq.</p> http://stackoverflow.com/questions/1041275/convert-export-c-datalist-control-html-page-as-a-pdf/1041329#1041329 0 Answer by asp316 for Convert/Export C# datalist control/(html page) as a pdf asp316 2009-06-24T22:26:04Z 2009-06-24T22:26:04Z <p>You could try <a href="http://moustafa-arafa.blogspot.com/2007/03/export-data-list-to-excel.html" rel="nofollow">this</a> and change the content type to PDF.</p> http://stackoverflow.com/questions/1027504/using-regions-in-c-is-considered-bad-practice/1027648#1027648 0 Answer by asp316 for using regions in C# is considered bad practice ? asp316 2009-06-22T14:49:57Z 2009-06-22T14:49:57Z <p>Regions seem to bring a strong debate among developers about hiding bad code and so forth. A simple Ctrl+M,O shows any evil hidden segments of code. No excuses for hiding. I agree with Jared that it's excellent for grouping logical sections of code and, of course, has no performance impact. Use it if you like. Don't if you dislike. nuf said.</p> <p>Personally, I think there are much more fundamental and advanced techniques we should have a more religious opinion on and let the region battle go.</p> http://stackoverflow.com/questions/731591/anyone-translate-a-x12-271-healthcare-response/1024953#1024953 0 Answer by asp316 for Anyone translate a X12 271 Healthcare response asp316 2009-06-21T23:01:02Z 2009-06-21T23:01:02Z <p>Thanks for all of the responses. I ended up writing my own parsing routine that read the file and parsed out each section that I'm after. Works really well.</p> <p>Thanks again for the responses!</p> http://stackoverflow.com/questions/966789/adding-empty-string-to-radcombobox/966844#966844 0 Answer by asp316 for Adding empty string to RadComboBox asp316 2009-06-08T20:30:30Z 2009-06-08T20:30:30Z <p>Is 'AppendDataBoundItems' set to true?</p> http://stackoverflow.com/questions/1725213/how-to-return-an-object-that-implements-an-interface-from-a-method/1725248#1725248 Comment by asp316 on How to return an object that implements an interface from a method asp316 2009-11-12T20:56:23Z 2009-11-12T20:56:23Z Makes sense! Thanks for the help! http://stackoverflow.com/questions/1637582/what-design-pattern-do-you-use-the-most Comment by asp316 on What design pattern do you use the most? asp316 2009-10-28T15:12:08Z 2009-10-28T15:12:08Z Yes, but there are so many, it merits the question http://stackoverflow.com/questions/1637582/what-design-pattern-do-you-use-the-most/1637848#1637848 Comment by asp316 on What design pattern do you use the most? asp316 2009-10-28T15:09:41Z 2009-10-28T15:09:41Z I'm surprised I haven't seen factory pattern. http://stackoverflow.com/questions/1601292/linqtosql-giving-specified-cast-is-not-valid/1606241#1606241 Comment by asp316 on LinqToSql giving 'Specified cast is not valid' asp316 2009-10-22T15:03:39Z 2009-10-22T15:03:39Z The sproc dynamically creates a string variable and executes it. Linq doesn't like this. In order for Linq to read the return types in correctly, I have to comment it out and put in an equivalent sql statement. Somehow this wasn't happening properly as in the designer.cs, the return type was an int, rather that a recordset. I changed the sproc, reimported and change the sproc back to executing the string variable. All is happy now. Thanks All! http://stackoverflow.com/questions/1469518/how-can-i-handle-multiple-row-revisions-in-a-single-table Comment by asp316 on How can I handle multiple row revisions in a single table? asp316 2009-09-24T12:36:01Z 2009-09-24T12:36:01Z All columns are needed for each revision http://stackoverflow.com/questions/1397120/crystal-reports-in-visual-studio-can-margins-be-dynamically-changed/1402113#1402113 Comment by asp316 on Crystal Reports in Visual Studio - Can margins be dynamically changed? asp316 2009-09-16T03:27:57Z 2009-09-16T03:27:57Z Okay, after more research, I need to do this not after every page, but after every 2nd page of every record (not page). If the report has multiple records, every page after the new record needs to unsuppress the header. Ideas please? http://stackoverflow.com/questions/1397120/crystal-reports-in-visual-studio-can-margins-be-dynamically-changed Comment by asp316 on Crystal Reports in Visual Studio - Can margins be dynamically changed? asp316 2009-09-12T18:37:57Z 2009-09-12T18:37:57Z The detail section is continuing onto the next page. The next page is pushing the details section down per the top margin. However, any page after page 1 I need it pushed down from the top margin PLUS a bit more (perhaps an inch. The amount is irrelevant). Hope this explains it a bit better http://stackoverflow.com/questions/1397120/crystal-reports-in-visual-studio-can-margins-be-dynamically-changed Comment by asp316 on Crystal Reports in Visual Studio - Can margins be dynamically changed? asp316 2009-09-09T13:34:32Z 2009-09-09T13:34:32Z Don't need to modify those sections. However, the content I'm trying to push down on page 2+ is in the detail section. http://stackoverflow.com/questions/1320150/how-to-open-and-run-this-website-in-vs-2008/1320213#1320213 Comment by asp316 on How to open and run this website in VS 2008? asp316 2009-08-24T03:03:59Z 2009-08-24T03:03:59Z Shouldn't matter if it's classic or .net, you can still work edit it in VS2k8. http://stackoverflow.com/questions/1231737/what-microprocessor-for-experimentation/1279132#1279132 Comment by asp316 on What microprocessor for experimentation? asp316 2009-08-14T17:42:00Z 2009-08-14T17:42:00Z WOW! That's creepy! And he looks proud of it.... http://stackoverflow.com/questions/1228176/what-are-your-c-commandments/1228372#1228372 Comment by asp316 on What are your C# Commandments? asp316 2009-08-04T21:22:18Z 2009-08-04T21:22:18Z I agree with curly braces. So does StyleCop. http://stackoverflow.com/questions/1069453/using-web-hit-counter-to-track-application-usage-recommendations-wanted/1069628#1069628 Comment by asp316 on Using web hit counter to track application usage, recommendations wanted asp316 2009-08-04T21:20:17Z 2009-08-04T21:20:17Z There still appears to be problems with GA and Firefox. Have you found a way around them? <a href="http://www.google.com/support/forum/p/Google+Analytics/thread?tid=2365a49b9d396ea4&amp;hl=en" rel="nofollow">google.com/support/forum/&hellip;</a> http://stackoverflow.com/questions/1210122/how-can-i-return-listmyinterface-in-this-scenario/1210126#1210126 Comment by asp316 on How can I return List<MyInterface> in this scenario asp316 2009-07-31T14:14:38Z 2009-07-31T14:14:38Z This article is good stuff. Makes my brain hurt but will really shed some light on what's going on here. Thanks Greg! – http://stackoverflow.com/questions/1210122/how-can-i-return-listmyinterface-in-this-scenario/1210126#1210126 Comment by asp316 on How can I return List<MyInterface> in this scenario asp316 2009-07-31T00:42:03Z 2009-07-31T00:42:03Z Wow. easy enough. Thanks!! http://stackoverflow.com/questions/1132470/issue-using-list-returned-by-webservice/1132486#1132486 Comment by asp316 on Issue using List returned by webservice asp316 2009-07-15T16:39:09Z 2009-07-15T16:39:09Z Thanks. Not sure how the web service would return an array as here is the definition: public List&lt;Clinic&gt; GetSearchResults(string latitude, string longitude, int searchDistance) { var results = Clinic.GetClinicsNearLocation(latitude, longitude, searchDistance); return results; } Any reason why it would return an array with the method above?