User SeaDrive - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T06:28:59Zhttp://stackoverflow.com/feeds/user/19267http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1744259/vpn-troubleshooting-1VPN Troubleshooting [closed]SeaDrive2009-11-16T19:18:56Z2009-11-16T19:18:56Z
<p>I'm having continuing trouble with a SonicWall VPN. Does anyone know where I can get a trouble-shooting protocol that can help me find the problem?</p>
http://stackoverflow.com/questions/372474/crystal-reports-datasource-in-visual-studio0Crystal Reports datasource in Visual StudioSeaDrive2008-12-16T19:51:42Z2009-10-03T12:00:01Z
<p>Using Visual Studio 2005 with default install of Crystal Reports.</p>
<p>When I create a report, Crystal asks for the database, and I give it my development db. In the app, I create a DataTable and pass it to the report, which is then handed to the CR Viewer. At runtime, neither the report object, nor the viewer need to see the db since I have already retrieved the table.</p>
<p>When the app is handed to the users, everything works fine. They cannot see the development db.</p>
<p>Once, in the production office, I created a report at the production site, and instead of creating the Crystal Report by specifying the development db, I gave it the production db. Back in my own office, running in VS, the report tries to connect to the development db, and fails. (It's not visible.)</p>
<p>So, it's not a problem that they can't see my development database, but it is a problem that I can't see the production database. </p>
<p>Questions are: Does this arise because running in VS is different from running the installed app? Why does the report try to connect to the DB anyway? How do I control it?</p>
http://stackoverflow.com/questions/474523/crystal-reports-new-page0Crystal Reports: New PageSeaDrive2009-01-23T21:05:46Z2009-09-16T10:32:19Z
<p>My application prints statements for customers. Naturally, I want each customer's statement to start at the top of a page. How do I make it do that?</p>
<p>In the Section Expert, if I check 'new page before' the first group, it wastes a page at the beginning, and if I check 'new page after' the last group, it wastes a page at the end. I don't mind so much when printing 350 statements, but when I print just one, it's pretty low class as well as wasteful.</p>
<p>This is the 'built in' Crystal Reports in Visual Studio.</p>
http://stackoverflow.com/questions/293142/whats-your-biggest-visual-studio-2008-annoyance/299835#2998350Answer by SeaDrive for What's Your Biggest Visual Studio 2008 Annoyance?SeaDrive2008-11-18T19:25:00Z2009-08-28T13:31:50Z<p>When I moved from VS 2003 to VS 2005, it became much more difficult to chase down object properties in the debugger QuickWatch window. How should I know if it's "base" or "Non-Public" or "Static", and, more to the point, what do I care?</p>
<p>They also buried the code deeper into the folder tree, from "My Documents\Visual Studio Projects\MyApp" to "My Documents\Visual Studio 2005\Projects\MyApp\MyApp". How did that improve my experience?</p>
http://stackoverflow.com/questions/1064462/excel-interop-formatting-footers0Excel Interop: Formatting FootersSeaDrive2009-06-30T15:46:09Z2009-06-30T18:15:01Z
<p>I am creating an Excel Worksheet from C# using Microsoft.Office.Interop.Excel, and I have not been able to get the footers the way the User wants them.</p>
<p>1) How can I put footer text in BOLD?
2) How can I put the page number in the footer? (Putting @"Page @[Page]" in as text does not work.)</p>
<p>Possible? Not Possible?</p>
http://stackoverflow.com/questions/496367/crystal-reports-changes-text-to-lower-case2Crystal Reports changes text to lower case.SeaDrive2009-01-30T17:17:15Z2009-06-12T17:46:12Z
<p>I have text objects on a Crystal Report in Visual Studio with an initial capital. When I print the report, the text is all lower case.</p>
<p>And the reason is?</p>
http://stackoverflow.com/questions/921088/sqldatareader-result-set-cached2SqlDataReader - result set cached?SeaDrive2009-05-28T14:19:42Z2009-05-28T15:11:33Z
<p>When you use a SqlDataReader, is the return set completely determined by the ExecuteReader step, or can you influence what you get by writing to the source table(s) while reading? Here is an example in very rough pseudo code.</p>
<pre><code>sc = new SqlCommand("select * from people order by last, first",db) ;
sdr = sc.ExecuteReader() ;
while (sdr.read())
{
l = (string) sdr["last"] ;
k = (string) sdr["key"] ;
if (l.Equals("Adams"))
{
sc2 = new SqlCommand("update people set last = @nm where key = @key") ;
sc2.Parameters.Add(new SqlParameter("@nm", "Ziegler"));
sc2.Parameters.Add(new SqlParameter("@key", k));
sc2.ExecuteNonQuery() ;
}
}
</code></pre>
<p>I've seen a lot of bad errors in other environments caused by writing to the table you are reading. Here record k gets bumped from the top of the list (Adams) to the bottom (Ziegler). I've assumed (ha!) that SqlDataReader is immune. True? False?</p>
http://stackoverflow.com/questions/814902/creating-sql-server-login-password-problem0Creating Sql Server Login: Password problem [closed]SeaDrive2009-05-02T13:57:37Z2009-05-02T14:24:56Z
<p>We have a SqlServer database that we run using Windows Authorization. I want to set up a server login for a particular user who is remoting in. In the management tool, I enter the user name, password, and confirm the password. Then save. The user is unable to log in.</p>
<p>When I re-open the login, the password appears to have been changed. It's a different number of characters. Since they are obscured, I can not see what they are.</p>
<p>It's not a problem with the management tool. Same result with two different SQL Managers.</p>
<p>What's going on?</p>
http://stackoverflow.com/questions/578357/visual-studio-contextswitchdeadlock4Visual Studio: ContextSwitchDeadlockSeaDrive2009-02-23T16:47:33Z2009-03-04T22:41:06Z
<p>I have been getting an error message that I can't resolve. It originates from Visual Studio or the debugger. I'm not sure whether the ultimate error condition is in VS, the debugger, my program, or the database. </p>
<p>This is a Windows app. Not a web app.</p>
<p>First message from VS is a popup box saying:
"No symbols are loaded for any call stack frame. The source code can not be displayed."
When that is clicked away, I get:
"<strong>ContextSwitchDeadlock was detected</strong>", along with a long message reproduced below.</p>
<p>The error arises in a loop that scans down a DataTable. For each line, it uses a key (HIC #) value from the table as a parameter for a SqlCommand. The command is used to create a SqlDataReader which returns one line. Data are compared. If an error is detected a row is added to a second DataTable.</p>
<p>The error seems to be related to how long the procedure takes to run (i.e. after 60 sec), not how many errors are found. I don't think it's a memory issue. No variables are declared within the loop. The only objects that are created are the SqlDataReaders, and they are in Using structures. Add System.GC.Collect() had no effect.</p>
<p>The db is a SqlServer site on the same laptop.</p>
<p>There are no fancy gizmos or gadgets on the Form.</p>
<p>I am not aware of anything in this proc which is greatly different from what I've done dozens of times before. I have seen the error before, but never on a consistent basis.</p>
<p>Any ideas, anyone?</p>
<p><strong>Full error Text:</strong>
The CLR has been unable to transition from COM context 0x1a0b88 to COM context 0x1a0cf8 for 60 seconds. The thread that owns the destination context/apartment is most likely either doing a non pumping wait or processing a very long running operation without pumping Windows messages. This situation generally has a negative performance impact and may even lead to the application becoming non responsive or memory usage accumulating continually over time. To avoid this problem, all single threaded apartment (STA) threads should use pumping wait primitives (such as CoWaitForMultipleHandles) and routinely pump messages during long running operations.</p>
http://stackoverflow.com/questions/492957/is-form-display-dependent-on-development-machine-in-visual-studio/495832#4958320Answer by SeaDrive for Is form display dependent on development machine in Visual Studio?SeaDrive2009-01-30T15:08:01Z2009-01-30T15:08:01Z<p>Some experimentation reveals that the declared size of a form apparently affects the size of objects in the scale (length and width units per screen inch) of the form when displayed as a maximized MDI child.</p>
<p>I have no idea why it should affect that. </p>
http://stackoverflow.com/questions/492957/is-form-display-dependent-on-development-machine-in-visual-studio0Is form display dependent on development machine in Visual Studio?SeaDrive2009-01-29T19:03:28Z2009-01-30T15:08:01Z
<p>I have a C# Windows application (i.e. not a web app) in Visual Studio. The original development environment was a Dell Latitude D800 with a 1920x1200 pixel screen. Since the large number of pixels made the text very small, I adjusted lots of different default fonts in the name of readability.</p>
<p>I have moved development to new laptop, a Latitude D630 with 1440x900 display. The app was moved by creating a new project on the new machine, and adding the existing objects/files/etc.</p>
<p>THE PROBLEM is that many of my forms are no longer displaying uniformly. Some are now too large so that items on the right are out of the frame, and others are smaller with excess space on the right of the frame. It is as if the value of a 'pixel' is now different from one form to another. These changes persist when the executable is installed on production machines. </p>
<p>Any idea on what happened, and how to restore order? Thanks.</p>
http://stackoverflow.com/questions/492957/is-form-display-dependent-on-development-machine-in-visual-studio/493567#4935670Answer by SeaDrive for Is form display dependent on development machine in Visual Studio?SeaDrive2009-01-29T21:39:57Z2009-01-29T21:39:57Z<p>As best I understand, that would not explain why some forms are affected differently from others.</p>
http://stackoverflow.com/questions/474523/crystal-reports-new-page/480157#4801570Answer by SeaDrive for Crystal Reports: New PageSeaDrive2009-01-26T15:27:40Z2009-01-26T15:27:40Z<p>I tried "keep together" but it still printed an extra page with the page header.</p>
http://stackoverflow.com/questions/451577/mysterious-cosmetic-visual-studio-editor-issue0Mysterious cosmetic Visual Studio Editor issueSeaDrive2009-01-16T19:10:24Z2009-01-21T06:09:44Z
<p>In the Visual Studio code editor, I sometimes have an extraneous mark on the white background. It's a short diagonal slash, one pixel wide. If I scroll up and down, the mark remains in the same place, more or less as if it was a scratch on the screen. </p>
<p>It's sometimes there, and sometimes not. I don't know how to make it appear or disappear. I believe it migrated from one computer to another when I changed machines (separate install of VS). It doesn't seem to interact with content at all.</p>
<p>This is the sort of thing I would not believe possible if I had not seen it. Anyone have any ideas on what could cause it?</p>
http://stackoverflow.com/questions/361838/what-are-some-good-examples-showing-that-i-am-not-the-user/451560#4515601Answer by SeaDrive for What are some good examples showing that "I am not the user"?SeaDrive2009-01-16T19:03:06Z2009-01-16T19:03:06Z<p>What users don't know, they will make up. They often work with an incorrect theory of how an application works. </p>
<p>Especially for data entry, users tend to type much faster than developers which can cause a problem if the program is slow to react.</p>
<p>Story: Once upon a time, before the personal computer, there was timesharing. A timesharing company's customer rep told me that once when he was giving a "how to" class to two or three nice older women, he told them how to stop a program that was running (in case it was started in error or taking to long.) He had one of the students type ^K, and the timesharing terminal responded "Killed!". The lady nearly had a heart attack.</p>
<p>One problem that we have at our company is employees who don't trust the computer. If you computerize a function that they do on paper, they will continue to do it on paper, while entering the results in the computer.</p>
http://stackoverflow.com/questions/377990/elegantly-determine-if-more-than-one-boolean-is-true/379310#3793100Answer by SeaDrive for Elegantly determine if more than one boolean is "true"SeaDrive2008-12-18T21:17:44Z2008-12-18T21:17:44Z<p>I know you specified a 1-line answer, but if have different lines, as per the answer by Martin York, you can put a comment on each line saying what it represents.</p>
http://stackoverflow.com/questions/372354/string-immutability/372642#3726420Answer by SeaDrive for String ImmutabilitySeaDrive2008-12-16T20:44:05Z2008-12-16T20:44:05Z<p>If it's not just in one line,the concatenation of two strings may be accomplished by making the first string into a StringBuffer, doing the concatenation, and returning the result string. </p>
<p>Creating the StringBuffer yourself may seem like overkill, but that's what is going to happen anyway.-</p>
http://stackoverflow.com/questions/372474/crystal-reports-datasource-in-visual-studio/372573#372573-1Answer by SeaDrive for Crystal Reports datasource in Visual StudioSeaDrive2008-12-16T20:28:49Z2008-12-16T20:28:49Z<p>Andy, that's true, but it's more the question than the answer. The report does not actually need to connect to the server (I've handed it a DataTable), So why does it sometimes try to connect, and sometimes not?</p>
http://stackoverflow.com/questions/369702/create-datatable-with-db-table-structure1Create DataTable with DB table structure. SeaDrive2008-12-15T21:05:19Z2008-12-16T19:34:53Z
<p>What is the best way to create a DataTable with the same structure as a table in my SqlServer database? At present, I am using SqlDataAdapter.Fill() with a query that brings back the columns but no rows. That's works fine, but it seems klutzy. </p>
<p>Is there a better way?</p>
http://stackoverflow.com/questions/369702/create-datatable-with-db-table-structure/372411#3724110Answer by SeaDrive for Create DataTable with DB table structure. SeaDrive2008-12-16T19:34:53Z2008-12-16T19:34:53Z<p>Yes, I know what the schema is now, but it may change, and the code should adapt. Besides, who wants to type in specs for 33 fields. If I understand correctly, my solution was of the "where 1 = 0" type. I think that FillSchema should also work, but there are hidden hazards since it wants to enforce the primary key. Since I am reading data that may have errors as part of the validation process, I can't be sure the primary key won't be duplicated. </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/356543/can-i-automatically-increment-the-file-build-version-when-using-visual-studio/360764#3607641Answer by SeaDrive for Can I automatically increment the file build version when using Visual Studio?SeaDrive2008-12-11T20:26:07Z2008-12-11T20:26:07Z<p>As of right now, for my application, </p>
<p>string ver = Application.ProductVersion;</p>
<p>returns </p>
<p>ver = 1.0.3251.27860</p>
<p>The value 3251 is the number of days since 1/1/2000. I use it to put a version creation date on the splash screen of my application. When dealing with a user, I can ask the creation date which is easier to communicate than some long number.</p>
<p>(I'm a one-man dept supporting a small company. This approach may not work for you.)</p>
http://stackoverflow.com/questions/350166/which-is-your-favorite-programming-trivia/350315#3503151Answer by SeaDrive for Which is your favorite programming trivia?SeaDrive2008-12-08T18:01:12Z2008-12-08T18:01:12Z<p>I think the origin of the Oracle DUAL table is pretty trivial, and pretty interesting. See here: <a href="http://stackoverflow.com/questions/73751/what-is-the-dual-table-in-oracle">http://stackoverflow.com/questions/73751/what-is-the-dual-table-in-oracle</a> and scan to the quote from Chuck Weiss.</p>
http://stackoverflow.com/questions/339044/data-not-filtering-before-a-join/342204#3422040Answer by SeaDrive for Data not filtering before a join. SeaDrive2008-12-04T21:46:36Z2008-12-04T21:46:36Z<p>The obvious thing is to force the order of comparison, perhaps by getting then name from a view with only numeric Employee_IDs, rather than the full Workers table.</p>
http://stackoverflow.com/questions/340167/what-language-should-i-learn-to-give-me-something-very-different-from-c/342108#3421080Answer by SeaDrive for What language should I learn to give me something very different from C#?SeaDrive2008-12-04T21:15:27Z2008-12-04T21:15:27Z<p>ML (<a href="http://www.smlnj.org/" rel="nofollow">http://www.smlnj.org/</a>) </p>
<p>For pure recreation, perhaps LOGO(<a href="http://en.wikipedia.org/wiki/Logo_" rel="nofollow">http://en.wikipedia.org/wiki/Logo_</a>(programming_language)). </p>
<p>I suppose it's too late for COMAL(<a href="http://en.wikipedia.org/wiki/COMAL" rel="nofollow">http://en.wikipedia.org/wiki/COMAL</a>)</p>
http://stackoverflow.com/questions/96496/good-times-what-was-your-most-fun-programming-gig-and-why/164717#1647172Answer by SeaDrive for Good times: What was your most fun programming gig and why?SeaDrive2008-10-02T21:37:22Z2008-12-01T16:29:14Z<p>Our first computer was Commodore 64. It was to be unveiled to the family at Christmas but there was zilch software. For the month of December, my office was filled with strange noises over the lunch hour as I wrote a program that would play music entered as BASIC data statements. On Xmas day, it played "I Love Trash", and a number of other things.</p>
http://stackoverflow.com/questions/253925/what-is-the-correct-way-to-deal-with-procedures-that-take-a-long-time-to-comple/254758#2547581Answer by SeaDrive for What is the correct way to deal with procedures that take a "long time" to complete?SeaDrive2008-10-31T19:59:58Z2008-12-01T16:27:58Z<p>I use RunWorker and ProgressBar when creating long files.</p>
<p>One trick I use is to find a proxy the length of the file to use when setting up the ProgressBar. For example, the ProgressBar may be based on the number lines in the file the last time the function was run (kept in a long file, perhaps). The ProgressBar, or similar, does not have to be precise.</p>
http://stackoverflow.com/questions/299231/datagridview-dataset-update1DataGridView/DataSet updateSeaDrive2008-11-18T16:15:26Z2008-11-18T17:06:40Z
<p>I'm having trouble saving a new row in the DataGridView back to the database. Briefly,</p>
<p>1) I use a SqlDataAdapter to fill a DataTable in a DataSet.</p>
<p>2) The DataTable is the DataSource for a Grid View.</p>
<p>3) If the user clicks on the blank "new row" at the bottom of the DataGridView, I capture the new, empty row of in the RowEnter event and populate it with data. The data appears in the DataGridView.</p>
<p>4) When I call Update on the SqlDataAdapter, the new data disappears and is not saved to the database.</p>
<p>Between steps 3 & 4 I have tried DataGrid.EndEdit, DataSet.AcceptChanges, BindingContext [...].EndCurrentEdit and maybe some other things without success. </p>
<p>How do I propagate the change from the DataGridView back to the DataSet?</p>
<p>And, if I may be permitted a brief whine, why is it so hard to find a simple example of such an obvious thing?</p>
http://stackoverflow.com/questions/299231/datagridview-dataset-update/299269#2992690Answer by SeaDrive for DataGridView/DataSet updateSeaDrive2008-11-18T16:28:48Z2008-11-18T16:28:48Z<p>I have success with the approach here:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/fbk67b6z.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/fbk67b6z.aspx</a></p>
<p>I still think it's too hard to find the answers in the documentation, though.</p>
http://stackoverflow.com/questions/282226/parsing-time-without-date-in-a-textbox/282268#2822680Answer by SeaDrive for Parsing time without date in a TextBoxSeaDrive2008-11-11T21:54:55Z2008-11-11T21:54:55Z<p>You may be able to use the validating or validated event to capture the text and add the 'm'.</p>
http://stackoverflow.com/questions/258793/how-to-parse-a-month-name-string-to-an-integer-for-comparison-in-c/259275#2592751Answer by SeaDrive for How to parse a month name (string) to an integer for comparison in C#?SeaDrive2008-11-03T16:58:59Z2008-11-03T16:58:59Z<p>IMHO, this is a great example of one of the conundrums of programming. By taking the time to post here, you have spent several times the minute or so it would have taken to write the simple conversion function from scratch. On the other hand, by doing it yourself and showing that you did not know you could use the built in parsing function, you would leave yourself open to criticism. Damned if you do, and damned if you don't.</p>
<p>The lesson is: don't take criticism over trivialities too seriously.</p>
http://stackoverflow.com/questions/1179348/how-do-i-select-the-rows-of-a-table-that-dont-match-another-table-in-sql/1179376#1179376Comment by SeaDrive on How do I select the rows of a table that don't match another table in SQL?SeaDrive2009-07-24T19:35:41Z2009-07-24T19:35:41ZBingo. Some of the other suggestions will work for a simple situation, but this is the technique to remember for complex cases.http://stackoverflow.com/questions/977484/c-decimal-data-type/977514#977514Comment by SeaDrive on C# Decimal Data TypeSeaDrive2009-07-01T20:25:01Z2009-07-01T20:25:01ZI suppose there is some important reason, but it irritates me that you get a compile-time error if you leave the m out of the literal. It's not as if it's ambiguous.http://stackoverflow.com/questions/1064462/excel-interop-formatting-footers/1064506#1064506Comment by SeaDrive on Excel Interop: Formatting FootersSeaDrive2009-06-30T16:50:10Z2009-06-30T16:50:10ZWorks fine. Following &B does not seem to be required, per Concerned's answer below. Thanks guys.http://stackoverflow.com/questions/921088/sqldatareader-result-set-cached/921105#921105Comment by SeaDrive on SqlDataReader - result set cached?SeaDrive2009-05-28T15:54:06Z2009-05-28T15:54:06ZMy actual implementation worked fine as best I can tell. It certainly updated the records so the table was not locked, but I did not change a field that would affect the sort order.http://stackoverflow.com/questions/921088/sqldatareader-result-set-cached/921123#921123Comment by SeaDrive on SqlDataReader - result set cached?SeaDrive2009-05-28T15:48:55Z2009-05-28T15:48:55ZI did use a separate database connection.http://stackoverflow.com/questions/814902/creating-sql-server-login-password-problem/814930#814930Comment by SeaDrive on Creating Sql Server Login: Password problemSeaDrive2009-05-02T14:37:26Z2009-05-02T14:37:26ZThanks for the hint about the number of dots. That led me astray.
It pays to read error messages carefully. The login was being rejected because it did not have rights on the default database, not because the login/pw was bad.
Thanks for the help.http://stackoverflow.com/questions/578357/visual-studio-contextswitchdeadlock/578439#578439Comment by SeaDrive on Visual Studio: ContextSwitchDeadlockSeaDrive2009-02-23T17:56:11Z2009-02-23T17:56:11ZRight on! Thanks. I did have to go to Customize and add Exceptions to the Debug menu. Not the most intuitive aspect of the UI. Tools\Customize, then Rearrange Commands (button), then Select Debug from drop-down at upper right, then Add (button). Whew!