User Paul Mendoza - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:08:39Z http://stackoverflow.com/feeds/user/29277 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/440156/when-is-net-4-0-and-visual-studio-2010-supposed-to-be-released 20 When is .NET 4.0 and Visual Studio 2010 supposed to be released? Paul Mendoza 2009-01-13T18:22:31Z 2009-11-27T12:19:51Z <p>When is .NET 4.0 and Visual Studio 2010 supposed to be released?</p> http://stackoverflow.com/questions/1793857/how-do-i-loop-through-a-set-of-items-in-a-databound-silverlight-control-such-as-t 0 How do I loop through a set of items in a databound Silverlight control such as the ListBox? Paul Mendoza 2009-11-25T00:08:55Z 2009-11-25T00:54:49Z <p>I have a silverlight ListBox that has it's ItemsSource set. From the C# code behind I want to loop through each ListBox item and change the value of the text and access controls that are in the ListBox ItemTemplate. How would I do that?</p> http://stackoverflow.com/questions/1793550/how-do-i-bind-a-silverlight-itemscontrol-inside-of-a-databound-listbox-itemtempla 1 How do I bind a Silverlight ItemsControl inside of a databound ListBox.ItemTemplate? Paul Mendoza 2009-11-24T23:02:49Z 2009-11-24T23:30:41Z <p>I'm writing a Silverlight application. I want a Listbox that displays the rows vertically. Then for each row there should be a header column on the row and then a horizontal list of panels. I have the layout figured out. My problem is with the data binding.</p> <p>The ListBox is being bound to a collection. Each item in that collection will be a row in the listbox. Each item in the collection has a collection as well which will be what is bound to the ItemsControl ItemsSource inside of each ListBox row.</p> <p>For example</p> <p>[Header][x][y][z] [Header][x2][y2][z2] [Header][x3][y3][z3]</p> <p>What is the binding syntax that I need to be using?</p> <pre><code>&lt;ListBox Name="listRuleSteps" Height="150" Loaded="ListBox_Loaded" ScrollViewer.VerticalScrollBarVisibility="Auto"&gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;Grid&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="150"&gt;&lt;/ColumnDefinition&gt; &lt;ColumnDefinition&gt;&lt;/ColumnDefinition&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;StackPanel Grid.Column="0" Orientation="Vertical" Height="50"&gt; &lt;dataInput:Label Content="{Binding StepID}"&gt;&lt;/dataInput:Label&gt; &lt;/StackPanel&gt; &lt;StackPanel Grid.Column="1" Orientation="Vertical"&gt; &lt;ItemsControl ItemsSource="{Binding SelectedItem.RuleEngineParts, ElementName=listRuleSteps}" &gt; &lt;ItemsControl.ItemsPanel&gt; &lt;ItemsPanelTemplate&gt; &lt;controlToolkit:WrapPanel Orientation="Horizontal" /&gt; &lt;/ItemsPanelTemplate&gt; &lt;/ItemsControl.ItemsPanel&gt; &lt;ItemsControl.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;controlToolkit:WrapPanel Width="100"&gt; &lt;dataInput:Label Content="Text1"&gt;&lt;/dataInput:Label&gt; &lt;/controlToolkit:WrapPanel&gt; &lt;/DataTemplate&gt; &lt;/ItemsControl.ItemTemplate&gt; &lt;/ItemsControl&gt; &lt;/StackPanel&gt; &lt;/Grid&gt; &lt;/DataTemplate&gt; &lt;/ListBox.ItemTemplate&gt; &lt;/ListBox&gt; </code></pre> <p>I think the problem is on this line. I obviously don't want to use the SelectedItem but I'm not sure what to bind the ItemsSource. </p> <pre><code>&lt;ItemsControl ItemsSource="{Binding SelectedItem.RuleEngineParts, ElementName=listRuleSteps}" &gt; </code></pre> <p>If you think I'm totally wrong in the way I'm doing this, please let me know. I'm really new to Silverlight. </p> http://stackoverflow.com/questions/1765597/linq-to-rest-missing-functions-like-count-and-first-how-do-i-add-those-to-my 0 LINQ To Rest missing functions like Count() and First(). How do I add those to my ADO.NET Data Service? Paul Mendoza 2009-11-19T18:40:11Z 2009-11-19T18:46:13Z <p>I have an ADO.NET data service based off of a LINQ-To-SQL class. I can query this ADO.NET service using LINQ to Rest queries which build simple rest statements. But if I want to use other functions that work in LINQ-To-SQL I get an error that the LINQ-To-Rest statement can't be made into a rest query.</p> <p>Example:</p> <pre><code>X.Data.Cust.CustData db = new X.Data.Cust.CustData(new Uri(AppSettings.CustServiceURL)); var custInfo = (from a in db.AdditionalCustomerInformations where a.CustomerInformation.STATE == "NJ" &amp;&amp; a.ElecMeters.First().MtrStatus == "A" select a).Take(5) as DataServiceQuery&lt;X.Data.Cust.AdditionalCustomerInformation&gt;; custInfo.BeginExecute(CallbackForQuery, custInfo); </code></pre> <p>I get an error saying that the First() function doesn't exist. If I wanted to use Count() instead of First I'd get an error as well saying the Count() function doesn't exist.</p> <p>My question is how would I add the First() or Count() functions in this case to the data service?</p> <p>I also don't care about standards compliance. I'm in control of both ends of the communication and I'm the only one consuming this service.</p> <p>Thanks</p> http://stackoverflow.com/questions/1743249/linq-sql-performace-problem-with-a-very-long-list/1743330#1743330 1 Answer by Paul Mendoza for LINQ / SQL Performace problem with a very long list Paul Mendoza 2009-11-16T16:39:23Z 2009-11-16T16:39:23Z <p>The problem you might be having is that the data is being pulled down to your computer and then you're doing the Take(2) on it. The part that probably takes the most time is pulling all of that data to your application. If you want SQL server to do it then make sure you don't access any of the result set record's values until you're done with your query statements.</p> <p>Second, LINQ isn't fast for doing things like sorting and where clauses on large sets of data in application memory. It's much easier to write in LINQ at times but it's always better to do as much sorting and where clauses in the database as opposed to manipulating in memory sets of objects. </p> <p>If you really care about performance in this scenario, don't use LINQ. Just make a loop.</p> <p><a href="http://ox.no/posts/linq-vs-loop-a-performance-test" rel="nofollow">http://ox.no/posts/linq-vs-loop-a-performance-test</a></p> <p>I love using LINQ-To-SQL and LINQ but it's not always the right tool for the job. If you have a lot of data and performance is critical then you don't want to use LINQ for in memory sorting and where statements.</p> http://stackoverflow.com/questions/466429/is-there-a-performance-hit-by-added-nonenforced-foreign-keys-to-a-sql-server-2008 2 Is there a performance hit by added nonenforced foreign keys to a SQL Server 2008 database? Paul Mendoza 2009-01-21T18:27:25Z 2009-11-11T16:24:22Z <p>I'm working with a database and I want to start using LINQ To SQL with it. The database doesn't have any FKs inside of it right now for performance reasons. We are inserting millions of rows at a time to the DB which is why there aren't any FKs.</p> <p>So I'm thinking I'm going to add nonenforced FKs to the database to describe the relationships between the tables for my LINQ To SQL but I don't want there to be a performance hit by adding nonenforced foreign keys.</p> <p>Does anyone know what the effect of this might be? </p> <p>Update: I'm using LINQ-To-SQL for the nonperformance intesive stuff. 80% of the data access is through stored procs on production. But for writing unit tests and other non performance critical tasks, LINQ-To-SQL makes data access really easy.</p> <p>Update: Here is how you add a nonenforced FK</p> <p>ALTER TABLE [dbo].[ACI] WITH NOCHECK ADD CONSTRAINT [FK_ACI_CustomerInformation] FOREIGN KEY([ACIOI]) REFERENCES [dbo].[CustomerInformation] ([ACI_OI]) NOT FOR REPLICATION GO</p> <p>ALTER TABLE [dbo].[ACI] NOCHECK CONSTRAINT [FK_ACI_CustomerInformation] GO</p> http://stackoverflow.com/questions/1004443/can-i-develop-an-iphone-application-that-my-company-can-use-for-internal-employee 7 Can I develop an iPhone application that my company can use for internal employees only? Paul Mendoza 2009-06-16T23:42:48Z 2009-08-31T21:09:50Z <p>I'm interested in developing an iPhone application that would be useful to some of the employees at our company in the field. I'm wondering if that's possible to do and if I still have to through the Apple application approval process for it to work?</p> http://stackoverflow.com/questions/345492/linq-dbml-isnt-letting-me-insert-update-delete-or-select-data-from-any-tables 1 LINQ DBML isn't letting me insert, update, delete or select data from any tables? Why? Paul Mendoza 2008-12-05T23:25:16Z 2009-08-18T22:24:40Z <p>I've created a DBML file for a LINQ to SQL mapping and after dragging all of my tables into the designer surface. In the properties of each table, the "Delete", "Insert" and "Update" are grayed out so they're not editable like they're disabled. I'm not sure why this is. Does anyone know how to make it so that I can insert, update and delete the values inside of those tables?</p> <p>I also know that I have write permission because I've already written to these tables on the same User ID.</p> http://stackoverflow.com/questions/1215072/web-page-is-450kb-is-the-size-of-the-page-making-selenium-xpath-take-30-plus-sec 0 Web page is 450kb. Is the size of the page making selenium XPath take 30 plus seconds to find an element by ID in IE? Paul Mendoza 2009-07-31T21:55:50Z 2009-08-03T05:55:49Z <p>I've been running selenium tests against a site and on one of the main pages that people use most often the page is 450KB. It's a horribly designed page but that's not really the point. When I'm writing my selenium tests, every time the test needs to locate something on the page by an ID, it takes 30 seconds to find the element. As a result, this is making the tests run incredibly slow.</p> <p>I'm using iehta as the browser type. It's also an https site.</p> <p>I'm also using the following for the xpath parser which I've heard is supposed to be faster.</p> <p>selenium.UseXpathLibrary("javascript-xpath");</p> <p>If you can think of anything that would make locating these elements faster, any hints or suggestions please let me know. I'm wondering if I need to configure something differently on my system to make the locating of the elements go faster.</p> http://stackoverflow.com/questions/1214047/how-do-i-set-this-value-for-selenium-selenium-usexpathlibraryjavascript-xpath 0 How do I set this value for selenium selenium.useXpathLibrary("javascript-xpath"); ? Paul Mendoza 2009-07-31T18:15:23Z 2009-07-31T21:47:12Z <p>I'm using selenium and I need to change or make sure my instance of selenium is using this XPath library. Where do I configure the line selenium.useXpathLibrary("javascript-xpath");? Which file is it in order is it in?</p> http://stackoverflow.com/questions/1214047/how-do-i-set-this-value-for-selenium-selenium-usexpathlibraryjavascript-xpath/1215046#1215046 0 Answer by Paul Mendoza for How do I set this value for selenium selenium.useXpathLibrary("javascript-xpath"); ? Paul Mendoza 2009-07-31T21:47:12Z 2009-07-31T21:47:12Z <p>This is a new feature added to Selenium. I just had to get the latest version and then I was able to access it through the .NET API.</p> http://stackoverflow.com/questions/505416/how-do-i-combine-webresource-axd-and-scriptresource-axd-files-so-as-to-result-in 2 How do I combine WebResource.axd and ScriptResource.axd files so as to result in less requests to my ASP.NET server? Paul Mendoza 2009-02-02T23:24:43Z 2009-07-30T19:32:36Z <p>On a site I'm working on, the pages are generating 45 external WebResource.axd and ScriptResource.axd files so the broswers have to request all 45 references. That's a lot of references so I'd like to know if there is a way that all of those requests could be combined into one request? I've seen that the Script Manager is supposed to be able to do something regarding that but I haven't seen any results with the WebResource.axd and ScriptResource.axd files. </p> <p>How would I go about getting these to all combine?</p> http://stackoverflow.com/questions/1189413/how-do-i-write-nunit-unit-tests-without-having-to-surround-them-with-try-catch-st 0 How do I write NUnit unit tests without having to surround them with try catch statements? Paul Mendoza 2009-07-27T17:11:32Z 2009-07-27T17:59:52Z <p>At my company we are writing a bunch of unit tests. What we'd like to have done is for the unit tests to execute and whenever one succeeds or fails at the end of the test we can write that somewhere but we don't want to put that logic in every test. </p> <p>Any idea how we could just write tests without having to surround the content of the test with the try catch logic that we've been using?</p> http://stackoverflow.com/questions/1145896/visual-studio-2008-crashes-when-opening-solutions-in-a-tortisesvn-directory-how 1 Visual Studio 2008 crashes when opening solutions in a TortiseSVN directory? How do I fix this? Paul Mendoza 2009-07-17T22:05:09Z 2009-07-17T23:39:34Z <p>I'm using TortiseSVN for my subversion client on a Windows Server 2008 box and I've got a folder with code checked out into it. </p> <p>When I go to open the solution file that's under source control Visual Studio 2008 starts and before it can even finish loading the solution from what I can tell Visual Studio crashes. I'm trying to open a solution that has VB code in it. It gives no error messages or warnings. It's just gone. </p> <p>I have checked the files and they all seem fine. The solution file seems fine when I look at it with a text editor.</p> <p>This is also Visual Studio 2008 SP1 and I've got all the latest .NET service packs installed.</p> <p>Has anyone else seen this before and know how to fix it?</p> <p><strong>Edit:</strong> I just did an SVN export to a new directory and it still crashes in the exported directory where there is no longer any SVN attached to it.</p> <p>Additionally, it crashes EVERY time I try to open the project that came from SVN.</p> http://stackoverflow.com/questions/1093823/need-a-contenttemplate-tag-on-my-user-control-that-is-accessible-like-the-content 0 Need a ContentTemplate tag on my user control that is accessible like the ContentTemplate tab on the UpdatePanel Paul Mendoza 2009-07-07T17:57:48Z 2009-07-07T17:57:48Z <p>I'm creating a user control and I want to have a templated section on it called ContentTemplate similar to how the UpdatePanel has a ContentTemplate tag. When you use the UpdatePanel and you place controls inside of the ContentTemplate section you can access all of the controls in the ContentTemplate without having to do a FindControl() action for each control. </p> <p>How would I implement this same functionality in my own usercontrol?</p> <p>I have the following code written for the template property in my user control but the controls inside of the ContentTemplate aren't accessibly by the page my control is declared on.</p> <pre><code>Private _contentTemplate As System.Web.UI.ITemplate &lt;PersistenceModeAttribute(PersistenceMode.InnerProperty)&gt; _ &lt;TemplateInstanceAttribute(TemplateInstance.Single)&gt; _ &lt;BrowsableAttribute(False)&gt; _ Public Property ContentTemplate() As System.Web.UI.ITemplate Get Return _contentTemplate End Get Set(ByVal value As ITemplate) _contentTemplate = value End Set End Property </code></pre> http://stackoverflow.com/questions/217231/economy-and-programming-jobs 7 Economy and Programming Jobs Paul Mendoza 2008-10-20T00:46:33Z 2009-06-12T13:02:57Z <p>Programming is considered by many to be a recession proof job but with the recent downturn in the economy and how severe it's been, will this still hold true for this recession?</p> <p>Are people seeing their salaries go down?</p> http://stackoverflow.com/questions/849116/how-do-i-disable-images-and-flash-from-loading-when-using-selenium-with-firefox 0 How do I disable images and Flash from loading when using Selenium with Firefox? Paul Mendoza 2009-05-11T17:23:30Z 2009-06-01T23:21:21Z <p>When running selenium tests through Selenium RC in Firefox 3, the instance of Firefox that launches to run the tests in always displays images even though I've setup Firefox 3 to not display images. </p> <p>Do anyone know how to disable the images from loading?</p> <p>I'd also like to disable flash from loading on the test pages as well.</p> http://stackoverflow.com/questions/745190/what-is-a-good-sql-server-2008-solution-for-handling-massive-writes-so-that-they 1 What is a good SQL Server 2008 solution for handling massive writes so that they don't slow down reads for users of the database? Paul Mendoza 2009-04-13T20:09:57Z 2009-05-11T20:53:02Z <p>We have large SQL Server 2008 databases. Very often we'll have to run massive data imports into the databases that take a couple hours. During that time everyone else's read and small write speeds slow down a ton. </p> <p>I'm looking for a solution where maybe we setup one database server that is used for bulk writing and then two other database servers that are setup to be read and maybe have small writes made to them. The goal is to maintain fast small reads and writes while the bulk changes are running.</p> <p>Does anyone have an idea of a good way to accomplish this using SQL Server 2008?</p> http://stackoverflow.com/questions/822504/how-do-i-rebind-a-combobox-in-winforms 1 How do I rebind a combobox in winforms? Paul Mendoza 2009-05-04T22:52:17Z 2009-05-04T23:21:43Z <p>I have a Winforms application and a combobox has it's datasource set to a DataTable when the form loads. The data displays fine in the combobox. </p> <p>Then after a user clicks a button I want to create a new DataTable and assign that datatable as the datasource for the combobox. </p> <p>The problem is that after setting the datasource to be the new datatable the items in the combobox don't change. Here is the code I'm using.</p> <pre><code>dlCustomer.DataSource = Nothing dlCustomer.DataSource = dtCustomers dlCustomer.DisplayMember = "Name" dlCustomer.Refresh() </code></pre> <p>Does anyone know how to make the correct data be displayed in the combobox the second time I assign the data source for it?</p> http://stackoverflow.com/questions/809556/what-is-a-good-way-using-linq-to-sql-to-update-multiple-tables-through-a-view 0 What is a good way using LINQ To SQL to update multiple tables through a view? Paul Mendoza 2009-04-30T23:20:57Z 2009-05-01T11:23:14Z <p>I have a view and it's composed of two tables. I want to edit a value in each table through the view and save those changes but LINQ is throwing an error about not being able to edit two values on the same view.</p> <p>Does anyone know of a good workaround?</p> <p>Thanks</p> http://stackoverflow.com/questions/485528/how-can-i-make-an-httpwebrequest-to-an-asp-net-web-service-and-appear-that-im-lo 2 How can I make an HTTPWebRequest to an ASP.NET web service and appear that I'm logged into that domain? Paul Mendoza 2009-01-27T22:07:03Z 2009-04-27T22:01:54Z <p>I have a web service that I can only hit if I'm logged into the website that the web service is on. I need to test the service remotely. So I've written some code to create a fake session that is logged into the site in another browser. Then I made the HTTP Web Request and I'm attempting to set a cookie that contains the ASP.NET session ID of that logged in user. But the web service doesn't detect that the web request is a logged in user or session. What do I need to give the web service to convince it this is a valid session?</p> <pre><code>// used on each read operation byte[] buf = new byte[8192]; CookieContainer myContainer = new CookieContainer(); string sessionID = SessionID; myContainer.Add(new Cookie("ASP.NET_SessionId", sessionID, "/", WebsiteUrl)); // prepare the web page we will be asking for HttpWebRequest request = (HttpWebRequest) WebRequest.Create(CreateWebserviceUrl("doneScreenScore")); request.ContentType = "text/xml; charset=utf-8"; request.Method = "POST"; request.Accept = "text/xml"; request.Headers.Add("SOAPAction", "http://detectent.net/doneScreenScore"); request.CookieContainer = myContainer; Stream s = request.GetRequestStream(); string soaprequest = ""; soaprequest += "&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;"; soaprequest += "&lt;soap12:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap12=\"http://www.w3.org/2003/05/soap-envelope\"&gt;"; soaprequest += " &lt;soap12:Body&gt;"; soaprequest += " &lt;doneScreenScore xmlns=\"http://detectent.net/\"&gt;"; soaprequest += " &lt;input1&gt;string&lt;/input1&gt;"; soaprequest += "&lt;input2&gt;string&lt;/input2&gt;"; soaprequest += "&lt;input3&gt;string&lt;/input3&gt;"; soaprequest += "&lt;input4&gt;string&lt;/input4&gt;"; soaprequest += "&lt;/doneScreenScore&gt;"; soaprequest += "&lt;/soap12:Body&gt;"; soaprequest += "&lt;/soap12:Envelope&gt;"; s.Write(System.Text.Encoding.ASCII.GetBytes(soaprequest), 0, soaprequest.Length); s.Close(); // execute the request HttpWebResponse response = (HttpWebResponse) request.GetResponse(); // we will read data via the response stream Stream resStream = response.GetResponseStream(); string responseFromWebServiceCall = ReadResponseStream(resStream); </code></pre> http://stackoverflow.com/questions/769246/xls-to-pdf-conversion-inside-net/769412#769412 1 Answer by Paul Mendoza for XLS to PDF conversion inside .net Paul Mendoza 2009-04-20T18:01:12Z 2009-04-20T18:01:12Z <p>What you need to look at are the PIA libraries for .NET.</p> <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=59daebaa-bed4-4282-a28c-b864d8bfa513&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=59daebaa-bed4-4282-a28c-b864d8bfa513&amp;displaylang=en</a></p> <p>Install Microsoft Excel 2007 on the box you're going to be running. Then install the addon for Office that lets you export PDFs.</p> <p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=4d951911-3e7e-4ae6-b059-a2e79ed87041&amp;displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?FamilyID=4d951911-3e7e-4ae6-b059-a2e79ed87041&amp;displaylang=en</a></p> <p>Once you have all of that installed, you'll need to add a reference to </p> <pre><code>Imports Microsoft.Office.Interop.Excel </code></pre> <p>to your .NET project and class.</p> <p>To start Excel, use the object</p> <pre><code> Dim excel As Microsoft.Office.Interop.Excel.Application excel = New Microsoft.Office.Interop.Excel.Application Dim tmpWorkbooks As Workbooks tmpWorkbooks = excel.Workbooks Dim wb As Microsoft.Office.Interop.Excel.Workbook wb = tmpWorkbooks.Open(pathOfExcelFile) excel.Visible = False wb.Activate() </code></pre> <p>...... Do any editing of the workbook here if you want</p> <p>To export the PDF file, call the function as directed below.</p> <pre><code>wb.ExportAsFixedFormat(XlFixedFormatType.xlTypePDF, fileName, , , , 1, 1, False, ) </code></pre> <p>Finally, make sure to close the workbook and Excel after you finish with the file. </p> http://stackoverflow.com/questions/769366/how-do-you-know-on-nunit-teardown-if-a-test-threw-an-exception-and-what-that-exce 0 How do you know on NUnit TearDown if a test threw an exception and what that exception was? Paul Mendoza 2009-04-20T17:50:44Z 2009-04-20T17:53:37Z <p>I have an bunch of NUnit tests that all inherit from a class that implements the NUnit Teardown function.</p> <p>[TearDown] public void TeardownTest() { }</p> <p>Whenever one of the tests generate an exception it just jumps straight to the TearDown function. How do I know what the exception was that was generated that caused it to go to that exception?</p> http://stackoverflow.com/questions/769182/how-do-i-log-which-tests-failed-and-which-tests-succeeded-with-nunit-by-logging-t 0 How do I log which tests failed and which tests succeeded with NUnit by logging the test name? Paul Mendoza 2009-04-20T17:00:28Z 2009-04-20T17:08:52Z <p>How do I log which tests failed and which tests succeeded with NUnit? I want to be able to write all of the NUnit output to a file after all of the tests run.</p> http://stackoverflow.com/questions/762278/in-the-teardown-event-during-an-nunit-test-how-can-i-get-to-the-attribute-applied 1 In the teardown event during an NUnit test how can I get to the attribute applied to the method that was just tested? Paul Mendoza 2009-04-17T21:30:55Z 2009-04-17T21:39:49Z <p>I have a test method that is run. When the method generates an exception I want to know what the name of the test was and the exception content. </p> <p>In the teardown for the test I want to get access to this information. How would I get access to it from the TearDown attributed method?</p> http://stackoverflow.com/questions/738829/what-is-the-filetype-number-for-pdf-in-excel-2007-that-is-needed-to-save-a-file-a 1 What is the FileType number for PDF in Excel 2007 that is needed to save a file as PDF through the API? Paul Mendoza 2009-04-10T20:52:30Z 2009-04-10T22:10:09Z <p>I need to call a function in order to save an Excel workbook. I installed the PDF save addon for Excel 2007 but now I need to know what the number code is for the file format for when I save the excel file.</p> <p>An example of the excel file format numbers can be found here.</p> <p><a href="http://www.dailydoseofexcel.com/archives/2006/10/29/saveas-in-excel-2007/" rel="nofollow">http://www.dailydoseofexcel.com/archives/2006/10/29/saveas-in-excel-2007/</a></p> <p>FileExtStr = ".xlsb": FileFormatNum = 50 FileExtStr = ".xlsx": FileFormatNum = 51 FileExtStr = ".xlsm": FileFormatNum = 52 FileExtStr = ".xls": FileFormatNum = 56 FileExtStr = ".csv": FileFormatNum = 6 FileExtStr = ".txt": FileFormatNum = -4158 FileExtStr = ".prn": FileFormatNum = 36</p> <p>I need the one for the .pdf ending.</p> http://stackoverflow.com/questions/735187/how-do-i-add-linebreaks-to-a-property-in-an-asp-net-control-declaration 1 How do I add linebreaks to a property in an ASP.NET control declaration? Paul Mendoza 2009-04-09T17:35:58Z 2009-04-09T18:43:25Z <p>I have a sql data source and I have a really long string of SQL. I want to put linebreaks in my sql but Visual Studio doesn't seem to like the linebreaks. How would I put in line breaks?</p> <p>Example</p> <pre><code>&lt;asp:SqlDataSource ID="SqlDataSource1" runat="server" ProviderName="System.Data.SqlClient" SelectCommand="select aci.ACIOI, aci.AccountNum, (select count(r.OI) from Report r where aci.ACIOI = r.ACIOI) as ReportCount, ci.Name, aci.BusinessName, ci.[Address] As StreetAddress, ci.Town, ci.Zip, ci.Phone from AdditionalCustomerInformation aci left join CustomerInformation ci on ci.ACI_OI = aci.ACIOI where (select count(r.OI) from Report r where aci.ACIOI = r.ACIOI) &gt;= 1" &gt; &lt;/asp:SqlDataSource&gt; </code></pre> http://stackoverflow.com/questions/552399/how-do-i-control-the-width-of-a-canvas-page-for-a-facebook-application 1 How do I control the width of a canvas page for a Facebook application? Paul Mendoza 2009-02-16T06:18:54Z 2009-03-27T09:21:37Z <p>I'm working on a simple Facebook application and for the canvas page I'm using an iFrame. I need to make the width of the iframe wider to fit my site. Is there a way to control this and what would I need to do to support that?</p> http://stackoverflow.com/questions/672012/is-there-a-way-i-can-tell-a-process-before-it-starts-up-or-after-it-starts-up-whi 1 Is there a way I can tell a process before it starts up or after it starts up which IP address to use on Windows? Paul Mendoza 2009-03-23T02:01:23Z 2009-03-23T02:49:18Z <p>I can program in C# so if there are any .NET classes available to reassigning IP addresses or if there is a command line operation for changing the IP address of a given process, that is what I think I'm looking for.</p> <p>I'm doing some automated browser testing and I want to have requests coming to my site from different IP addresses. My web server has 15 IP addresses assigned to it so I want to have the browser make requests from a different IP address on each request. Or I want to be able to open multiple instance of a browser and have each instance use a different IP. </p> http://stackoverflow.com/questions/672020/simple-crud-generator-for-c/672034#672034 1 Answer by Paul Mendoza for Simple CRUD Generator for C# Paul Mendoza 2009-03-23T02:11:49Z 2009-03-23T02:11:49Z <p>LINQ To SQL is easy and it's built into .NET 3.5 SP1. </p> http://stackoverflow.com/questions/1621774/which-programming-language-is-manageable-by-an-11-year-old-kid/1720069#1720069 Comment by Paul Mendoza on Which programming language is manageable by an 11 year old kid? Paul Mendoza 2009-11-20T07:41:36Z 2009-11-20T07:41:36Z Wow, that's impressive. How do you have time to learn all of those? When did you learn your first programming language? http://stackoverflow.com/questions/276433/do-you-think-its-advantageous-to-switch-to-entity-framework/903727#903727 Comment by Paul Mendoza on Do you think it's advantageous to switch to Entity Framework? Paul Mendoza 2009-11-19T19:17:44Z 2009-11-19T19:17:44Z .NET 4.0 will have a bunch of improvements to LINQ To SQL <a href="http://damieng.com/blog/2009/06/01/linq-to-sql-changes-in-net-40" rel="nofollow">damieng.com/blog/2009/&hellip;</a> http://stackoverflow.com/questions/1743131/must-know-iis-features-for-net-architect-lead/1743164#1743164 Comment by Paul Mendoza on "Must Know" IIS features for .NET Architect/Lead Paul Mendoza 2009-11-16T16:44:40Z 2009-11-16T16:44:40Z You can do background processing fine in IIS. In ASP.NET just start a new background thread, let the page return and the background thread will continue to process until it completes. http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/9004#9004 Comment by Paul Mendoza on Entity Framework vs LINQ to SQL Paul Mendoza 2009-10-14T21:06:12Z 2009-10-14T21:06:12Z You'll also tend to write less lines of code with L2S to accomplish the same thing as you would with EF. No lazy loading in EF means you're always checking if something was loaded or not. http://stackoverflow.com/questions/8676/entity-framework-vs-linq-to-sql/964602#964602 Comment by Paul Mendoza on Entity Framework vs LINQ to SQL Paul Mendoza 2009-10-14T21:01:36Z 2009-10-14T21:01:36Z Until EF 4.0 comes out, EF is lacking and produces worse code than LINQ2SQL does. The lack of lazy loading is a massive burden when developing any EF application. http://stackoverflow.com/questions/738829/what-is-the-filetype-number-for-pdf-in-excel-2007-that-is-needed-to-save-a-file-a/739004#739004 Comment by Paul Mendoza on What is the FileType number for PDF in Excel 2007 that is needed to save a file as PDF through the API? Paul Mendoza 2009-04-10T22:13:36Z 2009-04-10T22:13:36Z This was perfect. Exactly what I was looking for! http://stackoverflow.com/questions/735187/how-do-i-add-linebreaks-to-a-property-in-an-asp-net-control-declaration/735264#735264 Comment by Paul Mendoza on How do I add linebreaks to a property in an ASP.NET control declaration? Paul Mendoza 2009-04-09T17:57:58Z 2009-04-09T17:57:58Z I like the validation gods though. Then I can have it automatically pretty my code if the validation gods are happy in Visual Studio. http://stackoverflow.com/questions/589096/parsing-sql-code-in-c/589108#589108 Comment by Paul Mendoza on Parsing SQL code in C# Paul Mendoza 2009-03-12T19:01:39Z 2009-03-12T19:01:39Z You could write something yourself in a week. I doubt you're worth 12 grand a week. http://stackoverflow.com/questions/612866/web-automation/612889#612889 Comment by Paul Mendoza on Web automation Paul Mendoza 2009-03-05T00:03:17Z 2009-03-05T00:03:17Z Selenium would be hard for programming to do tasks like this. I've done it before but I know selenium fairly well but it's not designed for that sort of stuff. http://stackoverflow.com/questions/538042/what-is-a-good-net-library-for-deconstructing-sql-queries-that-allows-me-to-dete/538205#538205 Comment by Paul Mendoza on What is a good .NET library for deconstructing SQL queries that allows me to determine what table each column originates from? Paul Mendoza 2009-02-11T19:36:11Z 2009-02-11T19:36:11Z Not a perfect solution but it seems the simplest. http://stackoverflow.com/questions/377008/recommend-asp-net-3-5-sp1-hosting-providers/379072#379072 Comment by Paul Mendoza on Recommend ASP.NET 3.5 SP1 Hosting Providers Paul Mendoza 2009-02-10T22:41:04Z 2009-02-10T22:41:04Z I was with Discountasp.net for a long time. They were a great service for me. http://stackoverflow.com/questions/505404/what-are-good-programming-competitions/505423#505423 Comment by Paul Mendoza on What are good programming competitions? Paul Mendoza 2009-02-03T00:37:15Z 2009-02-03T00:37:15Z I'm actually doing Imagine Cup this year although the deadline to enter has already passed. You can start working on your project for next years competition now though. http://stackoverflow.com/questions/191302/does-it-matter-where-you-get-your-cs-degree/191322#191322 Comment by Paul Mendoza on Does it matter where you get your CS degree Paul Mendoza 2009-01-30T17:13:58Z 2009-01-30T17:13:58Z Your comment was just referenced on the stack overflow podcast at the 1 hour mark. http://stackoverflow.com/questions/489026/can-i-use-with-in-tsql-twice-to-filter-a-result-set-like-my-example/489337#489337 Comment by Paul Mendoza on Can I use WITH in TSQL twice to filter a result set like my example? Paul Mendoza 2009-01-28T23:14:46Z 2009-01-28T23:14:46Z That's awesome! This is what I was looking for. http://stackoverflow.com/questions/466429/is-there-a-performance-hit-by-added-nonenforced-foreign-keys-to-a-sql-server-2008 Comment by Paul Mendoza on Is there a performance hit by added nonenforced foreign keys to a SQL Server 2008 database? Paul Mendoza 2009-01-21T19:15:00Z 2009-01-21T19:15:00Z ALTER TABLE [dbo].[ACI] WITH NOCHECK ADD CONSTRAINT [FK_ACI_CustomerInformation] FOREIGN KEY([ACIOI]) REFERENCES [dbo].[CustomerInformation] ([ACI_OI]) NOT FOR REPLICATION GO ALTER TABLE [dbo].[ACI] NOCHECK CONSTRAINT [FK_ACI_CustomerInformation] GO