User Salamander2007 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T16:01:15Zhttp://stackoverflow.com/feeds/user/10629http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/660743/what-orm-would-you-recommend/1872653#18726530Answer by Salamander2007 for What ORM would you recommend?Salamander20072009-12-09T09:31:24Z2009-12-09T09:31:24Z<p><a href="http://www.subsonicproject.com/" rel="nofollow">SubSonic</a>. It's free and able to do all the things you've described.</p>
http://stackoverflow.com/questions/1872595/how-bad-are-usernames-and-passwords-stored-in-hidden-form-fields/1872623#18726230Answer by Salamander2007 for How bad are usernames and passwords stored in hidden form fields?Salamander20072009-12-09T09:26:05Z2009-12-09T09:26:05Z<p>Wiretapping, especially if the transport layer is not encrypted</p>
http://stackoverflow.com/questions/1787130/connecting-to-mysql-from-a-c-application/1787204#17872041Answer by Salamander2007 for Connecting to MYSQL from a c# applicationSalamander20072009-11-24T01:14:27Z2009-11-24T01:20:50Z<p>No, you have to also change this line</p>
<pre><code>var command = new SqlCommand();
</code></pre>
<p>to</p>
<pre><code>var command = new con.CreateCommand();
</code></pre>
<p>and of course you have to change any specific T-SQL and MSSQL features to MySQL. Date and time function, stored procedure, and parameter binding(? instead of @) are a few things that you need to closely check.</p>
http://stackoverflow.com/questions/1752494/detect-if-any-key-is-pressed-in-c-not-a-b-but-any/1752609#17526090Answer by Salamander2007 for Detect if any key is pressed in C# (not A, B, but any)Salamander20072009-11-17T23:28:33Z2009-11-17T23:28:33Z<p>See this question : <a href="http://stackoverflow.com/questions/347724/how-can-i-capture-keydown-event-on-a-wpf-page-or-usercontrol-object">Capture KeyDown Event in WPF</a></p>
http://stackoverflow.com/questions/1640970/should-i-start-learning-classic-vb-asp-or-net/1641007#16410071Answer by Salamander2007 for Should I start learning classic VB/ASP or .NET?Salamander20072009-10-29T00:37:12Z2009-10-29T00:37:12Z<p>I'm going to go on a different route and say Learn VB6 and ASP Classic first and then learn ASP.NET. Learning ASP Classic first will teach you all about HTTP, HTML, and session management. You will discover what spaghetti code looks like, and you will learn how hard it is to display tabular data. With paging. Learning ASP Classic first will make easier for you to relate to PHP.</p>
<p>After that, learn ASP.NET and you will appreciate all the good thing it offers. I'd say that it would probably takes 1 month of small project to get yourself comfortable with ASP Classic, and another one or maybe two month to get a good grip on ASP.NET fundamentals.</p>
http://stackoverflow.com/questions/361717/select-current-element-in-jquery0Select current element in jQuerySalamander20072008-12-12T02:33:18Z2009-09-17T11:51:12Z
<p>I have HTML code like this :</p>
<pre><code><div>
<a>Link A1</a>
<a>Link A2</a>
<a>Link A3</a>
</div>
<div>
<a>Link B1</a>
<a>Link B2</a>
<a>Link B3</a>
</div>
</code></pre>
<p>When user click link from above HTML, I want to get jquery object of corresponding <code><a></code> element, and then manipulating it's sibling. I can't think of any way other then creating ID for each <code><a></code> element, and passing that ID to onclick event handler. I really don't want to use ID. </p>
<p>Any suggestion? I'm a newbie in jquery</p>
http://stackoverflow.com/questions/1403762/oracleclient-to-devart-dotconnect-for-oracle/1403858#14038580Answer by Salamander2007 for OracleClient to devart dotConnect for OracleSalamander20072009-09-10T07:39:00Z2009-09-10T07:39:00Z<p>Granted that I've only been using DevArt dotConnect for only about a month, and never do any provider migration, but from what I see, it's going to be a trivial task. </p>
http://stackoverflow.com/questions/1134993/control-another-application-using-c2Control another application using C#Salamander20072009-07-16T01:29:25Z2009-08-18T20:20:59Z
<p>I need to control other application by simulating mouse movement and keyboard input. How do I accomplish this in C#? Is it even possible? </p>
http://stackoverflow.com/questions/1236997/positioning-labels-and-inputs-with-css/1237036#12370360Answer by Salamander2007 for Positioning Labels And Inputs With CSSSalamander20072009-08-06T04:52:57Z2009-08-06T04:52:57Z<p>This works on my machine, tested on IE8 and Firefox (the only browser I care about)</p>
<pre><code>label {
clear:left;
float:left;
margin-right:10px;
text-align:right;
width:100px;
border:solid 1px;
}
input {
float:left;
border:solid 1px;
}
div {
float:left;
border:solid 1px;
}
</code></pre>
<p>And the HTML code : </p>
<pre><code> <label>x</label><input type="text" />
<label>x</label><input type="text" />
<label>x</label><input type="text" />
<label>x</label><input type="text" />
<label>x</label>
<div>
<label>y</label><input type="text" />
<label>y</label><input type="text" />
<label>y</label><input type="text" />
</div>
</code></pre>
http://stackoverflow.com/questions/1210155/session-state-not-retained-over-calls-to-a-page-method/1210198#12101980Answer by Salamander2007 for Session State not Retained over calls to a Page MethodSalamander20072009-07-31T01:06:42Z2009-07-31T01:06:42Z<p>A few things to check :</p>
<p>Are you using WebFarm configuration? there might be a problem when using session in WebFarm configuration.</p>
<p>Have you check your network traffic using tools like Fiddler or FireBug? Is ASP.NET Auth cookie sent during AJAX call?</p>
<p>Can you confirm your session var is valid?</p>
http://stackoverflow.com/questions/1128844/returning-values-inside-a-js-function/1129088#11290885Answer by Salamander2007 for Returning values inside a JS functionSalamander20072009-07-15T02:22:54Z2009-07-15T02:22:54Z<p>Change your function name to something like '<strong>getValue</strong>'.
This code works on my machine :P</p>
<pre><code><html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<script type="text/javascript">
function getvalue(id) {return document.getElementById(id).value;}
</script>
</head>
<body>
<input type="text" id="Text1" />
<input type="button" onclick="alert(getvalue('Text1'))" /> <br />
<input type="text" id="Text2" />
<input type="button" onclick="alert(getvalue('Text2'))" /> <br />
<input type="text" id="Text3" />
<input type="button" onclick="alert(getvalue('Text3'))" /> <br />
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1029926/jquery-selector/1029949#10299491Answer by Salamander2007 for JQuery selectorSalamander20072009-06-22T23:45:28Z2009-06-22T23:45:28Z<p>You're using a descendant operator, which will search all descendants. I imagine that jQuery uses depth first search algorithm in searching the DOM tree. That explains why you get the longest one first. As for why jQuery only returns one node, you're using ID selector, which is supposed to be unique in all DOM node. I would expect jQuery to return after the first match, as there's no point in traversing the rest of the tree.</p>
http://stackoverflow.com/questions/142756/automatically-set-list-item-permission-after-new-item-is-created0Automatically set list item permission, after new item is createdSalamander20072008-09-27T02:08:03Z2009-05-26T06:44:04Z
<p>We have a SharePoint Team Site (WSS 3.0 not MOSS), that includes Tasks list to records every tasks related to a project. Here's the scenario.</p>
<p>Users :</p>
<ul>
<li>List item</li>
<li>Supervisor1</li>
<li>TeamMember1</li>
<li>TeamMember2</li>
<li>TeamMember3</li>
</ul>
<p>How do we set the permission settings so that </p>
<ul>
<li>Every users (Supervisor and team members) can see any tasks.</li>
<li>Supervisors can edit any tasks</li>
<li>Team members can only edit their own tasks (tasks that were assigned to them, or created by them)</li>
</ul>
<p>I was unable to achieve the intended results using standard WSS permission settings, without resorting to manual permission settings on each item in the list. I'm imagining that the automatic solution has to be accomplish using some sort of workflow or trigger.</p>
http://stackoverflow.com/questions/343299/bulk-insert-to-oracle-using-net3Bulk Insert to Oracle using .NETSalamander20072008-12-05T09:24:59Z2009-04-28T12:32:31Z
<p>What is the fastest way to do Bulk insert to Oracle using .NET? I need to transfer about 160K records using .NET to Oracle. Currently, I'm using insert statement and execute it 160K times.It takes about 25 minutes to complete. The source data is stored in a DataTable, as a result of query from another database (MySQL), </p>
<p>Is there any better way to do this?</p>
<p><strong>EDIT</strong> : I'm currently using System.Data.OracleClient, but willing to accept solutions using another provider (ODP.NET, DevArt, etc..)</p>
http://stackoverflow.com/questions/257806/display-active-session-in-sql-server-20051Display active session in SQL Server 2005 Salamander20072008-11-03T02:31:08Z2009-04-23T16:56:57Z
<p>In Oracle, there's a view called V$SESSION that lists all active sessions in database. Is there any similar view in SQL Server 2005?</p>
http://stackoverflow.com/questions/367786/prevent-caching-of-ajax-call4Prevent caching of AJAX callSalamander20072008-12-15T08:44:11Z2009-04-20T18:13:43Z
<p>It looks like that if I load dynamic content using $.get(), the result is cached in browser.
Adding some random string in QueryString seem to solve this issue (I use new Date().toString()), but this feels like a hack. </p>
<p>Is there any other way to achieve this?
Or, if unique string is the only way to achieve this, any suggestions other than new Date() ?</p>
http://stackoverflow.com/questions/587120/good-asp-net-excel-like-grid-control/683830#6838302Answer by Salamander2007 for Good ASP.NET excel-like Grid control?Salamander20072009-03-25T22:49:33Z2009-03-25T22:49:33Z<p>How about <a href="http://www.fpoint.com/netproducts/spreadweb/spread.aspx" rel="nofollow">FarPoint Spread</a>?
I'm in the middle on evaluating FarPoint Spread for ASP.NET, and so far I've been happy with the result. </p>
http://stackoverflow.com/questions/637374/asp-net-datasheet-component0ASP.NET Datasheet ComponentSalamander20072009-03-12T04:32:53Z2009-03-12T04:32:53Z
<p>I need data editing capabilities like the one in Microsoft SharePoint Datasheet View (user can add/edit records excel-like, support copy&paste operations). I understand that SharePoint use ActiveX to do this, however :</p>
<ul>
<li>Is there any commercial/free component that I can use?</li>
<li>Is there anyway I can re-use SharePoint ActiveX on my project?</li>
</ul>
http://stackoverflow.com/questions/212111/convert-wpf-application-to-silverlight5Convert WPF Application to SilverLightSalamander20072008-10-17T13:29:13Z2009-01-22T16:53:00Z
<p>Is it possible to convert an existing WPF Application to SilverLight automatically/with minimal effort?</p>
http://stackoverflow.com/questions/371079/jquery-ui-dialog-and-dopostback/467742#4677420Answer by Salamander2007 for jquery UI Dialog and __DoPostbackSalamander20072009-01-22T01:12:31Z2009-01-22T01:12:31Z<p>Is it a read-only or disabled or hidden textbox? ASP.NET doesn't postback the value if the textbox is readonly, disabed, or hidden.</p>
http://stackoverflow.com/questions/317777/synchronisable-crm-system/441566#4415660Answer by Salamander2007 for Synchronisable CRM SystemSalamander20072009-01-14T01:20:21Z2009-01-14T01:20:21Z<p>Here's my strategy in when I rolls my own synch solution in the past.</p>
<ol>
<li>Limiting the number of change operation that can happened when the system is offline. </li>
<li>Avoid using auto increment integer as primary key as this will leads to a nasty problem. In the past, I've assigned every disconnected client with some unique ID, and uses that ID in conjunction to auto generated number to form a nice and readable primary key (Like XXX-YYYYYYYY). This is easy to do because creating a sequential number is trivial in non concurrent environment.</li>
<li>Keep a transaction log, such as every DML operation that you do during offline can be "replayed" to the server. You can optimized around this log later when your basic synchronization needs has been fulfilled.</li>
<li>You have to make a decision on how to prepare your client application before they go offline. A typical solution is forcing your user to push a button to trigger the application to enter "offline mode". I found this solution to be quite problematic, especially when your user is careless and forgetfull. A quick slap in the head from their managers usually suffice on the early stages, but you can opt to implement more intelligen intelligent solution later.</li>
<li>Build my solution from the simplest operation first, and then work my way up to a more complex scenario. (Single table single record operation, multiple tables multiple records operations, series of operation that must acts as a transaction)</li>
<li>Make a conflict resolutions scenario. Be sure the scenario is approved by your users. </li>
</ol>
<p>Needless to say, it's a painful journey. If you can outsource the pain to another party (like purchasing available CRM solutions), that will be the best.</p>
http://stackoverflow.com/questions/430879/file-locking-read-write-in-asp-net-application0File Locking (Read/Write) in ASP.NET ApplicationSalamander20072009-01-10T11:46:55Z2009-01-12T02:41:11Z
<p>I have two ASP.NET web application. One is responsible for processing some info and <strong>writing to a log file</strong>, and the other application is reponsible for <strong>reading the log</strong> file and displays the information based on user request.</p>
<p>Here's my code for the Writer</p>
<pre><code>public static void WriteLog(String PathToLogFile, String Message)
{
Mutex FileLock = new Mutex(false, "LogFileMutex");
try
{
FileLock.WaitOne();
using (StreamWriter sw = File.AppendText(FilePath))
{
sw.WriteLine(Message);
sw.Close();
}
}
catch (Exception ex)
{
LogUtil.WriteToSystemLog(ex);
}
finally
{
FileLock.ReleaseMutex();
}
}
</code></pre>
<p>And here's my code for the Reader :</p>
<pre><code>private String ReadLog(String PathToLogFile)
{
FileStream fs = new FileStream(
PathToLogFile, FileMode.Open,
FileAccess.Read, FileShare.ReadWrite);
StreamReader Reader = new StreamReader(fs);
return Reader.ReadToEnd();
}
</code></pre>
<p>My question, is the above code enough to prevent locking in a web garden environemnt? </p>
<p><strong>EDIT 1 :</strong> Dirty read is okay.
<strong>EDIT 2 :</strong> Creating Mutex with new Mutex(false, "LogFileMutex"), closing StreamWriter</p>
http://stackoverflow.com/questions/409101/if-im-a-solo-dev-should-i-bother-with-vs-team-system/409174#4091741Answer by Salamander2007 for If I'm a solo dev, should I bother with VS Team System?Salamander20072009-01-03T15:10:40Z2009-01-04T00:21:40Z<p>I'd say that VS Team System is an overkill for single developer sweatshop, but your situation may proves otherwise. Team System is great when you're working on a project where all things are Microsoft, but all the extra features (database, architect, etc) will become useless when you start working with Oracle and MySQL database. Don't put too much stress on the tools, VS Pro is good enough if you want to save money. I'd rather spend more money on extra tools such as third party component and refactoring tools than the shining VS Team System.</p>
<p>But, since you join the BizzSpark program, which I think is really great for startups, I think you should go and try VSTS. You basically pay nothing for the extra features. By the time you need to pay full for the licenses, I think you will gather enough experience on VSTS to decide either to stick with it, or rollback to pro.</p>
http://stackoverflow.com/questions/405478/asp-net-datagrid-html-output-display/405755#4057551Answer by Salamander2007 for ASP.NET Datagrid HTML Output (Display)Salamander20072009-01-02T00:43:40Z2009-01-02T00:43:40Z<p>Here's one quick way to solves your problem without using content template.</p>
<p>First, add <code>RowDataBound</code> event to your GridView.</p>
<pre><code><asp:GridView ID="GridView1" runat="server" onrowdatabound="GridView1_RowDataBound">
</asp:GridView>
</code></pre>
<p>Second, add the code for the event handler using your logic. RowDataBound event will fire for every row, we don't have to use <code>foreach</code>. I'm using C# but you can easily convert it to VB.</p>
<pre><code>protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) {
if (e.Row.RowType == DataControlRowType.DataRow) {
if (e.Row.Cells[4].Text == "0") {
e.Row.Cells[4].Text = "<a href=''> <img src='img/box_icon_edit_pencil1.gif' border='0'> </a>"
} else {
e.Row.Cells[4].Text = "<a href=''> <img src='img/box_icon_edit_pencil2.gif' border='0'> </a>"
}
}
}
</code></pre>
<p>As a side note, you might want to change </p>
<pre><code><a href=''> <img src='img/box_icon_edit_pencil1.gif' border='0'> </a>
<a href=''> <img src='img/box_icon_edit_pencil2.gif' border='0'> </a>
</code></pre>
<p>to</p>
<pre><code><a href="" class="Pencil1"></a>
<a href="" class="Pencil2"></a>
</code></pre>
<p>and set the background image using CSS.</p>
http://stackoverflow.com/questions/405076/how-to-save-a-user-made-html-page/405080#4050801Answer by Salamander2007 for How to save a user made HTML page?Salamander20072009-01-01T15:55:58Z2009-01-01T15:55:58Z<p>Uhhm,.. press the save button? Seriously though, I think you might want to put more information on your question, such as what's system that you're using, etc, etc..</p>
http://stackoverflow.com/questions/383979/dynamically-construct-querystring-behaviour-in-ie-and-ff-chrome0Dynamically construct querystring behaviour in IE and FF / ChromeSalamander20072008-12-21T01:32:03Z2008-12-21T01:51:46Z
<p>This code</p>
<pre><code>function LoadContent(Id) {
alert('Controls/Network/NetworkDetail.aspx?' + rnd() + '&CtlId=' + Id);
$.get('Controls/Network/NetworkDetail.aspx?' + rnd() + '&CtlId=' + Id, function(data) {
$(Id).append(data);
});
$(Id).removeClass("Waiting");
}
</code></pre>
<p>works perfectly in IE7. the alert displayed intended querystring, and NetworkDetail.aspx page can obtain the CtlId using Request.QueryString["CtlId"]</p>
<p>However, using FF3 and Chrome, Request.QueryString["CtlId"] returns null but the alert displayed the querystring correctly (no difference to IE7).</p>
<p>the Id value is usually '#Tab1', or "#Tab2"</p>
<p>Any idea on how to correctly construct querystring? </p>
http://stackoverflow.com/questions/367009/asp-net-organisational-chart/367207#3672070Answer by Salamander2007 for ASP.NET Organisational ChartSalamander20072008-12-15T00:33:17Z2008-12-15T00:33:17Z<p>Maybe <a href="http://research.microsoft.com/en-us/downloads/f1303e46-965f-401a-87c3-34e1331d32c5/default.aspx" rel="nofollow">Microsoft Automatic Graph Layout</a> will solve your problem. I haven't used it yet, so.. no guarantee.</p>
http://stackoverflow.com/questions/352357/microsoft-net-development-series/352372#352372-2Answer by Salamander2007 for Microsoft .NET Development SeriesSalamander20072008-12-09T10:47:43Z2008-12-09T10:47:43Z<p>What?? You can't find it on <a href="http://www.amazon.com/s/ref=nb_ss_gw?url=search-alias%3Daps&field-keywords=Microsoft+.Net+Development+Series&x=13&y=23" rel="nofollow">Amazon</a>? </p>
http://stackoverflow.com/questions/352172/can-a-session-be-falsified/352197#3521972Answer by Salamander2007 for Can a session be falsified?Salamander20072008-12-09T09:14:08Z2008-12-09T09:14:08Z<p>Session can be hijacked. If I remember correctly, Classic ASP only support cookie-based session identifier. If someone were able to steal that cookie (wire-tap) then they can gain the same session as legitimate user.</p>
<p>Should you check Session Object too? that depends. If you can make sure that all the object stored in sessions is "safe" (input has been sanitized), then you can skip session object. If somewhere in your application you get data from unsafe source and put it in Session object, then you must check it as well.</p>
http://stackoverflow.com/questions/351428/have-you-been-committed-to-a-project-that-should-fail/351531#3515315Answer by Salamander2007 for Have you been committed to a project that should FAIL?Salamander20072008-12-09T01:34:14Z2008-12-09T01:34:14Z<p>I agree with <a href="http://stackoverflow.com/questions/351428/have-you-been-committed-to-a-project-that-should-fail#351461">bmatthews68</a>. I've worked with several projects that destined to fail, right from the start, and the recipe is always the same, unrealistic timeline, over excitement on new technology without clear understanding, corporate IT environment, and in my case, typical pointy haired manager that doesn't even know what he wants.</p>
<p>I don't know what's the best way to handle your situation, but here's what I've done.</p>
<ol>
<li><p>No, I did not quit. Too afraid. Too many loved ones depending on me. It's also possible that I'm a coward. And I was young at that time, and I've got too many bills to pay, and the money was good.</p></li>
<li><p>I warned my direct supervisor immediately about the unrealistic timeline. It helps when the one supervising you also knows detailed technical aspects.</p></li>
<li><p>I sets up an intermediate targets, that doesn't comply with all the specs, but realistic and usable enough to be implemented, given the timeline and resources.</p></li>
<li><p>We release it as a V1.0 system, with the promise of V2 will come next. My manager was happy. He got something to show off to his boss, and as far as he's concerned, progress has been made. Of course the V2 never actually happens. We somehow able to weasel out of that project, using another project with higher priorities as a scapegoat.</p></li>
</ol>
<p>The situation maybe different from yours, but hopefully you will learn something from my experience.</p>
http://stackoverflow.com/questions/237006/forgot-sql-server-passwordComment by Salamander2007 on Forgot SQL Server PasswordSalamander20072009-12-21T07:38:08Z2009-12-21T07:38:08ZI think this question belongs to ServerFault.comhttp://stackoverflow.com/questions/1919063/inter-process-communication-on-local-machine-using-socket-in-perl-and-c/1919085#1919085Comment by Salamander2007 on inter-process communication on local machine using socket in perl and c#Salamander20072009-12-17T02:16:10Z2009-12-17T02:16:10ZI'm rooting for the Named Pipeshttp://stackoverflow.com/questions/1899267/monitoring-watching-database-activity-programtically/1899347#1899347Comment by Salamander2007 on Monitoring /Watching database (activity) programticallySalamander20072009-12-14T07:19:49Z2009-12-14T07:19:49ZOr, if it was Oracle, use Database Change Notification : <a href="http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14251/adfns_dcn.htm" rel="nofollow">download.oracle.com/docs/cd/…</a>http://stackoverflow.com/questions/1517942/give-a-background-a-alpha-in-ieComment by Salamander2007 on Give a background a alpha in IESalamander20072009-10-05T06:33:45Z2009-10-05T06:33:45ZI think this question belongs to doctype.comhttp://stackoverflow.com/questions/1400659/c-and-scientific-calculation/1402752#1402752Comment by Salamander2007 on c# and scientific calculationSalamander20072009-09-10T00:13:36Z2009-09-10T00:13:36ZI think you should mark Aziz answer as Accepted Answer.http://stackoverflow.com/questions/830497/how-do-i-shut-off-visual-studio-2008-script-debugging/830516#830516Comment by Salamander2007 on How Do I Shut Off Visual Studio 2008 Script DebuggingSalamander20072009-08-25T02:03:34Z2009-08-25T02:03:34ZThis registry tricks works well for me VSTS 2008 SP1, IE8, Win7 32Bithttp://stackoverflow.com/questions/1210155/session-state-not-retained-over-calls-to-a-page-method/1210198#1210198Comment by Salamander2007 on Session State not Retained over calls to a Page MethodSalamander20072009-07-31T07:14:35Z2009-07-31T07:14:35ZLocate your AJAX HTTP Post request, and examine the header. The cookie is in the header. You have to activate Net panel to be able to inspect traffic.http://stackoverflow.com/questions/50221/multithreading-in-asp-net/50377#50377Comment by Salamander2007 on Multithreading in asp.netSalamander20072009-07-29T09:03:09Z2009-07-29T09:03:09ZYou've seem to be advocating this technique in multiple question on StackOverflow, and I think that it's the way to go for long running process like for example, billing process. Is there any sample code that you can share? or a keyword to binged? http://stackoverflow.com/questions/1134993/control-another-application-using-c/1180670#1180670Comment by Salamander2007 on Control another application using C#Salamander20072009-07-27T03:30:45Z2009-07-27T03:30:45ZmouseAction of what? I think it's better if you create another question and I'll see what I can do to help.http://stackoverflow.com/questions/1162339/script-entire-database-sql-serverComment by Salamander2007 on Script entire database SQL-ServerSalamander20072009-07-22T00:17:39Z2009-07-22T00:17:39ZIsn't this suppose to go to serverfault.com ?http://stackoverflow.com/questions/1136268/which-files-does-not-reduce-its-size-after-compression/1136357#1136357Comment by Salamander2007 on Which files does not reduce its size after compressionSalamander20072009-07-16T10:13:07Z2009-07-16T10:13:07ZNot really. Not all PDF file automatically stores their content in compressed format. But you're right, PDF supports compression. Unless your PDF contains only images, there's a high probability that you could squeeze some extra space using ZIP or RAR http://stackoverflow.com/questions/1134993/control-another-application-using-c/1135005#1135005Comment by Salamander2007 on Control another application using C#Salamander20072009-07-16T01:50:56Z2009-07-16T01:50:56ZWhite seems like a good route. I'll look into that. http://stackoverflow.com/questions/1042618/how-to-create-a-datatable-in-c-and-how-to-add-rows/1042638#1042638Comment by Salamander2007 on How to create a DataTable in c# and how to add rows?Salamander20072009-06-25T07:44:16Z2009-06-25T07:44:16ZDon't forget to call dt.AcceptChanges() in case you use DataView with filter other than CurrentRows.http://stackoverflow.com/questions/1042618/how-to-create-a-datatable-in-c-and-how-to-add-rows/1042638#1042638Comment by Salamander2007 on How to create a DataTable in c# and how to add rows?Salamander20072009-06-25T07:43:04Z2009-06-25T07:43:04ZDataTable class doesn't have AddRow method. You have to do dt.Rows.Add(_ravi); insteadhttp://stackoverflow.com/questions/652476/how-can-i-create-a-thumbnail-from-an-mpg-video-with-c/652912#652912Comment by Salamander2007 on How can I create a thumbnail from an mpg video with C#?Salamander20072009-05-29T06:51:05Z2009-05-29T06:51:05ZThanks for the link to the CodeProject site. I'll try to use it in my project.