User Cyberherbalist - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T11:54:36Zhttp://stackoverflow.com/feeds/user/16964http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1710375/tossing-out-certain-result-rows-in-a-left-join1Tossing out certain result rows in a left joinCyberherbalist2009-11-10T19:02:36Z2009-11-10T19:22:53Z
<p>In DB2, using the following left join</p>
<pre><code>select a.deptno, a.deptname, b.empno
from #dept a
left join #emp b
on a.deptno = b.workdept
</code></pre>
<p>on two tables, gets me a list like:</p>
<pre><code>dpt name emp
----------------------
A01 ACCOUNTING 5001
A02 PAYROLL NULL
A03 OPERATIONS 5003
A03 OPERATIONS 5004
A03 OPERATIONS 5007
A05 MAINTENANCE NULL
</code></pre>
<p>but I want only the first instance of any dpt. Is there a way to code the left join to pull only the first occurrence, so that it would look like:</p>
<pre><code>dpt name emp
----------------------
A01 ACCOUNTING 5001
A02 PAYROLL NULL
A03 OPERATIONS 5003
A05 MAINTENANCE NULL
</code></pre>
http://stackoverflow.com/questions/123189/what-are-the-best-books-for-learning-msbuild4What are the best books for learning MSBuild?Cyberherbalist2008-09-23T19:22:30Z2009-10-30T08:17:49Z
<p>I am working to redevelop our build/deploy system, and in aid of this I want to get a book that will cover what I need to do.</p>
<p>We will be using MSBuild, followed up by MSDeploy (web app) upon completion.</p>
<p>I have found exactly one book dealing with MSBuild, namely Deploying .NET Applications: <em>Learning MSBuild and ClickOnce (Expert's Voice in .Net),</em> but it seems not to cover ASP.NET. </p>
<p>There may be books out there that don't cover just MSBuild, but which cover MSBuild, too. Which is your favorite</p>
http://stackoverflow.com/questions/1463007/does-anyone-remember-what-the-statement-command-waiton-meant-in-vb30Does anyone remember what the statement/command "WaitOn" meant in VB3?Cyberherbalist2009-09-22T22:37:52Z2009-09-22T23:25:03Z
<p>In the Form_Load event of this ultralegacy app I need to transliterate over to a web app is this command/statement "WaitOn" that occurs right after the On Error GoTo...</p>
<p>Does anyone remember what WaitOn means?</p>
<p>Here's the code snippet:</p>
<pre><code>Dim sCmd As String
Dim iFileHandle As Integer
Dim sFileName As String
Dim i As Integer
Dim sKeyWord As String
Dim sWindowPosition As String
Dim iWindowState As Integer
Dim sSystemId As String
Dim sMetrics() As String
On Error GoTo MainFormLoadErr
WaitOn
ReDim gsFundsUsed(0 To 0)
ReDim gsObjectsUsed(0 To 0)
Set gsActiveSpread = Nothing
.
.
.
MainFormLoadExit:
WaitOff
Close
Exit Sub
MainFormLoadErr:
MsgBox Error$(Err) & " in MainForm Load"
Resume MainFormLoadExit
</code></pre>
<p>There is a corresponding WaitOff down there I just found. I don't think WaitOn is part of a line label.</p>
<p><hr /></p>
<p>As @C-Pound Guru suggested, WaitOn and WaitOff were methods in one of the (many) modules of the program. Not clear from the the names of the subroutines was the fact that their task was to set the mouse pointer to the Wait Cursor, and then return to the default, later.</p>
<pre><code>Sub WaitOn ()
On Error Resume Next
Screen.MousePointer = 11
End Sub
Sub WaitOff ()
On Error Resume Next
Screen.MousePointer = 0
End Sub
</code></pre>
http://stackoverflow.com/questions/1422759/where-can-i-find-vbsql-vbx0Where can I find VBSQL.VBX?Cyberherbalist2009-09-14T17:00:19Z2009-09-14T17:23:03Z
<p>I've been given the task of re-engineering a really old VB3 application. As part of this I have an XP virtual workstation upon which I've installed VB3 Pro, so I can create a running verison of it to help me emulate it, but the VB3 app uses a control called VBSQL.VBX, which didn't come with VB3 Pro, apparently. I've checked Microsoft's site, but there are only seven pages in the search result for VBSQL.VBX, and none of them offers an install.</p>
<p>Does anyone here have any idea where on earth I can obtain VBSQL.VBX?</p>
http://stackoverflow.com/questions/1395580/how-to-determine-size-property-for-stored-procedure-output-parameters-in-c-data/1395719#13957191Answer by Cyberherbalist for How to determine size property for stored procedure output parameters in C# data access layerCyberherbalist2009-09-08T18:58:48Z2009-09-08T18:58:48Z<p>The output parameter in your stored procedure has a data type / size. Use that. </p>
<p>If your SP is like:</p>
<pre><code>create procedure DoThis
@parm1 int
, @parm2 varchar(50) output
as
select @parm2 = (
select breed from dogs
where dogid = @parm1
)
</code></pre>
<p>You know what the output parm is. Call it </p>
<pre><code>public string DoThis(int dogid)
{
SqlCommand cmd = new SqlCommand("DoThis");
cmd.CommandType = CommandType.StoredProcedure;
cmd.Connection = theConnection;
cmd.Parameters.Add(new SqlParameter("@parm1", dogid);
cmd.Parameters["@parm1"].DbType = DbType.Int32;
cmd.Parameters.Add(new SqlParameter("@parm2", DbType.String, 50));
cmd.Parameters["@parm2"].Direction = ParameterDirection.Output;
db.ExecuteNonQuery(cmd);
return (string) cmd.Parameters["@parm2"];
}
</code></pre>
http://stackoverflow.com/questions/1302026/what-does-method-of-object-failed-mean4What does "Method '~' of object '~' failed" mean?Cyberherbalist2009-08-19T19:07:33Z2009-08-20T09:08:54Z
<p>I'm trying to run a legacy VB6 application on my desktop (it doesn't have a user interface, being a command-line app), and when I do, I get a message box saying</p>
<pre><code>Run-time error '4099':
Method '~' of object '~' failed
</code></pre>
<p>This means nothing to me; does anyone have an idea what is going wrong?</p>
http://stackoverflow.com/questions/1267956/passing-command-line-parms-to-vb6-ide-in-console-app2Passing command line parms to VB6 IDE in console appCyberherbalist2009-08-12T18:39:36Z2009-08-12T18:43:00Z
<p>I have a VB6 console app and it uses command line parameters. For debugging, I would like to be able to start it from the IDE and ideally be able to pass it those parameters to see how it normally operates. I realize I could set a breakpoint at the appropraite place and use the Immediate window to set the values outside the command line, and I have used a couple of other workarounds in the past, but is there a way to do this as if I had actually started it as a console app?</p>
http://stackoverflow.com/questions/1267799/how-would-you-interpret-these-dates/1267862#12678621Answer by Cyberherbalist for How would you interpret these dates?Cyberherbalist2009-08-12T18:24:01Z2009-08-12T18:24:01Z<p>In my experience, in American English "this" always means the next immediate occurence of the day. If it is Monday, "this Wednesday" means the day after tomorrow. Typically, if it is Monday, "this Tuesday" is preferentially referred to as "tomorrow" -- I cannot remember anyone ever saying "this Tuesday" on a Monday, unless they thought it was currently Sunday.</p>
<p>If I say "next Wednesday" on a Wednesday, I mean a week from today. If I say "next Wednesday" on a Tuesday, however, I might mean a week from tomorrow, or I might mean tomorrow -- it would depend upon context and is thus rather "squishy". Most Yanks would interpret that as a week from tomorrow. I think. I would, anyway. </p>
http://stackoverflow.com/questions/1266863/correct-string-escaping-for-t-sql-string-literals/1267642#12676421Answer by Cyberherbalist for Correct String Escaping for T-SQL string literalsCyberherbalist2009-08-12T17:43:10Z2009-08-12T17:43:10Z<p>I've run into a similar problem, where I needed to have a IN in my select query, and the number of elements varied at run time. </p>
<p>I use a parameterized query in the form of a stored procedure and pass in a delimited string containing the list of things I'm looking for. The escaping is automatically handled by the system, no need to take extraordinary steps. Better not make it delimited by characters that will be found in the text you're searching (like commas). a vertical bar ("|") would probably work best in many cases. </p>
<p>By the way, make sure the CRLFs in your table are CHAR(13)+CHAR(10) because the opposite way around isn't \r\n and you wouldn't find it if Environment.NewLine was part of your search.</p>
<p>Here's a stored procedure using a quick and dirty parse resolving to a table that I have used:</p>
<pre><code>CREATE PROCEDURE FindBooks
(
@list varchar(500)
)
AS
CREATE TABLE #parse_table (item varchar(500))
DECLARE @temp VARCHAR(500)
DECLARE @result VARCHAR(500)
DECLARE @str VARCHAR(500)
DECLARE @pos SMALLINT
SET @temp = RTRIM(LTRIM(@list))
SET @pos = 1
WHILE @pos > 0
BEGIN
SET @pos = CHARINDEX('|',@temp)
IF @pos > 0
BEGIN
SET @result = SUBSTRING(@temp,1,@pos - 1)
SET @temp = RTRIM(LTRIM(SUBSTRING(@temp,@pos+1,LEN(@temp) - @pos)))
INSERT INTO #parse_table
SELECT @result
END
ELSE
INSERT INTO #parse_table
SELECT @temp
END
SELECT * FROM Books WHERE Title in (select * from #parse_table)
</code></pre>
<p>Simply create your list of book titles as a simple string (containing whatever embedded apostrophes, CRLFs, and so on) and use a parameterized query. Of course, your stored proc can contain other things besides the delimited list.</p>
http://stackoverflow.com/questions/1088752/how-to-programmatically-discover-mapped-network-drives-on-system-and-their-server5How to programmatically discover mapped network drives on system and their server names?Cyberherbalist2009-07-06T19:14:03Z2009-08-08T20:00:36Z
<p>I'm trying to find out how to programmatically (I'm using C#) determine the name (or i.p.) of servers to which my workstation has current maps. In other words, at some point in Windows Explorer I mapped a network drive to a drive letter (or used "net use w: " to map it). I know how to get the network drives on the system:</p>
<pre><code>DriveInfo[] allDrives = DriveInfo.GetDrives();
foreach (DriveInfo d in allDrives)
{
if (d.IsReady && d.DriveType == DriveType.Network)
{
}
}
</code></pre>
<p>But the DriveInfo class does not have properties that tell me what server and shared folder the mapped drive is associated with. Is there somewhere else I should be looking? </p>
http://stackoverflow.com/questions/836254/problem-getting-outlook-2007-running-vba-script0Problem Getting Outlook 2007 Running VBA ScriptCyberherbalist2009-05-07T18:27:48Z2009-08-06T14:45:28Z
<p>I'm trying to get Outlook to save the attachment in a daily email to a folder where I can have a file system watcher ready to parse and analyze the attachment (it's the report of a data integrity checker). I've set up a Rule that is supposed to run a VBA script, but it just doesn't run as far as I can tell. I've verified in VB6 that the code will in fact save some text to a file, so if Outlook actually runs the VBA script it should be able to do the same. But it doesn't! Can anyone see what the heck I'm doing wrong?</p>
<pre><code>Dim WithEvents objInbox As Outlook.Items
Private Sub Application_Startup()
Set objInbox = Session.GetDefaultFolder(olFolderInbox).Items
End Sub
Sub SnagAttachment(theItem As MailItem)
On Error Resume Next
Dim fnum As Integer
fnum = FreeFile()
Open "c:\temp\success.txt" For Output As #fnum
Print #fnum, "Ran SnagAttachment Successfully"
Close #fnum
End Sub
</code></pre>
<p>Note that when I use the Rules wizard, and choose "run a script" the Sub SnagAttachment is listed as a script that can be selected.</p>
http://stackoverflow.com/questions/1172826/i-need-to-write-an-access-97-mdb-file/1175263#11752630Answer by Cyberherbalist for I need to write an Access 97 .mdb fileCyberherbalist2009-07-24T00:40:45Z2009-07-24T00:40:45Z<p>This is a great question! I've actually wanted to be able to do this kind of thing in a programmatic way, but in the past I've had nothing but trouble coming up with it. However, have matured a bit in my .NET skills over the years, I thought I would take a shot at writing a solution that could be executed as a Console app. This can be implemented either as a scheduled task on the windows server or sql server (using the Sql Server agent). I don't see why this couldn't be automated from the Sql Server without the following code, but I really had fun with this, so I just have to put it out there. The table in both Sql and Access is a list of dogs, with an ID, a name, a breed, and a color. Generic stuff. This actually works on my desktop between a local instance of Sql Server and Access (2007, but I don't know why it wouldn't work with 97). Please feel free to critique.</p>
<p>BTW, has the following:</p>
<pre><code>using System.Data;
using System.Data.OleDb;
using System.Data.SqlClient;
</code></pre>
<p>Here:</p>
<pre><code>static void Main(string[] args)
{
SqlConnectionStringBuilder cstrbuilder = new SqlConnectionStringBuilder();
cstrbuilder.DataSource = "localhost";
cstrbuilder.UserID = "frogmorton";
cstrbuilder.Password = "lillypad99";
cstrbuilder.InitialCatalog = "Dogs";
SqlConnection sconn = new SqlConnection(cstrbuilder.ToString());
sconn.Open();
SqlCommand scmd = new SqlCommand("select * from Dogs", sconn);
SqlDataReader reader = scmd.ExecuteReader();
if (reader.HasRows)
{
OleDbConnectionStringBuilder sb = new OleDbConnectionStringBuilder();
sb.Provider = "Microsoft.Jet.OLEDB.4.0";
sb.PersistSecurityInfo = false;
sb.DataSource = @"C:\A\StackOverflog\DogBase.mdb";
OleDbConnection conn = new OleDbConnection(sb.ToString());
conn.Open();
OleDbCommand cmd = new OleDbCommand("Delete from Dogs", conn);
cmd.CommandType = CommandType.Text;
cmd.ExecuteNonQuery();
conn.Close();
OleDbConnection conn2 = new OleDbConnection(sb.ToString());
conn2.Open();
OleDbCommand icmd = new OleDbCommand("Insert into dogs (DogID, DogName, Breed, Color) values ({0}, '{1}', '{2}', '{3}');", conn2);
icmd.CommandType = CommandType.Text;
while (reader.Read())
{
string insertCommandString =
String.Format("Insert into dogs (DogID, DogName, Breed, Color) values ({0}, '{1}', '{2}', '{3}');"
, reader.GetInt32(0)
, reader.GetString(1)
, reader.GetString(2)
, reader.GetString(3)
);
icmd.CommandText = insertCommandString;
icmd.ExecuteNonQuery();
}
conn2.Close();
}
sconn.Close();
}
</code></pre>
http://stackoverflow.com/questions/1172931/how-do-i-get-the-nth-element-from-a-dictionary/1173026#11730260Answer by Cyberherbalist for How do I get the nth element from a Dictionary?Cyberherbalist2009-07-23T16:44:31Z2009-07-23T16:44:31Z<p>Just to cling to your original spec for a Dictionary, I slung some code and came up with:</p>
<pre><code>Dictionary<string, string> d = new Dictionary<string, string>();
d.Add("a", "apple");
d.Add("b", "ball");
d.Add("c", "cat");
d.Add("d", "dog");
int t = 0;
foreach (string s in d.Values)
{
t++;
if (t == 2) Console.WriteLine(s);
}
</code></pre>
<p>and it does seem to write the second item ("ball") to the console repeatably. If you wrapped it into a method call to get the nth element, it would probably work. This is pretty ugly, though. If you could do a SortedList instead, as @thecoop suggests, you'd be better off.</p>
http://stackoverflow.com/questions/1172826/i-need-to-write-an-access-97-mdb-file/1172876#11728764Answer by Cyberherbalist for I need to write an Access 97 .mdb fileCyberherbalist2009-07-23T16:16:16Z2009-07-23T16:16:16Z<p>I'd let Sql 2005 do it for you. </p>
<p>In the Sql Management Stuidio, right-click on your source database, then Tasks, then Export Data. You can use this to export directly into your Access database, just follow the prompts. Or you can output it to a file format you can use to put into Access.</p>
http://stackoverflow.com/questions/1168915/which-one-is-more-effecient-listint-or-int/1168970#11689703Answer by Cyberherbalist for Which one is more effecient : List<int> or int[]Cyberherbalist2009-07-23T00:24:11Z2009-07-23T00:24:11Z<p>Just for the fun of it, I ran this:</p>
<pre><code>int cap = 100000;
Stopwatch sw1 = new Stopwatch();
sw1.Start();
int[] ix = new int[cap];
for (int x = 0; x < cap; x++)
{
ix[x] = 1;
}
sw1.Stop();
Stopwatch sw2 = new Stopwatch();
sw2.Start();
List<int> iy = new List<int>(cap);
for (int y = 0; y < cap; y++)
{
iy.Add(y);
}
sw2.Stop();
Console.WriteLine(cap.ToString() + " int[]=" + sw1.ElapsedTicks.ToString());
Console.WriteLine(cap.ToString() + " List<int>=" + sw2.ElapsedTicks.ToString());
Console.ReadKey();
</code></pre>
<p>And got this:</p>
<pre>
100000 int[]=1796542
100000 List=2517922
</pre>
<p>I tried it in elapsed milliseconds and got 0 and 1 respectively. Clearly the int[] is way faster, but unless you're talking huge arrays, I'd say it is just nominal.</p>
http://stackoverflow.com/questions/1132077/should-a-programmer-really-care-about-how-many-and-or-how-often-objects-are-creat/1132281#11322811Answer by Cyberherbalist for Should a programmer really care about how many and/or how often objects are created in .NET?Cyberherbalist2009-07-15T15:51:50Z2009-07-15T15:51:50Z<p>I wish I were a "software legend" and could speak of this in my own voice and breath, but since I'm not, I rely upon SL's for such things.</p>
<p>I suggest the following blog post by Andrew Hunter on .NET GC would be helpful:</p>
<p><a href="http://www.simple-talk.com/dotnet/.net-framework/understanding-garbage-collection-in-.net/" rel="nofollow">http://www.simple-talk.com/dotnet/.net-framework/understanding-garbage-collection-in-.net/</a></p>
http://stackoverflow.com/questions/1122409/how-can-a-stored-proc-retrieve-the-name-of-the-database-its-running-in0How can a stored proc retrieve the name of the database it's running in?Cyberherbalist2009-07-13T22:21:26Z2009-07-13T22:24:38Z
<p>The title pretty much says it all, I guess. I have a stored procedure which can be run in a number of databases, and the functioning of the stored procedure needs to vary slightly depending on the database. I've been all over books online and looked in the system tables to see if this might be somewhere in there, but so far no joy.</p>
<p>There's got to be someone here who just happens to know this, if it exists at all.</p>
http://stackoverflow.com/questions/295403/how-to-generate-websphere-mq-script/1075426#10754262Answer by Cyberherbalist for How to generate Websphere MQ script?Cyberherbalist2009-07-02T16:39:58Z2009-07-02T16:39:58Z<p>There is a SupportPac that installs a program called "saveqmgr.exe". </p>
<p>Here's a link to the download of the Pac: <a href="http://shrinkster.com/17kc" rel="nofollow">http://shrinkster.com/17kc</a></p>
<p>IBM seems to frequently reorganize its website, so the above link might not work if you check back here after a long while, but the SupportPac can be found easily by doing a search for "saveqmgr" on the Websphere MQ page. Hope this helps!</p>
<p>IBM has this to say about the SupportPac:</p>
<blockquote>
<p><strong>Abstract</strong> This SupportPac (saveqmgr) saves all the objects, such
as queues, channels, etc, defined in a
either local or remote queue manager
to a file. </p>
<p><strong>Download Description</strong> This SupportPac interrogates the attributes
of all the objects defined to a queue
manager (either local or remote) and
saves them to a file.</p>
<p><strong>Possible Uses</strong> The format of this file is suitable for use with runmqsc.
It is therefore possible to use this
SupportPac to save the definitions of
objects known to a queue manager and
subsequently recreate that queue
manager.</p>
</blockquote>
http://stackoverflow.com/questions/1044590/most-professional-way-to-tell-a-developer-they-are-no-good/1044659#10446592Answer by Cyberherbalist for most professional way to tell a developer they are no goodCyberherbalist2009-06-25T15:41:06Z2009-06-25T15:41:06Z<p>You haven't said whether you're acting as the person's supervisor or just their peer. So I assume you mean you're peers. In that case why is it your problem, anyway? Just be aware that you're going to have to work around their problems if you depend upon their code. And if it is a real problem in the team, make sure their/your supervisor is aware of the situation (unless their supervisor has a "relationship" with the team member in question).</p>
<p>The only way I can see a good way to directly deal with the problem is in the case that you have a friend-relationship apart from the work scene. In that case you might be able to find a way to work something in, rather obliquely, depending upon the relationship.</p>
<p>And if the person happens to be "really crazy", well, don't even try that.</p>
http://stackoverflow.com/questions/1040968/visual-studio-2008-unexpected-error-on-project-checkout-with-vss-20050Visual Studio 2008 Unexpected Error on Project Checkout with VSS 2005Cyberherbalist2009-06-24T21:00:18Z2009-06-24T21:00:18Z
<p>I've encountered an odd misbehavior of VS 2008's integration with Visual Source Safe 2005. </p>
<p>Situation occurs when I fire up VS2008 when a project is checked out to someone else, and later they check the project back in, while I still hold the VS2008 open. If I at that time add a new item, VS2008 tells me that my action has caused a check out of the project and a new version has been loaded from source control. Fair enough, but thereafter I get an error dialog stating "Visual Studio has encountered an unexpected error" with OK at every subsequent action, such as save file and search text, making it almost unusable. This is overcome by closing VS (which pops the error dialog once more) and restarting.</p>
<p>Is there some kind of fix or workaround to this (besides the obvious ones: "don't try to check out the project when it's checked out to someone else", or "get latest version if you think the other person may have checked the project back in")?</p>
http://stackoverflow.com/questions/1039673/how-can-i-make-mousewheel-work-in-vb6-ide/1039688#10396883Answer by Cyberherbalist for How can I make mousewheel work in VB6 IDE?Cyberherbalist2009-06-24T17:07:21Z2009-06-24T17:07:21Z<p>Yes. See this MSDN article:</p>
<p><a href="http://support.microsoft.com/kb/837910" rel="nofollow">http://support.microsoft.com/kb/837910</a></p>
http://stackoverflow.com/questions/1039473/vb6-ide-is-changing-the-case-of-my-enumeration-names/1039574#10395749Answer by Cyberherbalist for VB6 IDE is changing the case of my enumeration namesCyberherbalist2009-06-24T16:47:47Z2009-06-24T16:47:47Z<p>Yes, there is. It's kind of odd-looking, and you probably want to comment on why you're doing it in your code so future devs don't get perplexed about it, but here's what you want to do. Add the enumerations as Public items inside a compiler directive code block (so the compiler can't see it, of course). You should do this preferably right below the enumeration declaration, like this:</p>
<pre><code>Public Enum tiErrorEnum
tiNone = 0
tiWarning
tiError
tiDupDoc
End Enum
#If False Then
Public tiNone
Public tiWarning
Public tiError
Public tiDupDoc
#End If
</code></pre>
<p>Simple. The IDE will recognize and hold the enumeration names correctly, and the compiler will ignore the block.</p>
http://stackoverflow.com/questions/1020506/in-net-c-how-does-one-reference-a-variable-in-one-winform-from-a-child-winfo0In .NET (C#), how does one reference a variable in one WinForm from a child WinForm?Cyberherbalist2009-06-19T23:44:49Z2009-06-20T00:52:05Z
<p>Given a public instantiation of a class in WinForm1, I attempt to open WinForm2 and eliciting DB parms do a query the results of which I would like use to fill the class instance in WinForm1. However, I cannot figure out how to access the class instance in WinForm1 from WinForm2.</p>
<p>The class instance in WinForm1 is coded as a private member / public property:</p>
<pre><code>private theClass _classInstance;
public theClass ClassInstance {get; set;}
</code></pre>
<p>I am calling WinForm2 as a modal form.</p>
<pre><code>WinForm2 wf2 = new WinForm2();
wf2.ShowDialog(this);
</code></pre>
<p>Is there way I can refer to ClassInstance (modifying its value) while in wf2 ??</p>
http://stackoverflow.com/questions/972752/how-does-one-distinguish-between-vb5-and-vb6-projects2How does one distinguish between VB5 and VB6 projects?Cyberherbalist2009-06-09T22:10:04Z2009-06-09T22:24:51Z
<p>I have to maintain a number of minor legacy apps and most of them have no or minimal documentation. There are a couple of these which were written either in VB5 or 6, but I can't tell which. There doesn't seem to be big difference in the appearance of the source code, and I can load either one using VB6, and even run them in the IDE, but I have the feeling that the older of the two is VB5. Is there a way to tell by code inspection which one a project was created in? Or some other way.</p>
http://stackoverflow.com/questions/972611/old-developers-any-future/972774#9727745Answer by Cyberherbalist for Old Developers - any future ?Cyberherbalist2009-06-09T22:16:49Z2009-06-09T22:16:49Z<p>I'm 57 and still coding. Graduated from COBOL to VB6 in 2000, and C# and .NET in 2002. Now coding ASP.NET and mainly keeping up with the trends. I probably couldn't manage a project to save my life, but I think I can keep up with the coding until I'm 90. Ha, ha, in this economy I might have to!</p>
http://stackoverflow.com/questions/101693/customerrors-modeoff/891429#8914290Answer by Cyberherbalist for CustomErrors mode="Off"Cyberherbalist2009-05-21T04:53:41Z2009-05-21T04:53:41Z<p>In the interests of adding more situations to this question (because this is where I looked because I was having the exact same problem), here's my answer:</p>
<p>In my case, I cut/pasted the text from the generic error saying in effect if you want to see what's wrong, put </p>
<pre><code><system.web>
<customErrors mode="Off"/>
</system.web>
</code></pre>
<p>So this should have fixed it, but of course not! My problem was that there was a <system.web> node several lines above (before a compilation and authentication node), and a closing tag </system.web> a few lines below that. Once I corrected this, OK, problem solved. What I should have done is copy/pasted only this line:</p>
<pre><code><customErrors mode="Off"/>
</code></pre>
<p>This is from the annals of Stupid Things I Keep Doing Over and Over Again, in the chapter entitled "Copy and Paste Your Way to Destruction".</p>
http://stackoverflow.com/questions/865780/naming-enum-types/865937#8659370Answer by Cyberherbalist for Naming enum typesCyberherbalist2009-05-14T21:36:45Z2009-05-14T21:36:45Z<p>Another possibility:</p>
<pre><code>public enum Mapping
{
Row, Column
}
</code></pre>
http://stackoverflow.com/questions/865780/naming-enum-types/865900#8659002Answer by Cyberherbalist for Naming enum typesCyberherbalist2009-05-14T21:30:58Z2009-05-14T21:30:58Z<p>A good knowledge of English vocabulary would be helpful for this, but there are a plethora of collective nouns in the language that even most native speakers are completely ignorant of. For example, how many people happen to know that the collective noun for crows is "murder"? Sting used this word in his song "All This Time...", btw.</p>
<p>I suggested Cartesian originally because of the analog to cartesian coordinates in mathematics. The ancillary question, what about collective words, is interesting in and of itself, so for the benefit of anyone who might want to scope this out, from Wikipedia:</p>
<p><a href="http://en.wikipedia.org/wiki/List%5Fof%5Fcollective%5Fnouns%5Fby%5Fsubject%5FA-H" rel="nofollow">Collective Nouns from A-H</a></p>
<p><a href="http://en.wikipedia.org/wiki/List%5Fof%5Fcollective%5Fnouns%5Fby%5Fsubject%5FI-Z" rel="nofollow">Collective Nouns from I-Z</a></p>
<p>Maybe there is something there that might trigger a good enum name!</p>
http://stackoverflow.com/questions/865780/naming-enum-types/865807#8658072Answer by Cyberherbalist for Naming enum typesCyberherbalist2009-05-14T21:14:06Z2009-05-14T21:14:06Z<p>The first thing that comes to my mind is "Cartesian". As in</p>
<pre><code>public enum Cartesian
{
Row, Column
}
</code></pre>
<p>The reasoning behind this is because row/column most closely suggests the Cartesian Coordinates of a grid system. </p>
http://stackoverflow.com/questions/861207/any-user-friendly-net-reference-guides-for-c/864936#8649360Answer by Cyberherbalist for Any user friendly .NET reference guides for C#?Cyberherbalist2009-05-14T18:26:26Z2009-05-14T18:26:26Z<p>You might want to try:</p>
<p><a href="http://en.csharp-online.net/CSharp%5FLanguage%5FReference" rel="nofollow">http://en.csharp-online.net/CSharp_Language_Reference</a></p>
http://stackoverflow.com/questions/1710375/tossing-out-certain-result-rows-in-a-left-join/1710508#1710508Comment by Cyberherbalist on Tossing out certain result rows in a left joinCyberherbalist2009-11-10T19:50:44Z2009-11-10T19:50:44ZYou make a good point, but the case in the question is more along the lines of a generic sample; in the underlying real-world situation all the columns are needed, even if some column values get excluded in the final result.http://stackoverflow.com/questions/1710375/tossing-out-certain-result-rows-in-a-left-join/1710425#1710425Comment by Cyberherbalist on Tossing out certain result rows in a left joinCyberherbalist2009-11-10T19:46:57Z2009-11-10T19:46:57ZNow, it might work in DB2. Because I was asking the question for a coworker who had never heard of StackOverflow, and I don't actually have DB2, I was substituting your Sql in Sql Server Management Studio and that is where it didn't work. I directed him to this page so he can see the answers and possibly what you posted will worK in DB2. Thanks for your response in any case! http://stackoverflow.com/questions/1710375/tossing-out-certain-result-rows-in-a-left-join/1710406#1710406Comment by Cyberherbalist on Tossing out certain result rows in a left joinCyberherbalist2009-11-10T19:32:26Z2009-11-10T19:32:26ZThis worked exactly as needed, thanks!http://stackoverflow.com/questions/1710375/tossing-out-certain-result-rows-in-a-left-join/1710425#1710425Comment by Cyberherbalist on Tossing out certain result rows in a left joinCyberherbalist2009-11-10T19:31:43Z2009-11-10T19:31:43ZThis doesn't actually work because b.empno and a.deptname don't occur in the group by clause... and when I put them in there, the results are exactly the same as the original.http://stackoverflow.com/questions/1463007/does-anyone-remember-what-the-statement-command-waiton-meant-in-vb3Comment by Cyberherbalist on Does anyone remember what the statement/command "WaitOn" meant in VB3?Cyberherbalist2009-09-23T15:35:06Z2009-09-23T15:35:06ZAgreed, but I don't think VB3 had enumeration-style values like it does today, so perhaps this was the best they could do.http://stackoverflow.com/questions/1463007/does-anyone-remember-what-the-statement-command-waiton-meant-in-vb3/1463116#1463116Comment by Cyberherbalist on Does anyone remember what the statement/command "WaitOn" meant in VB3?Cyberherbalist2009-09-22T23:21:41Z2009-09-22T23:21:41ZVB3 doesn't have a right-click context menu so no Go To Definition. Unfortunately, or this question never would have been asked.http://stackoverflow.com/questions/1463007/does-anyone-remember-what-the-statement-command-waiton-meant-in-vb3/1463126#1463126Comment by Cyberherbalist on Does anyone remember what the statement/command "WaitOn" meant in VB3?Cyberherbalist2009-09-22T23:20:46Z2009-09-22T23:20:46ZBingo. Looking thru the code for a login method I ran into both WaitOn and WaitOff. VB3 doesn't have a right-click context menu so no Go To Definition. http://stackoverflow.com/questions/1463007/does-anyone-remember-what-the-statement-command-waiton-meant-in-vb3/1463081#1463081Comment by Cyberherbalist on Does anyone remember what the statement/command "WaitOn" meant in VB3?Cyberherbalist2009-09-22T23:04:44Z2009-09-22T23:04:44ZUh, I don't think so. See the code I added...http://stackoverflow.com/questions/1422759/where-can-i-find-vbsql-vbx/1422883#1422883Comment by Cyberherbalist on Where can I find VBSQL.VBX?Cyberherbalist2009-09-19T00:25:28Z2009-09-19T00:25:28ZYes! The VBX was there, as you said. Thanks very much!http://stackoverflow.com/questions/1395580/how-to-determine-size-property-for-stored-procedure-output-parameters-in-c-data/1395802#1395802Comment by Cyberherbalist on How to determine size property for stored procedure output parameters in C# data access layerCyberherbalist2009-09-08T20:19:46Z2009-09-08T20:19:46ZThat is so COOOL! As soon as I read this I slapped my forehead. I've used sys. stuff before, but it just never occured to me that this could be used with SP's. Slick, @devio! http://stackoverflow.com/questions/1395580/how-to-determine-size-property-for-stored-procedure-output-parameters-in-c-dataComment by Cyberherbalist on How to determine size property for stored procedure output parameters in C# data access layerCyberherbalist2009-09-08T19:12:13Z2009-09-08T19:12:13ZYou could get the length of a column, sure, but that does not tell you what the stored procedure accessing the table is going to bring back. The SP could be obtaining column information from one or twenty tables, concatenating them, truncating them, or substituting its own values. There is no way to predict this based on the table. You have to know what the SP is sending back.http://stackoverflow.com/questions/1394930/how-to-generate-web-service-out-of-wsdl/1395756#1395756Comment by Cyberherbalist on how to generate web service out of wsdlCyberherbalist2009-09-08T19:08:58Z2009-09-08T19:08:58ZGenerate me a method that provides a string in response to an int and two other strings. In other words, please read my mind.http://stackoverflow.com/questions/1302026/what-does-method-of-object-failed-meanComment by Cyberherbalist on What does "Method '~' of object '~' failed" mean?Cyberherbalist2009-08-19T22:14:43Z2009-08-19T22:14:43ZI do have the source code, which is a good thing. There did happen to be different versions of the supporting libraries, some dating back seven years, others much more recent, though they had all been built at the same time, originally. There had been no change to the underlying code, but different compiles evidently produced enough differences to cause the error. I'm sure it didn't help that the app runs on a workstation and the dll's run on a server. I recompiled all 4 supporting libraries, and then the app itself with these fresh dll's, and that did the trick. http://stackoverflow.com/questions/1302026/what-does-method-of-object-failed-mean/1302240#1302240Comment by Cyberherbalist on What does "Method '~' of object '~' failed" mean?Cyberherbalist2009-08-19T22:12:52Z2009-08-19T22:12:52ZGood thought, @Jay Riggs. MDAC was all the same version on both platforms, so that wasn't it.http://stackoverflow.com/questions/1301520/how-can-people-on-getacoder-com-offer-such-insane-low-prices/1301589#1301589Comment by Cyberherbalist on How can people on getacoder.com offer such insane low prices?Cyberherbalist2009-08-19T19:25:27Z2009-08-19T19:25:27Z@Sandbox is reading into the question that @Lothar was talking about people in India, whereas all @Lothar said was that good Indian programmers get more than the amounts offered on rentacoder, even with their lower costs of living, so how can the bidders on rentacoder bid so much lower than even that, thus he interprets subsequent negative comments as slurs against Indians, instead of comments about script kiddies, scammers, and crappy programmers in general.