User raven - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:49:44Z http://stackoverflow.com/feeds/user/4228 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1757421/is-there-any-software-which-could-make-architecture-diagram-out-of-existing-sourc/1757480#1757480 0 Answer by raven for Is there any software which could make architecture diagram out of existing source code? raven 2009-11-18T17:00:48Z 2009-11-18T17:00:48Z <p>Perhaps <a href="http://www.scitools.com/" rel="nofollow">SciTools</a> can help you out.</p> http://stackoverflow.com/questions/1742994/faster-clean-perforce-sync-over-vpn/1745651#1745651 3 Answer by raven for Faster clean Perforce sync over VPN raven 2009-11-16T23:49:27Z 2009-11-16T23:49:27Z <p>The <a href="http://www.perforce.com/perforce/products/p4p.html" rel="nofollow">Perforce Proxy</a> is the right way to go, but if you really want to, there is a way to do what you asked via the <code>sync</code> command, with the <code>-k</code> switch:</p> <blockquote> <p>The -k flag bypasses the client file update. It can be used to make the server believe that a client workspace already has the file. Typically this flag is used to correct the Perforce server when it is wrong about what files are on the client, use of this option can confuse the server if you are wrong about the client's contents.</p> </blockquote> <pre>p4 sync -k //depot/someProject/...</pre> <p>You can also use <code>flush</code>, which is a synonym for <code>sync -k</code>:</p> <pre>p4 flush //depot/someProject/...</pre> <p>Just be careful. Remember those last words, <em>"...use of this option can confuse the server if you are wrong about the client's contents."</em></p> http://stackoverflow.com/questions/1736736/file-rename-problem/1738302#1738302 3 Answer by raven for File Rename problem? raven 2009-11-15T18:09:48Z 2009-11-15T18:09:48Z <p>If I am interpreting your question correctly, you want to iterate through the files in a directory and change all files with the extension ".fin", <em>or no extension at all</em>, to ".txt". You can add a reference to the Microsoft Scripting Runtime and use the FileSystemObject to do that rather easily. In this example, we'll assume <code>txtsourcedatabase</code> contains the directory you wish to process:</p> <pre><code>Dim fso As New FileSystemObject Dim fil As Variant For Each fil In fso.GetFolder(txtsourcedatabase).Files If (LCase$(fso.GetExtensionName(fil.Name)) = "fin") Or _ (fso.GetExtensionName(fil.Name) = vbNullString) Then fso.MoveFile fil.Path, fso.BuildPath(fso.GetParentFolderName(fil.Path), _ fso.GetBaseName(fil.Path) &amp; ".txt") End If Next </code></pre> http://stackoverflow.com/questions/1722240/perforce-create-a-local-backup-of-current-pendinglist/1725778#1725778 1 Answer by raven for perforce: create a local backup of current pendinglist raven 2009-11-12T22:12:09Z 2009-11-12T22:12:09Z <ul> <li>Create a branch of these files in some appropriate location</li> <li>Check out the branch versions of the files you have edited</li> <li>Copy the edited files over from the trunk and submit them</li> <li>Revert the files on the trunk</li> </ul> <p>Now you've got those "diffs" you wanted safely archived. When your ready to apply those changes later on, just integrate them back into the trunk.</p> <p>This is what the Python script, that <a href="http://stackoverflow.com/questions/1722240/perforce-create-a-local-backup-of-current-pendinglist/1722322#1722322">Brett mentioned</a>, does. This is the way to do it manually without any special tools.</p> http://stackoverflow.com/questions/1675471/is-it-possible-to-set-permissions-in-perforce-such-that-a-user-cannot-integrate-i/1694110#1694110 2 Answer by raven for Is it possible to set permissions in Perforce such that a user cannot integrate into a certain area of the depot? raven 2009-11-07T19:20:07Z 2009-11-07T21:01:10Z <p>Adding this to your protections table will prevent the user from integrating <em>into</em> <code>//depot/stable</code> while still allowing them to integrate <em>from</em> it:</p> <pre> =write user * * -//depot/stable/... </pre> <p>Remember, order is important. Perforce applies the permissions in the order that they are listed. This...</p> <pre> =write user * * -//depot/stable/... write user * * //... </pre> <p>...is no different than this:</p> <pre> write user * * //... </pre> <p>Also, Perforce throws a rather unintuitive error when a denied user attempts to integrate into the forbidden area. Instead of saying something sensible like, "You do not have permission to write to this folder", it pops up this nonsense:</p> <p><img src="http://img410.imageshack.us/img410/4579/p4deniedintegration.png" alt="alt text"></p> http://stackoverflow.com/questions/1681721/vb6-windows-media-player/1683681#1683681 1 Answer by raven for vb6 windows media player raven 2009-11-05T21:17:28Z 2009-11-05T21:17:28Z <p>You forgot the backslash between App.Path and "filename".</p> <pre><code>wmp.URL = App.Path &amp; "\" &amp; "filename" wmp.Controls.play </code></pre> http://stackoverflow.com/questions/237000/is-there-hard-evidence-of-the-roi-of-unit-testing 34 Is there hard evidence of the ROI of unit testing? raven 2008-10-25T20:59:10Z 2009-11-05T14:35:46Z <p>Unit testing sounds great to me, but I'm not sure I should spend any time really learning it unless I can convince others that is has significant value. I have to convice the other programmers and, more importantly, the bean-counters in management, that all the extra time spent learning the testing framework, writing tests, keeping them updated, etc.. will pay for itself, and then some.</p> <p>What proof is there? Has anyone actually developed the same software with two separate teams, one using unit testing and the other not, and compared the results? I doubt it. Am I just supposed to justify it with, "Look it up on the internet, everybody's talking about it, so it must be the right thing to do"?</p> <p>Where is the hard evidence that will convince the laymen that unit testing is worth the effort?</p> http://stackoverflow.com/questions/1480443/how-can-i-paste-my-scanned-signature-onto-a-photograph-in-a-pdf-document/1676932#1676932 0 Answer by raven for How can I paste my scanned signature onto a photograph in a PDF document? raven 2009-11-04T21:56:20Z 2009-11-04T21:56:20Z <p>You'll need a PDF editor like <a href="http://www.adobe.com/products/acrobatstd/" rel="nofollow">Adobe Acrobat</a>.</p> http://stackoverflow.com/questions/1662600/why-does-visual-studio-2008-tell-me-9-8999999999999995-0-000000000000000555 8 Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827? raven 2009-11-02T17:30:41Z 2009-11-03T11:55:29Z <p>When I type this into the Visual Studio 2008 immediate window:</p> <p><code>? .9 - .8999999999999995</code></p> <p>It gives me this as the answer:</p> <p><code>0.00000000000000055511151231257827</code></p> <p>The documentation says that a double has 15-16 digits of precision, but it's giving me a result with 32 digits of precision. Where is all that extra precision coming from?</p> http://stackoverflow.com/questions/1652021/desktop-namespace-extension-in-windows-7-unable-to-drag-and-drop/1662525#1662525 0 Answer by raven for Desktop Namespace Extension in Windows 7: Unable to drag and drop raven 2009-11-02T17:13:53Z 2009-11-02T20:01:35Z <p>Windows 7's UAC could be preventing the desired drag and drop behavior. If the dragged item has lesser permissions than the target item, the target won't launch. Perhaps you can turn off UAC?</p> http://stackoverflow.com/questions/1662190/get-a-files-last-modified-date-in-vb6/1662234#1662234 1 Answer by raven for Get a file's last modified date in VB6 raven 2009-11-02T16:21:28Z 2009-11-02T16:21:28Z <p>Add a reference to the Microsoft Scripting Runtime (Project->References...) and use the following code:</p> <pre><code>Dim fso As New FileSystemObject Dim fil As File Set fil = fso.GetFile("C:\foo.txt") Debug.Print fil.DateLastModified </code></pre> http://stackoverflow.com/questions/1615448/get-application-installation-directory/1615663#1615663 1 Answer by raven for Get Application Installation Directory raven 2009-10-23T20:16:55Z 2009-11-02T14:16:46Z <p>There is an <code>Install Directory</code> string in the registry that will tell you where it's installed, however it's located in different places depending upon the version of Firefox is installed and the OS upon which it is installed. It will be in a key that looks like one of these:</p> <p><strong>Windows XP</strong></p> <pre> HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox\3.5.3 (en-US)\Main HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox\3.0.11 (en-US)\Main HKEY_LOCAL_MACHINE\SOFTWARE\Mozilla\Mozilla Firefox\3.0.5 (en-US)\Main ... </pre> <p><strong>Windows 7 x64</strong></p> <pre> HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Mozilla\Mozilla Firefox\3.5.3 (en-US)\Main HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Mozilla\Mozilla Firefox\3.0.11 (en-US)\Main HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Mozilla\Mozilla Firefox\3.0.5 (en-US)\Main ... </pre> http://stackoverflow.com/questions/291558/why-would-vs2005-be-looking-for-a-file-its-supposed-to-be-generating 0 Why would VS2005 be looking for a file it's supposed to be generating? raven 2008-11-14T21:49:33Z 2009-10-23T13:38:47Z <p>I'm working on a PocketPC app in Visual Studio 2005. The solution was building fine, then suddenly broke. The first error is this (assume the project is FooPDA):</p> <p>"Unable to find source file 'C:\FooPDA\obj\Release\FooPDA.exe' for file 'FooPDA.exe', located in '%InstallDir%', the file may be absent or locked."</p> <p>This error is rather confusing to me. It's looking for the file it's supposed to be generating. Anyone have any idea what might be going wrong here?</p> <p><hr /></p> <p><strong>Edit</strong>: The project builds fine right out of version control, <em>I simply change the icon on the project</em>, and it starts throwing this mysterious error.</p> http://stackoverflow.com/questions/1588777/what-is-a-branch-specification-in-perforce/1589386#1589386 6 Answer by raven for What is a branch specification in Perforce ? raven 2009-10-19T15:30:56Z 2009-10-19T15:30:56Z <p>By "branch object", I assume you mean "branch specification"? Branch specifications are what you create on the tab labeled "Branches" in P4V. Yes, these are just a convenience and in no way effect the actual branched files. You can delete them and the actual branch they describe will not be touched.</p> <p>A branch specification is not necessary to perform branching and integration operations. That can all be performed via the Integrate... item that is available on the context menu of files and folders in the Depot Tree. The branch specifications allows you to do that more easily by setting up mappings between trunk and branch. We typically don't use them because our branch specs would typically consist of something like this:</p> <pre><code>//depot/foo/dev/... //depot/foo/v1.5/... </code></pre> <p>Creating a branch spec for something this simple doesn't really save us any time. It's when the mapping between the trunk files and the branch gets more complicated that branch specifications prove to be useful. </p> http://stackoverflow.com/questions/167580/is-there-a-way-to-prevent-the-vb6-compiler-from-shuffling-the-contents-of-files 4 Is there a way to prevent the VB6 compiler from shuffling the contents of files? raven 2008-10-03T16:01:16Z 2009-10-16T12:13:56Z <p>For reasons unknown, the VB6 compiler often likes to reorder the contents of .vbp files and the control descriptor block at the top of .frm files (The code that describes the properties of controls on the form. Code that you don't see in the IDE but you do see in a text editor and <em>when doing diffs against the previous revision in version control</em>.). This is monumentally annoying and very distracting when comparing revisions of a file.</p> <p>Is there a way to prevent this?</p> http://stackoverflow.com/questions/134103/how-do-you-search-the-text-of-changelist-descriptions-in-perforce 11 How do you search the text of changelist descriptions in Perforce? raven 2008-09-25T15:44:09Z 2009-10-15T11:54:49Z <p>On occasion, I find myself wanting to search the text of changelist descriptions in Perforce. There doesn't appear to be a way to do this in P4V. I can do it by redirecting the output of the changes command to a file...</p> <pre><code>p4 changes -l &gt; p4changes.txt </code></pre> <p>...(the -l switch tells it to dump the full text of the changelist descriptions) and then searching the file, but this is rather cumbersome. Has anyone found a better way?</p> <p><hr /></p> <p>Ctrl+F searching of change list descriptions is finally available in P4V 2009.1. It will only search what you pull from the server, however. We have less than 6000 CLs, so telling it to retrieve them all is not a problem for us, but if you have a huge number of change lists, searching them all this way may not be an option.</p> http://stackoverflow.com/questions/1568083/visual-basic-6-events/1568272#1568272 1 Answer by raven for Visual basic 6 events raven 2009-10-14T18:53:22Z 2009-10-14T18:53:22Z <p>Since the Change event doesn't pass you the code of the last key pressed, you'll have to store that in the KeyPress event, then you can immediately exit the Change event whenever the backspace key is pressed.</p> <pre><code>Private keyCode As Integer Private Sub Text1_Change() If (keyCode = vbKeyBack) Then Exit Sub Else // do whatever it is you want to do in this event // P.S.: I know this is the wrong comment syntax, // but this code prettifier has a problem with // VB6 comments End If End Sub Private Sub Text1_KeyPress(KeyAscii As Integer) keyCode = KeyAscii End Sub </code></pre> http://stackoverflow.com/questions/1517047/winsock-downloading-files-vb6/1527455#1527455 1 Answer by raven for Winsock downloading files - vb6 raven 2009-10-06T19:05:23Z 2009-10-06T19:05:23Z <p>I think you have overestimated the power of the Winsock control. You can't just use the Winsock's GetData method to reach out and grab a file. There has to be an active connection between your client application and some other application on the server side. After a connection is established, this server application will feed data to your application, the Winsock's DataArrival event will fire, and then you can use the GetData method to retrieve it. Your code should look more like this:</p> <pre><code>Public Sub DownloadSock(ArqURL As String) Dim arquivo() As Byte Dim ficheiroID As Integer ficheiroID = FreeFile Me.Winsock1.Connect ArqURL, 80 End Function Private Sub Winsock1_DataArrival(ByVal bytesTotal As Long) Dim ArqDestino As String Dim arquivo() As Byte Dim ficheiroID As Integer ficheiroID = FreeFile Open ArqDestino For Binary Access Write As #ficheiroID Me.Winsock1.GetData arquivo() Put #ficheiroID, , arquivo() Close #ficheiroID End Sub </code></pre> <p>This is far from complete however (nor is it guaranteed to be syntactically correct, consider it pseudo code). After making the connection, you then have to implement some mechanism to tell the server to begin sending the file. If the file is large enough it will take many DataArrival events to get it all, so it will have to be held in an accumulator while the data comes across. There's more to this than you think.</p> <p>I would take a look at some tutorials and/or sample code (look for a VB6 project that uses the Winsock control on CodeProject, like <a href="http://www.codeproject.com/KB/IP/winsock.aspx" rel="nofollow">this one</a>).</p> http://stackoverflow.com/questions/1133523/what-is-the-ms-access-sql-syntax-to-create-a-field-of-type-hyperlink 1 What is the MS Access SQL syntax to create a field of type Hyperlink? raven 2009-07-15T19:40:24Z 2009-10-01T19:14:01Z <p>I'm working on a C# project that uses System.Data.OleDb.OleDbCommand class to create and alter tables in an MS Access DB. I generate the SQL statement, pass it to the object, then call the ExecuteNonQuery function. I was able to figure out the proper MS Access SQL syntax to create columns of the following Access data types:</p> <pre> AutoNumber: ALTER TABLE <i>table-name</i> ADD COLUMN <i>column-name</i> COUNTER|AUTOINCREMENT Currency: ALTER TABLE <i>table-name</i> ADD COLUMN <i>column-name</i> MONEY Date/Time: ALTER TABLE <i>table-name</i> ADD COLUMN <i>column-name</i> DATE Memo: ALTER TABLE <i>table-name</i> ADD COLUMN <i>column-name</i> MEMO|TEXT Number: ALTER TABLE <i>table-name</i> ADD COLUMN <i>column-name</i> NUMBER OLE Object: ALTER TABLE <i>table-name</i> ADD COLUMN <i>column-name</i> OLEOBJECT Text: ALTER TABLE <i>table-name</i> ADD COLUMN <i>column-name</i> CHARACTER Yes/No: ALTER TABLE <i>table-name</i> ADD COLUMN <i>column-name</i> BIT </pre> <p>The only type I haven't figured out how to create is Hyperlink. Does anyone know the syntax for that one? </p> http://stackoverflow.com/questions/234217/is-it-possible-to-translate-a-user-entered-mathematical-equation-into-c-code-at 14 Is it possible to translate a user-entered mathematical equation into C# code at runtime? raven 2008-10-24T16:18:26Z 2009-09-17T12:46:35Z <p>I would like to allow the user to enter any equation, like the following, into a text box:</p> <pre><code>x = x / 2 * 0.07914 x = x^2 / 5 </code></pre> <p>And have that equation applied to telemetry data that is coming from a device connected via a serial port. The incoming data points are represented by <strong>x</strong> and each data point is processed by the user-specified equation. I did this years ago, but I didn't like the solution because it required parsing the text of the equation for every calculation:</p> <pre><code>float ApplyEquation (string equation, float dataPoint) { // parse the equation string and figure out how to do the math // lots of messy code here... } </code></pre> <p>When you're processing boatloads of data points, this introduces quite a bit of overhead. I would like to be able to translate the equation into a function, on the fly, so that it only has to be parsed once. It would look something like this:</p> <pre><code>FunctionPointer foo = ConvertEquationToCode(equation); .... x = foo(x); // I could then apply the equation to my incoming data like this </code></pre> <p>Function ConvertEquationToCode would parse the equation and return a pointer to a function that applies the appropriate math.</p> <p>The app would basically be writing new code at runtime. Is this possible with .NET?</p> http://stackoverflow.com/questions/93105/whats-the-best-way-to-determine-if-a-character-is-a-letter-in-vb6 0 What's the best way to determine if a character is a letter in VB6? raven 2008-09-18T14:35:50Z 2009-09-15T19:36:23Z <p>Need a function that takes a character as a parameter and returns true if it is a letter.</p> http://stackoverflow.com/questions/1427268/how-to-create-a-setter-getter-of-usercontrol-in-vb6/1427847#1427847 5 Answer by raven for How to create a Setter/Getter of UserControl in VB6? raven 2009-09-15T15:23:05Z 2009-09-15T17:54:02Z <p>From the help on this error (it mentions ListBox and Form, but the same applies to UserControls):</p> <blockquote> <p>The New keyword can only be applied to a creatable object... You tried to instantiate an Automation object, but it was not a creatable object. For example, you tried to create a new instance of a list box by specifying ListBox in a statement like the following: [sample code snipped] ListBox and Form are class names, not specific object names. You can use them to specify that a variable will be a reference to a certain object type... But you can't use them to instantiate the objects themselves in a Set statement. You must specify a specific object, rather than the generic class name, in the Set statement:</p> </blockquote> <p>What you want to do is make an array of your UserControls and load new ones as you need them. Set the Index property of your UserControl to 0 to make it an array and then use the Load statement to create new instances:</p> <pre><code>Load ucMyUserControl(1) Set myObject.GUI = ucMyUserControl(1) </code></pre> <p>When you need more just specify a new upper bound:</p> <pre><code>Load ucMyUserControl(2) Load ucMyUserControl(3) ... </code></pre> <p>When you're done with them, unload them:</p> <pre><code>Unload ucMyUserControl(3) Unload ucMyUserControl(2) ... </code></pre> http://stackoverflow.com/questions/1395269/why-is-an-event-firing-during-compilation-of-a-vb6-app 3 Why is an event firing during compilation of a VB6 app? raven 2009-09-08T17:35:50Z 2009-09-09T14:30:14Z <p>I am trying to compile a VB6 application, but it fails with the error, "Run-time error '91': Object variable or With block variable not set". It turns out the Resize event of a user control is firing during compilation and calling code that attempts to access an object that has not been instantiated yet.</p> <p>Why is an event firing during compilation and is there any way to stop it?</p> <p><hr /></p> <p><strong>Edit</strong>: I had some code here, but it's not relevant. The problem results from the fact that UserControl code (namely the Initialize, ReadProperties, Resize, and WriteProperties events) can execute at unexpected times. If the code in these events relies on other code to initialize any of its data structures, there's a good chance it's going to fail because that initialization code may not have executed. Especially during compilation when nothing is supposed to be executing! I'd call this a bug, but I'm sure Microsoft can rationalize it somehow.</p> http://stackoverflow.com/questions/1376964/vb6-error-propagation/1380120#1380120 0 Answer by raven for VB6 error propagation raven 2009-09-04T15:57:49Z 2009-09-04T15:57:49Z <p>The Err object is cleared whenever you exit a Sub as expected (e.g., no error occurs). In your example, the <code>Resume ProcExit</code> statement is unnecessary. The following two subs behave the same way:</p> <pre><code>Public Sub SubA() On Error Goto ProcError MsgBox FuncA() ProcExit: Exit Sub ProcError: MsgBox Err.Description Resume ProcExit End Sub Public Sub SubA() On Error Goto ProcError MsgBox FuncA() Exit Sub ProcError: MsgBox Err.Description End Sub </code></pre> <p>You don't have to use the <code>Exit Sub</code> statement to clear the Err object. Simply falling out of the sub when you hit <code>End Sub</code> has the same affect.</p> <p>If you want errors from "the other procedures" to "roll up" (a better word is propagate) to the error handler on your main calling procedure, they shouldn't contain error handlers at all. For instance, suppose Main calls SubA, and SubA calls FuncA. An error occurs in FuncA. If you handle the error in FuncA by simply displaying a message box, like you do in your example, the code is going to continue executing in SubA, but will be in an unstable state because something went wrong in FuncA and SubA does not know about it.</p> <p>One option is to refrain from putting error handlers in SubA and FuncA. When an error happens in FuncA, it gets raised to SubA, which in turn raises it to Main where it is then properly handled.</p> <p>An even better option is to trap the errors, log them, then re-raise them. Then when the error finally gets to your Main Sub with the error handler, you'll have more information to work with.</p> http://stackoverflow.com/questions/1378604/end-process-from-task-manager-using-vb-6-code/1379941#1379941 0 Answer by raven for End Process from Task Manager using VB 6 Code raven 2009-09-04T15:26:22Z 2009-09-04T15:26:22Z <pre><code>Shell "taskkill.exe /f /t /im processname.exe" </code></pre> <p>This forces (<code>/f</code>) the terminatation of the process with the image name (<code>/im</code>) of processname.exe, and any child processes which were started by it (<code>/t</code>). You may not need all these switches. See the <code>taskkill</code> command help for more information (type the following at the command line):</p> <pre><code>taskkill/? </code></pre> http://stackoverflow.com/questions/915811/are-the-first-32-bits-of-a-160-bit-sha1-hash-an-acceptable-substitute-for-a-crc32 0 Are the first 32 bits of a 160-bit SHA1 hash an acceptable substitute for a CRC32 hash? raven 2009-05-27T13:47:36Z 2009-09-04T13:52:14Z <p>I'm working on a .NET 3.5 project and I need a 32-bit hash value. There doesn't seem to be any methods in the .NET Cryptography classes that return a 32-bit hash (MD5 is 128 bits, SHA1 is 160 bits, etc.). I implemented a CRC32 class, but I find that the SHA1 and MD5 hashing functions that already exist are much faster.</p> <p>Would there be any problem (i.e., increased chance of collisions) with me using the SHA1 hashing function and just breaking off the first 32 bits to store as my hash value?</p> http://stackoverflow.com/questions/389509/how-does-the-so-voter-fraud-detection-mechanism-work 3 How does the SO voter fraud detection mechanism work? [closed] raven 2008-12-23T17:24:04Z 2009-09-03T14:51:09Z <p>A recent post on the SO blog <a href="http://blog.stackoverflow.com/2008/12/vote-fraud-and-you/" rel="nofollow">Voter Fraud and You</a> states that the SO team has implemented a voter fraud detection mechanism. I look at the user board and noticed at least one user took a major hit as a result. I'd like to know how it works. No, not so that I can better circumvent it, but I'd just like to know that it is fair.</p> http://stackoverflow.com/questions/1357475/how-to-remove-untracked-files-from-a-perforce-working-tree/1359530#1359530 3 Answer by raven for How to remove untracked files from a Perforce working tree? raven 2009-08-31T21:32:26Z 2009-08-31T23:26:47Z <p>There is no equivalent. Perforce has no command to remove files that are not under its control. You can see them in P4V, on the Workspace tab (they have plain white icons rather than the lined icons with the green dot) and delete them manually. If you want to automate the process, the easiest thing to do would be to remove the files from your workspace, delete everything in the directory, then sync it back up. A batch file to do it would look something like this:</p> <pre><code>p4 sync "//depot/someFolder/...#0" erase C:\projects\someFolder\*.* /s /q /f rd C:\projects\someFolder /s /q p4 sync -f "//depot/someFolder/..." </code></pre> <p>The first line is optional if you use the force switches on the erase and sync commands.</p> <p><hr /></p> <p>That solution has its drawbacks however. If you're currently working on any of the files, you obviously don't want to wipe them out. Also, a full sync can take quite a while if there is a huge amount of data in the directory tree you wish to clean.</p> <p>A better way to do it would be to have your clean utility (I think we've grown beyond a batch file at this point) grab the list of files under version control using the <code>p4 files</code> command. Then iterate through all the files in the directory, deleting those that don't appear on the list.</p> http://stackoverflow.com/questions/1323470/how-do-i-tell-which-tab-you-are-moving-from-to-in-a-net-tab-control/1323583#1323583 1 Answer by raven for How do I tell which tab you are moving from/to in a .NET tab control? raven 2009-08-24T17:05:44Z 2009-08-24T17:14:27Z <p>You can get the index of the tab the user is moving away from with the Deselecting event and store it in a variable for later use:</p> <pre><code>Private Sub TabControl1_Deselecting(ByVal sender As System.Object, ByVal e As System.Windows.Forms.TabControlCancelEventArgs) Handles TabControl1.Deselecting someClassLevelVariable = e.TabPageIndex End Sub </code></pre> <p>You want put code to prevent the switch in the Selecting event. Here's an example in VB.NET that will prevent you from selecting tab 2 on a tab control:</p> <pre><code>Private Sub TabControl1_Selecting(ByVal sender As System.Object, ByVal e As System.Windows.Forms.TabControlCancelEventArgs) Handles TabControl1.Selecting If (e.TabPageIndex = 1) Then e.Cancel = True End If End Sub </code></pre> http://stackoverflow.com/questions/1234732/tcp-connection-problem-vb-net/1235700#1235700 0 Answer by raven for TCP Connection problem (vb .net) raven 2009-08-05T20:55:40Z 2009-08-05T20:55:40Z <p>Rather than router configuration, you could use a VPN. <a href="https://secure.logmein.com/products/hamachi/vpn.asp?lang=en" rel="nofollow">Hamachi</a> is free and easy.</p> http://stackoverflow.com/questions/1757140/reputation-fact Comment by raven on Reputation Fact... raven 2009-11-18T16:21:01Z 2009-11-18T16:21:01Z A point would be nice. http://stackoverflow.com/questions/1447417/openbasedir-globally Comment by raven on open_basedir globally raven 2009-11-11T15:21:41Z 2009-11-11T15:21:41Z @gnarf: tagging as &quot;belongs-on-serverfault&quot; is not the same as voting to close. You have the rep, use the close link. See this post on meta: <a href="http://meta.stackoverflow.com/questions/4128/change-the-belongs-on-serverfault-tag-when-a-question-is-moved-to-serverfault/4211#4211" rel="nofollow" title="change the belongs on serverfault tag when a question is moved to serverfault">meta.stackoverflow.com/questions/4128/&hellip;</a> http://stackoverflow.com/questions/1472875/securing-exchange-2003-server-on-iis-6-0 Comment by raven on securing Exchange 2003 Server on IIS 6.0 raven 2009-11-11T15:15:39Z 2009-11-11T15:15:39Z I see there is an account at serverfault.com named &quot;eykanal&quot;, so I assume you found it. However, the accounts aren't linked. I've voted to close this question as &quot;belongs on serverfault.com&quot;. When four more users do the same, it will be migrated there. http://stackoverflow.com/questions/1524445/how-can-i-install-front-page-server-extensions-in-iis-6 Comment by raven on How can I install Front Page server extensions in IIS 6 raven 2009-11-10T13:35:53Z 2009-11-10T13:35:53Z @Lucero: tagging is not the same as voting to close! Use the <code>close</code> link. Also, have a look at this disucssion on meta <a href="http://meta.stackoverflow.com/questions/4128/change-the-belongs-on-serverfault-tag-when-a-question-is-moved-to-serverfault/4211#4211" rel="nofollow" title="change the belongs on serverfault tag when a question is moved to serverfault">meta.stackoverflow.com/questions/4128/&hellip;</a> http://stackoverflow.com/questions/55449/can-you-ignore-a-file-in-perforce/55509#55509 Comment by raven on Can you "ignore" a file in Perforce? raven 2009-11-03T20:12:37Z 2009-11-03T20:12:37Z @dgrant: How can you say this is not useful when it does what was asked? So what if you have to put it in every workspace? How hard is it to copy and paste some text? http://stackoverflow.com/questions/1662600/why-does-visual-studio-2008-tell-me-9-8999999999999995-0-000000000000000555/1663725#1663725 Comment by raven on Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827? raven 2009-11-02T21:19:26Z 2009-11-02T21:19:26Z Yep, I'm quite the addle-pate. http://stackoverflow.com/questions/1662600/why-does-visual-studio-2008-tell-me-9-8999999999999995-0-000000000000000555/1662642#1662642 Comment by raven on Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827? raven 2009-11-02T18:32:11Z 2009-11-02T18:32:11Z You didn't read the question. http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-ai/1632281#1632281 Comment by raven on What is the best Battleship AI? raven 2009-10-30T13:09:32Z 2009-10-30T13:09:32Z The ship with two holes is not a goddamn <i>sub</i>, it's a goddamn <i>PT boat</i>. The sub has three holes. :) http://stackoverflow.com/questions/1511302/how-to-deal-with-vb6-vbp-file-references-changing Comment by raven on How to deal with VB6 .vbp file references changing raven 2009-10-02T19:42:57Z 2009-10-02T19:42:57Z As C-Pound Guru said in his answer, only check in the .vbp file when you really have to, which isn't very often. Also, I asked a simlar question a while back: <a href="http://stackoverflow.com/questions/167580/is-there-a-way-to-prevent-the-vb6-compiler-from-shuffling-the-contents-of-files" rel="nofollow" title="is there a way to prevent the vb6 compiler from shuffling the contents of files">stackoverflow.com/questions/167580/&hellip;</a> http://stackoverflow.com/questions/513834/where-can-i-find-peer-code-review Comment by raven on Where can I find Peer Code Review? raven 2009-10-02T15:57:32Z 2009-10-02T15:57:32Z See: <a href="http://stackoverflow.com/questions/1542/online-peer-code-review" rel="nofollow" title="online peer code review">stackoverflow.com/questions/1542/&hellip;</a> http://stackoverflow.com/questions/1509288/is-there-a-site-where-i-can-post-snippets-of-code-for-review Comment by raven on Is there a site where I can post snippets of code for review? raven 2009-10-02T15:54:31Z 2009-10-02T15:54:31Z This question was asked here: <a href="http://stackoverflow.com/questions/1542/online-peer-code-review" rel="nofollow" title="online peer code review">stackoverflow.com/questions/1542/&hellip;</a> http://stackoverflow.com/questions/1133523/what-is-the-ms-access-sql-syntax-to-create-a-field-of-type-hyperlink/1133545#1133545 Comment by raven on What is the MS Access SQL syntax to create a field of type Hyperlink? raven 2009-10-01T20:21:49Z 2009-10-01T20:21:49Z Ok, I'm convinced it can't be done. http://stackoverflow.com/questions/1437964/best-and-shortest-way-to-evaluate-mathematical-expressions Comment by raven on Best and shortest way to evaluate mathematical expressions raven 2009-09-17T12:01:28Z 2009-09-17T12:01:28Z I asked a similar question a while back. You may want to look at some of those answers: <a href="http://stackoverflow.com/questions/234217/is-it-possible-to-translate-a-user-entered-mathematical-equation-into-c-code-at" rel="nofollow" title="is it possible to translate a user entered mathematical equation into c code at">stackoverflow.com/questions/234217/&hellip;</a> http://stackoverflow.com/questions/93105/whats-the-best-way-to-determine-if-a-character-is-a-letter-in-vb6/109201#109201 Comment by raven on What's the best way to determine if a character is a letter in VB6? raven 2009-09-15T15:46:01Z 2009-09-15T15:46:01Z Yeah, your IsLetter implementation was neat, but not complete. This is much better. http://stackoverflow.com/questions/1341538/where-does-visual-studio-save-scm-related-info/1389770#1389770 Comment by raven on Where does Visual Studio save SCM-related info? raven 2009-09-15T13:10:52Z 2009-09-15T13:10:52Z Another reason to hate Visual Studio's SCC plugin. They store version control information in the project file. Madness!