User Saif Khan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T21:31:51Zhttp://stackoverflow.com/feeds/user/23667http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/294299/asp-net-ajax-errorsys-webforms-pagerequestmanagerservererrorexception-an-unknown0ASP.NET Ajax ErrorSys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the serverSaif Khan2008-11-16T19:57:03Z2009-11-25T07:00:03Z
<p>Hi,
I created an Ajax website in Visual Studio, added a simple page with a textbox and button, when I click the button once everything works, when I click it twice I get the error</p>
<p>Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500</p>
<p>Here is my page</p>
<pre><code><form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" />
</ContentTemplate>
</asp:UpdatePanel>
</div>
</form>
</code></pre>
<pre>
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs)
TextBox1.Text = "aaa"
End Sub
</pre>
<p>Edit ~ I added a second button to the page, outside of the update panel and when I clicked the one inside the update panel and then the one outside of the panel I got the error</p>
<p>Cannot open database "ASPState" requested by the login. The login failed.
Login failed for user 'server\user'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. </p>
<p>Exception Details: System.Data.SqlClient.SqlException: Cannot open database "ASPState" requested by the login. The login failed.
Login failed for user 'server\user'.</p>
<p>Why is this?</p>
<p>Edit ~ To resolve my issue I did</p>
<pre><code><sessionState mode="StateServer"
stateConnectionString="tcpip=localhost:42424"
cookieless="false"
timeout="20"/>
</code></pre>
http://stackoverflow.com/questions/437728/recursive-file-search-in-net4Recursive File Search in .netSaif Khan2009-01-13T01:52:23Z2009-11-19T23:40:33Z
<p>Hi,
I need to search a drive (C:, D: etc) for a partuicular file type (extension like .xml, .csv, .xls). How do I preform a recursive search to loop all directories and inner directories and return the full path of where the file(s) are? or where can I get information on this?</p>
<p>VB.NET or C# </p>
<p>Thanks</p>
<p>Edit ~ I am running into some errors like unable to access system volume access denied etc. Does anyone know where I can see some smaple code on implementing a file search? I just need to search a selected drive and return the full path of the file type for all the files found.</p>
http://stackoverflow.com/questions/1658771/vb5-application-conversion1VB5 Application ConversionSaif Khan2009-11-01T23:26:09Z2009-11-02T00:24:10Z
<p>Hi,
I have a VB5 application written in a foreign language (italian). It uses an access DB which is also in italian. </p>
<p>How can I convert this to english? I am possible going to port this to .NET, but before I do I need to somehow read and understand what I am doing.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1647984/book-recomendation-on-orm0Book recomendation on ORMSaif Khan2009-10-30T04:13:16Z2009-10-30T09:53:39Z
<p>What is a good book(s) on NHibernate in .Net or any other ORM?</p>
http://stackoverflow.com/questions/1363422/amazon-s3-and-cloud-front-client-app-tool0Amazon S3 and Cloud Front Client App toolSaif Khan2009-09-01T16:27:58Z2009-10-28T04:48:59Z
<p>I just started using the AWS S3 and CloudFront. What proper client tools are out there that I can use to manage my account? Like uploading files etc. Yes I am a developer, but, I am pressed for time, I just want to deploy my apps.</p>
<p>I came across this one <a href="http://s3browser.com/" rel="nofollow">S3 Browser</a>. It's almost what I am looking for.</p>
<p>EDIT ~ Is it possible to map a bucket as a windows Drive?</p>
http://stackoverflow.com/questions/733875/is-there-any-place-to-host-your-code-online/736229#7362292Answer by Saif Khan for Is there any place to host your code online?Saif Khan2009-04-09T23:22:59Z2009-10-22T19:12:24Z<p>Google Code <a href="https://www.google.com/accounts/ServiceLogin?service=code&ltmpl=phosting&continue=http%3A%2F%2Fcode.google.com%2Fhosting%2F&followup=http%3A%2F%2Fcode.google.com%2Fhosting%2F" rel="nofollow">link</a>.</p>
http://stackoverflow.com/questions/1597183/conversion-from-string-to-type-date-is-not-valid-error0Conversion from String to type Date is not valid errorSaif Khan2009-10-20T20:42:32Z2009-10-20T20:58:51Z
<p>I have the following date as string "091020". I am using SubSonic as my DAL. When I do</p>
<pre><code>myObject.DateColumn = "091020"
</code></pre>
<p>I get the error "Conversion from type String to Type Date is not valid"</p>
<p>I tried playing with the IFormatProvider and CultureInfo but can't seem to get raid of the error.</p>
<p>What am I missing?</p>
http://stackoverflow.com/questions/1579959/subsonic-2-2-class-generation0SubSonic 2.2 Class GenerationSaif Khan2009-10-16T19:28:21Z2009-10-16T19:28:21Z
<p>Hi,
I am using SubSonic on a project with many tables which were created by a sourcecode generator. I noticed Some classes created by SubSonic were generated without code and have the folowing message</p>
<pre><code>The class...was not generated because ... does not have a primary key.
</code></pre>
<p>Is there any way for me to get the code to be generated without adding keyes to all the tables?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1512459/how-to-build-a-module-or-plugin-based-application0How to build a Module or Plugin Based ApplicationSaif Khan2009-10-03T00:52:18Z2009-10-07T19:52:00Z
<p>Hi,
Where can I find information on building a Module Based or Plugin Based (not sure which si correct) application?</p>
<p>Example - Say I have a productiion application and and I want to add a shipping module. Basically my users can click "Add Module" from my application and select a CAB or Zipped file and my shipping module can then be added to the app.</p>
http://stackoverflow.com/questions/1273485/ssis-derived-column0SSIS Derived Column Saif Khan2009-08-13T17:38:02Z2009-10-01T20:27:48Z
<p>I am not sure if the "Derived Column" transformation is my solution, but here is my issue. I am importing a CSV file and one of the column has data sorrunded by "'" e.g '2009-01-01' instead of 2009-01-01. Can I use the "Derive Column Transformation" to remove the single quotes? What would the expression be?</p>
<p>Solution ~ Used the following expression in the "Derived Column Transformation"</p>
<pre><code>REPLACE(['columnName'],"'","")
</code></pre>
http://stackoverflow.com/questions/193406/sqlite-and-caching-application-block0SQLite and Caching Application BlockSaif Khan2008-10-10T23:56:22Z2009-09-18T11:33:36Z
<p>Hi,
Has anyone used the Caching Application Block with SQLite to persist data?</p>
<p>I'd like to get some details.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1392127/build-sql-file-with-batch-file-not-working0Build .SQL File with Batch file not workingSaif Khan2009-09-08T05:23:53Z2009-09-08T06:38:38Z
<p>I have a folder C:\Scripts. In that folder I have 2 sub folders, Procedures and another Views. In the Procedures folder I have 2 files</p>
<pre><code>proc1.sql
proc2.sql
</code></pre>
<p>in the Views table I have 2 files</p>
<pre><code>view1.sql
view2.sql
</code></pre>
<p>I am trying to combine these files into one .sql file with the following batch file</p>
<pre><code>Copy Procedures\*.sql proc.sql
Copy Views\*.sql view.sql
Copy proc.sql + view.sql Build.sql
</code></pre>
<p>The above is not working. When I run the Build.bat I don't see the Build.sql file. What am I missing?</p>
http://stackoverflow.com/questions/242320/multi-column-listbox0Multi Column ListboxSaif Khan2008-10-28T05:31:42Z2009-09-03T18:09:17Z
<p>Hi,
Is there a way to bind a Generic List to a multicolumn listbox, yes listbox...I know but this is what I am stuck with and can't add a grid or listview.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1371854/rename-a-batch-of-class-objects-in-vs0Rename a batch of Class Objects in VSSaif Khan2009-09-03T07:15:42Z2009-09-03T08:09:19Z
<p>I have a VisualStudio project with a few sub folders like Accounting, Store etc. I need to make a duplicate of the "Accounting" folder and also rename all the Class Objects in that folder. Each object in that folder is prefixed with "Accounting". </p>
<p>Basically I want to name the duplicate "Customer" and change all the prefix of the Class Objects to Customer..</p>
<p>What's the fastest way in doing this?</p>
http://stackoverflow.com/questions/1360159/clickonce-and-amazon-s30ClickOnce and Amazon S3Saif Khan2009-09-01T01:32:47Z2009-09-03T07:03:05Z
<p>Hi,
I testing the deployment of my project using clickonce. Boy was I in for a surprise. I am using quite a few 3 party dlls and my clickonce payload is 24MB. This obviously takes a while to get down to my users, especially those on VPN.</p>
<p>Has anyone used clickonce with Amazon S3? Can this even be done? I am thinking on publishing my deployment to such a service so my users can get a faster download.</p>
<p>Edit ~ My solution <a href="http://iamsaif.com/archive/2009/09/03/clickonce-hosting-with-amazon-s3.aspx" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/662956/most-useful-free-net-libraries/921298#9212981Answer by Saif Khan for Most useful free .NET libraries?Saif Khan2009-05-28T14:58:53Z2009-08-30T13:01:11Z<p><a href="http://devexpress.com" rel="nofollow">DevExpress</a> also has a free set of controls.</p>
http://stackoverflow.com/questions/1348042/background-worker-process-and-connection-timeout0Background Worker Process and Connection TimeoutSaif Khan2009-08-28T16:16:58Z2009-08-28T16:43:25Z
<p>Ok, I was deciding between a thread or BackgroundWorker process and based on the responses from this <a href="http://stackoverflow.com/questions/1343311/background-worker-process-or-thread">thread</a> I decided to go with the BackgroundWorker. Here is the thing though, when I started the worker process it stopped half way with a connection timeout error to the database. This is normal when the process is run directly on the DB server (4-5 mins) as I am talking a lot of invoices here. Anyways, I know I can adjust the connection string timeout, but has anyone run into similar issues? What's the average timeout used in these types of scenario?</p>
<p>I was thinking of creating a separate connection with a different timeout specially for this task. This invoice generating task will be ran by one person.</p>
http://stackoverflow.com/questions/1343311/background-worker-process-or-thread0Background Worker Process or Thread?Saif Khan2009-08-27T19:27:48Z2009-08-27T20:49:26Z
<p>I have a Winform app which lists a batch of invoices in a gridview. The users select the batch and clicks a button, "Generate Invoices". The process takes about 4-5 mins. While this is running I will have a marquee progress bar and would like to disable all buttons. </p>
<p>Should I use a BackgroundWorker Process or create a new thread to run this task?</p>
http://stackoverflow.com/questions/1337154/realign-dropdown-box-after-form-resize0realign dropdown box after form resizeSaif Khan2009-08-26T20:06:56Z2009-08-26T20:20:21Z
<p>I have a winform app. On the menu bar, far right, I placed a dropdown box on top of it. When I resize the form the dropdown box obviously stays in the same position (x,y location). How can I get it to move propotionally to the right when the form is resized. It basically stays on the same Y axis. </p>
<p>I can't use a layout control since it's placed on top of the menu.</p>
http://stackoverflow.com/questions/1304223/c-sounds-in-winforms/1304254#13042540Answer by Saif Khan for C# sounds in winformsSaif Khan2009-08-20T06:11:13Z2009-08-20T06:11:13Z<p>Try this link <a href="http://msdn.microsoft.com/en-us/library/ms173187.aspx" rel="nofollow">MSDN</a> and also <a href="http://stackoverflow.com/questions/35896/how-can-i-play-compressed-sound-files-in-c-in-a-portable-way">here</a> for additional reading.</p>
http://stackoverflow.com/questions/1304073/why-mail-code-is-not-working/1304215#13042150Answer by Saif Khan for Why mail code is not workingSaif Khan2009-08-20T05:56:02Z2009-08-20T06:01:11Z<p>Try this</p>
<pre>
Dim objCDOSYSMail
Dim objCDOSYSCon
Dim Flds
Set objCDOSYSMail = Server.CreateObject("CDO.Message")
Set objCDOSYSCon = Server.CreateObject ("CDO.Configuration")
Set Flds = objCDOSYSCon.Fields
With Flds
.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "any server"
.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1
.Item("http://schemas.microsoft.com/cdo/configuration/sendusername") = "any mail"
.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "any password"
.Update
End With
Set objCDOSYSMail.Configuration = objCDOSYSCon
'Sending The Email
With objCDOSYSMail
.From = "any mail"
.To = "any mailid"
.Subject = "feed back"
.HTMLBody = "my Message"
.Send
End With
'Disposing Objects
Set objCDOSYSMail = Nothing
Set objCDOSYSCon = Nothing
Set Flds = Nothing
</pre>
<p>If you don't get any error, check the error log on the server. Make sure that the server can relay email to the email server (smtpserver). This can be done by performing a quick "TELNET Session" from the webserver to the email server. Some SMTP Servers perform a reverse DNS on the senders domain as well. This might sound stupid, but check the username and password as well. </p>
<blockquote>
<p>NOTE: Your question was voted down because you did not specify clearly your intention. Next time be "SPECIFIC" and not "PACIFIC" (like the big sea). Most of the people hanging out here are either professionals or trying to be, so at least try to be one.</p>
</blockquote>
http://stackoverflow.com/questions/1301606/how-can-i-practice-better-object-oriented-programming/1301738#13017381Answer by Saif Khan for How can I practice better object-oriented programming?Saif Khan2009-08-19T18:19:54Z2009-08-19T18:19:54Z<p>OOP skills comes over time. Reading 1, 2 ...10 books doesn't cut it. Practice writing some code. If you are working in a programming enviornment...that can be helpful. If not try getting into one. Offer to develop some application(s) for free. You have to get your hands dirty. Remember...no application is perfect from the ground up.That's why there is re-factoring.</p>
<p>Also...don't get carried away with the OOP too much...it somes over time. Worry about developing fully functional applications.</p>
http://stackoverflow.com/questions/1291597/i-need-assistance-with-executing-an-ssis-package0I Need Assistance with executing an SSIS packageSaif Khan2009-08-18T03:12:49Z2009-08-18T04:18:34Z
<p>I've tried with this for over 48 hours and no luck. I then create a simple package, one FTP task to download text files. I deployed the package using the option "SQL Server Deployment". I see the package in SSIS but when I try to run from command line with the command</p>
<pre><code>dtexec /ser svrprod05 /sq Package
</code></pre>
<p>I get the error</p>
<pre><code>Microsoft (R) SQL Server Execute Package Utility
Version 9.00.3042.00 for 32-bit
Copyright (C) Microsoft Corp 1984-2005. All rights reserved.
Started: 10:56:39 PM
Could not load package "Package" because of error 0xC0014062.
Description: The LoadFromSQLServer method has encountered OLE DB error code 0x80
004005 (Login timeout expired). The SQL statement that was issued has failed.
Source:
Started: 10:56:39 PM
Finished: 10:56:55 PM
Elapsed: 15.625 seconds
</code></pre>
<p>I tried passing a username and password of the following</p>
<pre><code>1. Local Administrator
2. Domain Administrator
3. Ent Administrator
4. SQL Server SA
</code></pre>
<p>My original objective is mentioned <a href="http://stackoverflow.com/questions/1290153/cant-get-my-ssis-package-to-run">here</a>. I don't know what else to try.</p>
http://stackoverflow.com/questions/1290153/cant-get-my-ssis-package-to-run0Can't get my SSIS package to runSaif Khan2009-08-17T20:12:12Z2009-08-17T20:31:02Z
<p>I created and deployed a package to SQL Server 2005. The package basically downloads a file (.csv) via FTP and extracts the contents to a table. The data is cleaned and then the data is moved to a production table.</p>
<p>After deploying the package, I tried calling it from a simple .NET application</p>
<pre><code> Dim app As New Application
Dim pkg As Package
Try
pkg = app.LoadFromSqlServer("OrderImport", "machine\dataware", "sa", "sapassword", Nothing)
Dim result As DTSExecResult = pkg.Execute()
MsgBox(result.ToString)
Catch ex As Exception
MsgBox(ex.Message)
Finally
app = Nothing
pkg = Nothing
End Try
</code></pre>
<p>and got the message "Failure". I then went to SSIS via the Management Studio and tried to execute the package from there. It's able to download the files via FTP, however, when it reaches the .CSV file at the point to extract teh data it show an error</p>
<pre><code>The system cannot find the file specified
ERROR: Cannot open the datafile filename.csv
</code></pre>
<p>What else can I look at? I want to be able to execute the package with SQL Server user accounts, if possible.</p>
<p>At the package level I have </p>
<pre><code>ProtectionLevel = EncryptSensitiveWithUserKey
PackagePassword = [BLANK]
</code></pre>
<p>One more thing - how do I log these errors to a file?</p>
http://stackoverflow.com/questions/1289084/missing-namespace-assistance0Missing Namespace AssistanceSaif Khan2009-08-17T16:43:54Z2009-08-17T16:49:05Z
<p>Hi,
I can't find the following namespace on any of my dev boxes </p>
<pre><code>Microsoft.SqlServer.Dts.Runtime;
</code></pre>
<p>I have Visual Studio Team System 2008 on some machines and Visual Studio 2005 on some. What do I need to install to get this?</p>
http://stackoverflow.com/questions/1274165/which-sql-statement-is-more-efficient-joins-or-exists0Which SQL statement is more efficient joins or existsSaif Khan2009-08-13T19:43:50Z2009-08-13T20:59:54Z
<p>I have 2 tables, orderData and stagingOrderData. I need to see if there are any rows in the stagingOrderData which exists in the orderData so I can delete them from the stagingOrderData table before I import.</p>
<p>Test cases - I tried a join</p>
<pre><code>select * from
dbo.stagingOrderData s
inner join dbo.OrderData o
on s.productid = o.productid
and s.barcode = o.barcode
and s.orderid = o.orderid
</code></pre>
<p>and then and "exists"</p>
<pre><code>select * from
dbo.stagingOrderData s
where exists(dbo.OrderData o
select * from
where o.productid = s.productid
and o.barcode = s.barcode
and o.orderid = s.orderid )
</code></pre>
<p>The statement with the "exists" seems to be much faster.</p>
http://stackoverflow.com/questions/1270385/deploying-an-ssis-package1Deploying an SSIS PackageSaif Khan2009-08-13T06:41:02Z2009-08-13T07:21:20Z
<p>I have a a project with multiple packages under the SSIS_Packages folder. Can i deploy one of those package instead of the project? The documentation <a href="http://msdn.microsoft.com/en-us/library/ms140117.aspx" rel="nofollow">here</a> indicates to use .SSISDeploymentManifest. I don't want to deploy all the packages under the project, just one to SQL Server 2005.</p>
http://stackoverflow.com/questions/1242901/getting-the-index-of-deleted-item-from-bindinglist0Getting the index of deleted item from bindinglistSaif Khan2009-08-07T04:35:36Z2009-08-11T12:11:25Z
<p>Hi,
I am able to get the index of items added to the BindingList. When I try to get the index if the deleted item I get the error</p>
<pre><code>Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index
</code></pre>
<p>Here is my code</p>
<pre><code>Private Sub cmdRemove_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdRemove.Click
For i As Integer = 0 To _assignedSelection.SelectedCount - 1
Dim item As Jurisdiction = CType(_assignedSelection.GetSelectedRow(i), Jurisdiction)
_list.Remove(item)
Next
End Sub
Private Sub list_Change(ByVal sender As Object, ByVal e As ListChangedEventArgs) Handles _list.ListChanged
If (_list.Count > 0) Then
Select Case e.ListChangedType
Case ListChangedType.ItemAdded
_dal.InsertJurisdiction(_list.Item(e.NewIndex))
Case ListChangedType.ItemDeleted
'MsgBox(e.NewIndex.ToString)
_dal.DeleteJurisdiction(_list.Item(e.NewIndex)) <--------HERE
End Select
End If
End Sub
</code></pre>
<p>EDIT: Answers in C# are also welcome....anyone?</p>
http://stackoverflow.com/questions/1050106/sqlhelper-class0SQLHelper ClassSaif Khan2009-06-26T16:46:52Z2009-08-10T19:55:25Z
<p>Hi,
Is there a recent version of the SQLHelper class out there. I've been using one for a few years now and was wondering if there is a new version out there for .NET Framework 2.0 or 3.0. I prefer this on small projects vs Microsoft Data App Block (which I use on larger projects).</p>
<p>I came across this link </p>
<blockquote>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=f63d1f0a-9877-4a7b-88ec-0426b48df275&displaylang=en" rel="nofollow">http://www.microsoft.com/downloads/details.aspx?familyid=f63d1f0a-9877-4a7b-88ec-0426b48df275&displaylang=en</a> </p>
</blockquote>
http://stackoverflow.com/questions/1236512/centralize-report-in-winform-application0centralize report in winform applicationSaif Khan2009-08-06T01:12:55Z2009-08-06T13:01:21Z
<p>I working on a winform app and would like the same reports available to others when the reports are edited or modified. Currently when a report is modified I have to re-deploy the app or copy the report file to a folder. I am looking for an alternative. </p>
<p>Super users of the app have the option to go to design mode and edit the report. Is ther a way I can stream the report changes back to a db?...the report file will be stored in the db and when a user opens the app, the report is copied down. What would some of you smart ones recommend?</p>
http://stackoverflow.com/questions/1647984/book-recomendation-on-ormComment by Saif Khan on Book recomendation on ORMSaif Khan2009-10-30T14:34:45Z2009-10-30T14:34:45ZThanks guys for the recomendations.http://stackoverflow.com/questions/1597183/conversion-from-string-to-type-date-is-not-valid-error/1597198#1597198Comment by Saif Khan on Conversion from String to type Date is not valid errorSaif Khan2009-10-20T20:59:42Z2009-10-20T20:59:42ZIf I have the time as "1422" can I use DateTime.ParseExact to store the time in a System.Date object?http://stackoverflow.com/questions/1597183/conversion-from-string-to-type-date-is-not-valid-error/1597198#1597198Comment by Saif Khan on Conversion from String to type Date is not valid errorSaif Khan2009-10-20T20:53:39Z2009-10-20T20:53:39ZGot it! I was using DateTime.Parsehttp://stackoverflow.com/questions/1597183/conversion-from-string-to-type-date-is-not-valid-error/1597198#1597198Comment by Saif Khan on Conversion from String to type Date is not valid errorSaif Khan2009-10-20T20:52:24Z2009-10-20T20:52:24ZI tried this earlier but got the error Unable to cast object of type 'System.String' to type 'System.IFormatProviderhttp://stackoverflow.com/questions/1371854/rename-a-batch-of-class-objects-in-vs/1371922#1371922Comment by Saif Khan on Rename a batch of Class Objects in VSSaif Khan2009-09-03T15:27:29Z2009-09-03T15:27:29ZWould this be case significant? ...e.g from a to a instead of A to a. The reason is that I also have to go through the file details and also rename some data.http://stackoverflow.com/questions/1371854/rename-a-batch-of-class-objects-in-vs/1372055#1372055Comment by Saif Khan on Rename a batch of Class Objects in VSSaif Khan2009-09-03T15:24:47Z2009-09-03T15:24:47ZI am not the original developer of the app. +1 for the last sentence. It made my day.http://stackoverflow.com/questions/1360159/clickonce-and-amazon-s3Comment by Saif Khan on ClickOnce and Amazon S3Saif Khan2009-09-01T01:56:21Z2009-09-01T01:56:21ZIt's not the .NET framework, it's all the 3rd party components.http://stackoverflow.com/questions/1337154/realign-dropdown-box-after-form-resize/1337224#1337224Comment by Saif Khan on realign dropdown box after form resizeSaif Khan2009-08-26T20:22:55Z2009-08-26T20:22:55ZYep. I was able to do it from the property settings, without code.http://stackoverflow.com/questions/1301520/how-can-people-on-getacoder-com-offer-such-insane-low-pricesComment by Saif Khan on How can people on getacoder.com offer such insane low prices?Saif Khan2009-08-19T18:59:11Z2009-08-19T18:59:11ZDarn straight @Rich Seller, Darn straight. And to add...most of those ridiculous prices I bet are from international developers...mostly juniors...http://stackoverflow.com/questions/1291597/i-need-assistance-with-executing-an-ssis-package/1291784#1291784Comment by Saif Khan on I Need Assistance with executing an SSIS packageSaif Khan2009-08-18T16:37:50Z2009-08-18T16:37:50ZI believe I narrowed it down to...my database is instance based, however when I use the command dtexec /ser svrprod05/instance /sq Package I get teh same error.http://stackoverflow.com/questions/1291597/i-need-assistance-with-executing-an-ssis-package/1291784#1291784Comment by Saif Khan on I Need Assistance with executing an SSIS packageSaif Khan2009-08-18T16:22:46Z2009-08-18T16:22:46ZWhat ProtectionLevel should I use?http://stackoverflow.com/questions/1291597/i-need-assistance-with-executing-an-ssis-packageComment by Saif Khan on I Need Assistance with executing an SSIS packageSaif Khan2009-08-18T03:29:22Z2009-08-18T03:29:22Zcan I re-post the question on server fault without someone flagging this as a cross-post?http://stackoverflow.com/questions/1291597/i-need-assistance-with-executing-an-ssis-packageComment by Saif Khan on I Need Assistance with executing an SSIS packageSaif Khan2009-08-18T03:20:11Z2009-08-18T03:20:11ZIf my question can be answered on server fault, can someone please move it?http://stackoverflow.com/questions/1291597/i-need-assistance-with-executing-an-ssis-packageComment by Saif Khan on I Need Assistance with executing an SSIS packageSaif Khan2009-08-18T03:18:43Z2009-08-18T03:18:43Zisn't SSIS part of programming?http://stackoverflow.com/questions/1291597/i-need-assistance-with-executing-an-ssis-packageComment by Saif Khan on I Need Assistance with executing an SSIS packageSaif Khan2009-08-18T03:16:44Z2009-08-18T03:16:44Zyea...some smart genius thinks lesser of this...wtf