User Patrick Cuff - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T07:37:56Zhttp://stackoverflow.com/feeds/user/7903http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/425044/how-to-estimate-a-programming-task-if-you-have-no-experience-in-it/425123#4251234Answer by Patrick Cuff for How to estimate a programming task if you have no experience in it.Patrick Cuff2009-01-08T17:21:51Z2009-11-27T17:12:38Z<p>Break down your estimate into:</p>
<ul>
<li><strong>Known knowns</strong>; how long will it take to do what you know how to do. You should be able to give this estimate with a high degree of confidence.</li>
<li><strong>Known unknowns</strong>; how long do you think it will take to do what you don't know how to do. You can use a method like dacracot's to give different levels of confidence on this estimate.</li>
<li><strong>Unknown unknowns</strong>; this is the real time black hole. These are the things that rear up at the most inopportune times and bite you in the arse. Provide a range for the estimate with justification based on the risks you anticipate.</li>
</ul>
<p>Offer to adjust the estimate and certain milestones along the way. Any unknown unknowns will become known unknowns, the known unknowns should become known knowns as you gain experience, and the estimate of you known knowns can be adjusted based on progress to date. You can do an initial estimate, then re-estimate when you about 25% done, then again at 50%, then again at 85%. At each milestone your estimate should start converging on the actual time the tasks will take.</p>
http://stackoverflow.com/questions/1738985/why-processorarchitecture-always-returns-x86-instead-of-amd64/1741699#17416990Answer by Patrick Cuff for Why %processor_architecture% always returns x86 instead of AMD64Patrick Cuff2009-11-16T11:47:33Z2009-11-16T11:47:33Z<p>You can also get this from an environment variable, <code>PROCESSOR_ARCHITEW6432</code>. See <a href="http://blogs.msdn.com/david.wang/archive/2006/03/26/HOWTO-Detect-Process-Bitness.aspx" rel="nofollow">this</a> article for more info.</p>
http://stackoverflow.com/questions/1725936/need-help-in-finding-the-root-cause-in-this-wrong-batch-command/1726509#17265092Answer by Patrick Cuff for Need help in finding the root cause in this wrong batch commandPatrick Cuff2009-11-13T01:06:34Z2009-11-14T00:23:49Z<p>EDIT: I think <a href="http://blogs.msdn.com/david.wang/archive/2006/03/26/HOWTO-Detect-Process-Bitness.aspx" rel="nofollow">this</a> may provide an explanation and solution to your problem, and in batch too :)</p>
<p>The spaces around the <code>==</code> may be causing your problem.</p>
<p>You're actually comparing the value of <code>%processor_architecture%[space]</code> to <code>[space]AMD64</code></p>
<p>Try:</p>
<pre><code>IF %processor_architecture%==AMD64...
</code></pre>
<p>If Command Extensions are enabled you can also do:</p>
<pre><code>IF /I %processor_architecture% equ AMD64
</code></pre>
<p>(the <code>/I</code> switch makes the IF case insensitive)</p>
http://stackoverflow.com/questions/1702762/how-to-create-an-empty-file-in-the-command-line/1703040#17030402Answer by Patrick Cuff for How to create an empty file in the command line?Patrick Cuff2009-11-09T19:02:03Z2009-11-09T19:02:03Z<p>Here's another way:</p>
<pre><code>cd. > filename
</code></pre>
http://stackoverflow.com/questions/1649350/how-to-bulk-up-database-for-performance-test0How To "Bulk Up" Database for Performance Test?Patrick Cuff2009-10-30T11:50:34Z2009-10-30T11:57:18Z
<p>I have an Oracle 10g database with about 11,000,000 rows of data. It's good for our usually performance tests, but I now have to test our app for a customer that will have an estimated 350,000,000 rows of data.</p>
<p>Is there a tool or technique that I can use to "bulk up" the tables in my database to this size? Ideally, I'd like to use the existing data's distribution of values for certain fields as a "model" for the new data.</p>
<p>I found a reference to a tool called <a href="http://www.thefreelibrary.com/Oracle+Database+Applications+are+Delivered+Faster,+With+Higher+...-a020460790" rel="nofollow">DataShark</a> from Hardball Software that does exactly what I need, but it appears as if the company is defunct and the tool no longer exists. Does anyone know if there are any similar tools out there?</p>
http://stackoverflow.com/questions/440061/convert-12-hour-date-time-to-24-hour-date-time1Convert 12-hour date/time to 24-hour date/timePatrick Cuff2009-01-13T17:59:28Z2009-10-23T05:36:43Z
<p>I have a tab delimited file where each record has a timestamp field in 12-hour format:</p>
<blockquote>
<p>mm/dd/yyyy hh:mm:ss [AM|PM].</p>
</blockquote>
<p>I need to quickly convert these fields to 24-hour time:</p>
<blockquote>
<p>mm/dd/yyyy HH:mm:ss.</p>
</blockquote>
<p>What would be the best way to do this? I'm running on a Windows platform, but I have access to sed, awk, perl, python, and tcl in addition to the usual Windows tools.</p>
http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/537608#5376083Answer by Patrick Cuff for Where do you keep your code?Patrick Cuff2009-02-11T16:28:59Z2009-10-20T14:29:06Z<p>D:\sandbox</p>
<p><strong>Addendum:</strong> Technically speaking, your <em>projects</em> are what's in source control. Your <em>sandbox</em> on the other hand is a local copy of the projects that you're <em>currently working on</em>. Your sandbox doesn't need to be an up-to-date clone of your entire project repository. Therefore one could say that it makes more sense to call your local directory "sandbox" rather than "projects", since your local disk is not the best place to store your projects in the first place.</p>
http://stackoverflow.com/questions/1589050/how-to-profile-network-utilization-of-a-net-application/1589419#15894190Answer by Patrick Cuff for How to profile network utilization of a .NET applicationPatrick Cuff2009-10-19T15:35:48Z2009-10-19T15:35:48Z<p>You can try the <a href="http://www.microsoft.com/Downloads/details.aspx?FamilyID=119f3477-dced-41e3-a0e7-d8b5cae893a3&displaylang=en" rel="nofollow">MS Visual Roundtrip Analyzer</a> (which uses <a href="http://www.microsoft.com/Downloads/details.aspx?familyid=983B941D-06CB-4658-B7F6-3088333D062F&displaylang=en" rel="nofollow">MS Network Monitor</a>), or perhaps just Network Monitor itself.</p>
http://stackoverflow.com/questions/1575066/how-do-i-data-mine-text/1575371#15753711Answer by Patrick Cuff for How do I data mine text?Patrick Cuff2009-10-15T22:02:55Z2009-10-15T22:02:55Z<p>I think what you want to do is called "<a href="http://en.wikipedia.org/wiki/Named%5Fentity%5Frecognition" rel="nofollow">entity extraction</a>". This Wikipedia article has a good overview and a list of apps, including open source ones. I used to work on one of the commercial tools in the list, but not in a programming capacity, so I can't help you there.</p>
http://stackoverflow.com/questions/1542882/how-to-get-entire-svn-commit-message-in-window-bat/1543103#15431030Answer by Patrick Cuff for How to get entire svn commit message in window bat?Patrick Cuff2009-10-09T10:54:17Z2009-10-09T10:54:17Z<p><code>FOR /F</code> operates over the lines in the input. Try Changing <code>@SET MSG=%%a</code> to <code>@SET MSG=!MSG! %%a</code>.</p>
http://stackoverflow.com/questions/1373949/graphing-time-intervals-in-access/1374050#13740501Answer by Patrick Cuff for Graphing time intervals in AccessPatrick Cuff2009-09-03T15:15:47Z2009-09-03T15:15:47Z<p>I think it would be easier to have your query just output the StudyStartDateTime,</p>
<pre><code>SELECT s.studyid,
s.studystartdatetime,
FROM dbo_study_viewx211_rpt AS s
</code></pre>
<p>then switch to "Pivot Table" view and use the grouping features of the pivot table to do your formatting and grouping.</p>
http://stackoverflow.com/questions/1350910/cmd-search-for-program-and-variable-directory/1356940#13569401Answer by Patrick Cuff for CMD: Search for program and variable directoryPatrick Cuff2009-08-31T11:08:05Z2009-08-31T11:13:06Z<p>This script will print out the full paths where a file is found:</p>
<pre><code>@echo OFF
for %%D in (c,d,e) do (
If exist %%D:\ (
for /f "delims=" %%f in ('dir /b /s %%D:\%1 2^> NUL') do (
@echo %1 found: %%~dpf
)
)
)
</code></pre>
<p><code>%%~dpf</code> will have the path to the file for each occurrence found (there may be more than one). If you need to act on these paths you have several options:</p>
<ol>
<li><p>Add your file processing commands after the <code>@echo %1 found: %%~dpf</code> line, using <code>%%~dpf</code> as the variable that contains the full path to the file.</p></li>
<li><p>Write the path out to a temp text file (<code>@echo %%~dpf >> temp.out</code>), then read that back in another <code>for</code> loop to process.</p></li>
<li><p>Concatenate the path to a local environment variable (<code>set FILE_PATHS=!FILE_PATHS!;%%~dpf</code>), then parse that var in another <code>for</code> loop to process.</p></li>
</ol>
http://stackoverflow.com/questions/1317234/what-is-the-simplest-built-in-way-in-windows-to-copy-and-rename-files-where-the-r/1317298#13172981Answer by Patrick Cuff for What is the simplest built in way in windows to copy and rename files where the rename involves appending some before the extensionPatrick Cuff2009-08-22T23:23:02Z2009-08-22T23:23:02Z<p>To add to Preet's answer, the following batch script renames all files that match a mask you pass in. You can either:</p>
<ol>
<li>Append a pattern to the end of the filename (<code>file1.dll</code> ==> <code>file1_a.dll</code>).</li>
<li>Insert a pattern at the beginning of the filename (<code>file1.dll</code> ==> <code>a_file1.dll</code>).</li>
<li>Replace the filename with a pattern and sequence number (<code>file1.dll</code> ==> <code>mydll_1.dll</code>; <code>file2.dll</code> ==> <code>mydll_2.dll</code>).</li>
</ol>
<p><strong>RenameAll.bat</strong></p>
<pre><code>@echo OFF
setlocal
@echo.
set /p PATTERN="Enter text pattern to add to file names: "
@echo %PATTERN%
:GETLOC
@echo.
@echo (A)ppend pattern to end of filename
@echo (I)nsert pattern at beggining of filename
@echo (R)eplace filename with pattern and sequence number
@echo ---------
@echo (Q)uit
@echo.
set /p LOCATION="Enter choice: "
@echo %LOCATION%
if /I '%LOCATION%' equ 'A' goto FILELOOP
if /I '%LOCATION%' equ 'I' goto FILELOOP
if /I '%LOCATION%' equ 'R' goto FILELOOP
if /I '%LOCATION%' equ 'Q' goto END
@echo Choice %LOCATION% invalid, try again.
goto :GETLOC
SET /A SEQ_NO=0
:FILELOOP
@echo Renaming file %1...
if %1.==. goto END
@echo %1
SET /A SEQ_NO=SEQ_NO+1
if /I '%LOCATION%' equ 'A' for %%i in (%1) do ren %%i "%%~ni%PATTERN%%%~xi"
if /I '%LOCATION%' equ 'I' for %%i in (%1) do ren %%i "%PATTERN%%%~ni%%~xi"
if /I '%LOCATION%' equ 'R' for %%i in (%1) do ren %%i "%PATTERN%%SEQ_NO%%%~xi"
SHIFT
goto FILELOOP
:END
@echo Rename batch complete.
::pause
endlocal
</code></pre>
<p>If you put a shortcut to this in you <code>SendTo</code> folder, you can select files in Windows Explorer, right-click, and pass them through the script to rename all in one go. With a little work you can get this to copy instead of rename (or both).</p>
http://stackoverflow.com/questions/688867/access-compare-database-schema/1267750#12677500Answer by Patrick Cuff for Access Compare Database SchemaPatrick Cuff2009-08-12T18:02:27Z2009-08-12T18:02:27Z<ol>
<li>Use the Access database Documenter (Tools\Analyze\Documenter) to create a report of your database objects. </li>
<li>Export this report as a text file (right-click in report, Export..., Save as type Text Files). </li>
</ol>
<p>Do this for each of your databases and compare the text files using your diff tool of choice.</p>
http://stackoverflow.com/questions/535980/how-did-you-get-your-first-programming-job/536952#536952363Answer by Patrick Cuff for How did you get your first programming job?Patrick Cuff2009-02-11T14:13:54Z2009-08-11T00:04:55Z<p>True story:</p>
<p>I was in my first year of college, spring semester, when my older sister calls me to see if I wanted to apply for a summer internship at this company where she just started working. "Yes, please" I said, hoping to avoid another summer of washing dishes.</p>
<p>She called me back a few days later. "Can you come in for an interview?"</p>
<p>"Sure, when?"</p>
<p>"Tomorrow. 9:00am".</p>
<p>Luckily I didn't have any quizzes or tests the next day, so I hopped into my P.O.S. Nissan Sentra and drove 3 1/2 hours home. When I got there, I realized that the only suit I had was a tan corduroy leisure suit I last wore in 9th grade. The mall was closed, so I had to make do. Fortunately I was the same height as I was in 9th grade, but the trousers were a tight squeeze.</p>
<p>The next morning I showed up for the interview. I was there with a few other applicants, all smartly dressed. I looked like a reject from a Leisure Suit Larry game. We were taken into a room to do a "computer aptitude" test. We were given an hour to complete the test, but I was done in 20 minutes. I spent the next 40 minutes double checking my answers, worrying that I F-ed something up (it couldn't be <em>that</em> easy) and sucking in my gut to keep my pants from bursting.</p>
<p>We returned to the waiting area. Eventually I was ushered to an office to meet with an HR person. We shook hands, and as I went to sit down, I heard a loud ripping sound.
"What was that?" the HR woman asks. Nervously I look down. The crotch of my pants was ripped wide open. Front to back.</p>
<p>"I think my pants just ripped."</p>
<p>"Oh? Let me see."</p>
<p>"That's OK."</p>
<p>She leans over her desk and can see the extent of the damage. "I think I have some safety pins here" she said, rummaging through her desk drawer. "Yes, here they are."</p>
<p>I stood up and nervously tried to re-attach my pants as best I could. She offered to help, and was giggling the whole time. We proceeded with the interview, which was only about 15 minutes long. I couldn't wait for it to end so I could high tail it out of there. Only I couldn't leave. That was just round 1. I was slated to interview with two managers in the MIS department, and they wanted to take me out to lunch with a few of their team leads afterwards. Great. Back to the waiting area.</p>
<p>A half hour later someone came down to escort me up to MIS. "So, you must be the flasher". We walked from the waiting area to the other side of the building, through the crowded atrium, up two flights of stairs, to the manager's office. It seemed that everyone we passed on the way was giggling and snickering. I was introduced to the manager, and sat down to begin the interview. "RIP!". One of the safety pins just ripped through the fabric. He laughs. I see my application on his desk. At the top, next to my name, is written "Flash".</p>
<p>I go through interview after interview, with managers and leads, for what seemed like hours. Finally, the interviews are over, and I head back to the first manager's office. "So, we'd like to take you out to lunch. What would you like?"</p>
<p>"Thanks, but I'm not really hungry," I said.</p>
<p>"Nonsense, it's the least we can do for all your trouble coming in on such short notice." I could see there was no getting out of it. It seemed like the whole MIS department was congregating in the halls, waiting for us to go to lunch. We piled into a few cars and went to a local restaurant. Everyone was really nice, but I <em>knew</em> they were laughing at me. People tried to make small talk with me, but all I could keep thinking of was to get the hell out of there. After lunch I had to return to HR, again.</p>
<p>"Thanks for coming in today. We'll contact you next week with our decision."</p>
<p>Finally, I could leave! I drove home as fast as I could and changed into clothes that fit. The tan corduroy leisure suit went right in the trash. I drove back to school, throughly exhausted and dejected. There was no way I would get the job. It was looking like another summer of washing dishes. </p>
<p>I got a call in the middle of the next week from the woman in HR. "Congratulations! We'd like to offer you one of our summer intern positions."</p>
<p>"Wow! Really?" I said. "I must have done pretty well on that aptitude test."</p>
<p>"Yes, you did, but we really liked the way you handled yourself under pressure. If that had happened to me, I would have left the interview. You must have been so embarrassed." I accepted the offer, and we agreed I'd start the Monday after the semester ended. "We're looking forward to seeing you again, but you may want to buy a new suit before you start."</p>
http://stackoverflow.com/questions/1246053/ms-access-freezes-up-after-text-import0MS Access Freezes Up After Text ImportPatrick Cuff2009-08-07T17:37:09Z2009-08-08T15:49:50Z
<p>I have the following code to import a delimited file into an Access 2003 database:</p>
<pre><code>Public Function importTextFile(sFile As String, _
sTable As String, _
sSpecification As String)
On Error GoTo importTextFile_EH
' Validate arguments to see if the objects exist; if not, give a message
' and exit
If Not FileExists(sFile) Then
MsgBox "File " & sFile & " does not exist; import terminated.", _
vbCritical + vbOKOnly, _
"Error"
Exit Function
End If
If Not TableExists(sTable) Then
MsgBox "Table " & sTable & " does not exist; import terminated.", _
vbCritical + vbOKOnly, _
"Error"
Exit Function
End If
If Not SpecExists(sSpecification) Then
MsgBox "Import Specification " & sSpecification & _
" does not exist; import terminated.", _
vbCritical + vbOKOnly, _
"Error"
Exit Function
End If
' Display a warning to let the user cancel if this is run by mistake.
If vbYes = MsgBox("WARNING: This will delete all data currently in " & _
sTable & "; do you wish to continue?", _
vbExclamation + vbYesNo, _
"Import Text File") Then
DoCmd.Hourglass Yes
' Cleardown the data in the table.
DoCmd.Echo Yes, "Deleting data in " & sTable & " table..."
DoCmd.SetWarnings False
DoCmd.RunSQL "DELETE " & sTable & ".* FROM " & sTable & ";"
DoCmd.SetWarnings True
' Import the text file into the table.
DoCmd.TransferText acImportDelim, sSpecification, sTable, sFile
DoCmd.Echo Yes, "Import complete"
DoCmd.Hourglass No
Else
DoCmd.Echo Yes, "Import cancelled."
End If
Exit Function
importTextFile_EH:
Debug.Print Err.Number & "-" & Err.Description
End Function
</code></pre>
<p>I can call this function from a Macro using <code>RunCode</code> with argument <code>Function Name</code> valued as </p>
<pre><code>importTextFile (Application.CurrentProject.Path & "\" & _
"batch_results.txt", _
"BatchEngineResults", _
"specResults")
</code></pre>
<p>and it works fine. I can also call it from the Immediate window and it works without any problems.</p>
<p>However, if I call the function from a form (from the <code>Click</code> event of a command button), then Access freezes up. It looks like the import completes (the Import progress bar in the Access Database window status bar shows the import running and finishing), but then Access becomes unresponsive, both the form and the Access database window. Task Manager doesn't indicate that Access is hung (the task status is "Running") and I can close Access via the Close button on the title bar. When I open the database again, my table has all the data from the text file, so the import did work.</p>
<p>I've also tried calling the macro from the form, but get the same results.</p>
<p>Anyone have any ideas?</p>
<p><strong>UPDATE:</strong> I tried a call to MsgBox after I call the function:</p>
<pre><code>importTextFile (Application.CurrentProject.Path & "\" & _
"batch_results.txt", _
"BatchEngineResults", _
"specResults")
MsgBox "After Import"
</code></pre>
<p>A message box appears, and is responsive. When I dismiss it, Access freezes up as before. Do you think this means I may have an issue somewhere else with the form, and not with this function?</p>
http://stackoverflow.com/questions/1145231/how-can-i-make-a-program-runnable-from-the-commandline-without-typing-its-full-pa/1145828#11458280Answer by Patrick Cuff for How can I make a program runnable from the commandline without typing its full path?Patrick Cuff2009-07-17T21:43:09Z2009-07-17T21:43:09Z<p>To eliminate the need to type <code>python</code> before your script, you can do the following:</p>
<ol>
<li>Add <code>python.exe</code> to your system PATH environment variable, if it's not already there.</li>
<li>Add <code>;.py</code> to the end of your PATHEXT system environment variable.</li>
</ol>
<p>Then, instead of typing</p>
<pre><code>> C:\Python\python.exe myscript.py
</code></pre>
<p>or</p>
<pre><code>> python myscript.py
</code></pre>
<p>you can just type</p>
<pre><code>> myscript.py
</code></pre>
http://stackoverflow.com/questions/1142580/good-link-or-book-for-basics-and-theory-of-version-control/1142631#11426313Answer by Patrick Cuff for Good link or book for basics and theory of version controlPatrick Cuff2009-07-17T11:07:55Z2009-07-17T11:13:41Z<p><a href="http://www.scmpatterns.com/book/" rel="nofollow">Software Configurations Patterns</a>: Gives a good overview of basic SCM theory and application, with an "agile" slant.</p>
<p><a href="http://www.apress.com/book/view/1590590651" rel="nofollow">Real World Software Configuration Management</a>: Another good book that covers theory and some of the more popular version control tools.</p>
<p><a href="http://www.pragprog.com/categories" rel="nofollow">The Pragmatic Bookshelf</a> has books on SVN, CVS and GIT (scroll down to the Tools section).</p>
<p>Perforce has a page of <a href="http://www.perforce.com/perforce/papers/bestpractices.html" rel="nofollow">High-level Best Practices in SCM</a>.</p>
<p><a href="http://www.cmcrossroads.com/" rel="nofollow">CM Crossroads</a> is a good site for drilling down into SCM details.</p>
http://stackoverflow.com/questions/469799/what-are-the-appropriate-uses-for-ms-access4What are the appropriate uses for MS Access?Patrick Cuff2009-01-22T16:17:19Z2009-06-24T07:31:41Z
<p>It's the Office app everyone loves to hate ;)</p>
<p>I admit that it's often abused or misused, but it does come in handy on occasion. So what do you think? Are there appropriate uses for Access, or should MS jetison it from the Office suite?</p>
http://stackoverflow.com/questions/1017432/changing-excel-2000-pivot-chart-unit/1017924#10179240Answer by Patrick Cuff for Changing Excel 2000 pivot chart unitPatrick Cuff2009-06-19T13:20:26Z2009-06-19T13:20:26Z<p>You can group the X axis by more than one value, such as by Days and Months. Unfortunately it doesn't eliminate the clutter of the labels for each day, but it does superimpose the Month on the axis.</p>
http://stackoverflow.com/questions/995627/where-can-i-find-c-coding-exercises-to-practice/995655#9956552Answer by Patrick Cuff for Where can I find C coding exercises to practice?Patrick Cuff2009-06-15T11:44:14Z2009-06-15T11:44:14Z<p><a href="http://codekata.pragprog.com/2007/01/code%5Fkata%5Fbackg.html#more" rel="nofollow">CodeKata</a> has lots of exercises, but they're language agnostic.</p>
http://stackoverflow.com/questions/982659/quickly-create-large-file-on-a-windows-system/986041#9860414Answer by Patrick Cuff for Quickly create large file on a windows system?Patrick Cuff2009-06-12T10:37:38Z2009-06-12T10:37:38Z<p><code>fsutil file createnew <filename> <length></code></p>
<p>where <code><length></code> is in bytes.</p>
http://stackoverflow.com/questions/980791/number-of-tokens-limit-in-a-for-command-in-a-windows-batch-script/980847#9808471Answer by Patrick Cuff for Number of tokens limit in a FOR command in a Windows batch scriptPatrick Cuff2009-06-11T12:40:28Z2009-06-11T12:40:28Z<p>From <code>for /?</code>:</p>
<blockquote>
<p>%i is explicitly declared in the for
statement and the %j and %k are
implicitly declared via the tokens=
option. You can specify up to 26
tokens via the tokens= line, provided
it does not cause an attempt to
declare a variable higher than the
letter 'z' or 'Z'. Remember, FOR
variables are single-letter, case
sensitive, global, and you can't have
more than 52 total active at any one
time.</p>
</blockquote>
http://stackoverflow.com/questions/916413/problem-with-user-input-in-my-batch-file/916757#9167571Answer by Patrick Cuff for Problem with user input in my batch filePatrick Cuff2009-05-27T16:33:39Z2009-05-27T16:33:39Z<p>Try using delayed expansion when testing <code>delBuild</code>:</p>
<pre><code>setlocal enableextensions enabledelayedexpansion
IF EXIST TH_BUILD_* (
ECHO A current build of Test Harness exists.
set /p delBuild=Delete preexisting build [y/n]?:
if "!delBuild!"=="y" (
GOTO deleteandcontinue
) else (
exit
)
)
:deleteandcontinue
@echo At deleteandcontinue
</code></pre>
<p><code>%var%</code> variables are expanded when the command is read. The set of commands between the parens are treated as a single command, so <code>delBuild</code> doesn't exist when you go to test. With the delayed expansion, the variables are expanded when the command is executed, so at the time of the test, <code>delBuild</code> has a value.</p>
http://stackoverflow.com/questions/888264/testing-for-file-attribute-in-batch-file/888385#8883852Answer by Patrick Cuff for Testing for file attribute in batch filePatrick Cuff2009-05-20T14:46:28Z2009-05-21T11:42:55Z<p>Something like this should work:</p>
<pre><code>@echo OFF
SETLOCAL enableextensions enabledelayedexpansion
set INPUT=test*
for %%F in (%INPUT%) do (
set ATTRIBS=%%~aF
set CURR_FILE=%%~nxF
set READ_ATTRIB=!ATTRIBS:~1,1!
@echo File: !CURR_FILE!
@echo Attributes: !ATTRIBS!
@echo Read attribute set to: !READ_ATTRIB!
if !READ_ATTRIB!==- (
@echo !CURR_FILE! is read-write
) else (
@echo !CURR_FILE! is read only
)
@echo.
)
</code></pre>
<p>When I run this I get the following output:</p>
<pre>
File: test.bat
Attributes: --a------
Read attribute set to: -
test.bat is read-write
File: test.sql
Attributes: -ra------
Read attribute set to: r
test.sql is read only
File: test.vbs
Attributes: --a------
Read attribute set to: -
test.vbs is read-write
File: teststring.txt
Attributes: --a------
Read attribute set to: -
teststring.txt is read-write
</pre>
http://stackoverflow.com/questions/480674/is-there-a-profiler-for-windows-scripting-host-code4Is There a Profiler for Windows Scripting Host Code?Patrick Cuff2009-01-26T17:45:11Z2009-05-16T15:17:49Z
<p>Are there any profilers that can profile code that runs under WSH (VBScript, JavaScript, WSF)? Other than hand instrumenting with trace statements, what's a good way to profile code running under WSH?</p>
http://stackoverflow.com/questions/867940/parse-quoted-text-from-within-batch-file/868278#8682783Answer by Patrick Cuff for Parse quoted text from within batch filePatrick Cuff2009-05-15T12:03:24Z2009-05-15T12:20:43Z<p>Something like this will work, but only if you have one quoted string per line of input:</p>
<pre><code>@echo OFF
SETLOCAL enableextensions enabledelayedexpansion
set TEXT=Foo: Lorem Ipsum 'The quick brown fox' Bar
@echo %TEXT%
for /f "tokens=2 delims=^'" %%A in ("abc%TEXT%xyz") do (
set SUBSTR=%%A
)
@echo %SUBSTR%
</code></pre>
<p>Output, quoted string in the middle:</p>
<pre><code>Foo: Lorem Ipsum 'The quick brown fox' Bar
The quick brown fox
</code></pre>
<p>Output, quoted string in the front:</p>
<pre><code>'The quick brown fox' Bar
The quick brown fox
</code></pre>
<p>Output, quoted string at the end:</p>
<pre><code>Foo: Lorem Ipsum 'The quick brown fox'
The quick brown fox
</code></pre>
<p>Output, entire string quoted:</p>
<pre><code>'The quick brown fox'
The quick brown fox
</code></pre>
http://stackoverflow.com/questions/831122/set-variable-to-result-of-find-in-batch-file/832430#8324301Answer by Patrick Cuff for Set variable to result of "Find" in batch-filePatrick Cuff2009-05-07T00:39:28Z2009-05-07T00:39:28Z<p>You don't need to use the <code>for</code> command; <code>find</code> will set the <code>ERRORLEVEL</code> to one of these values, based on the result:</p>
<ul>
<li>0, At least one match was found.</li>
<li>1, no matches were found.</li>
<li>2 or more, an error occurred.</li>
</ul>
<p>Since it looks like you just want to see if the transfer completed, and not the total count of times the string appears, you can do something like this:</p>
<pre><code>@echo OFF
@find /c /i "Transfer Complete" "C:\test path\ftp.LOG" > NUL
if %ERRORLEVEL% EQU 0 (
@echo Success
) else (
@echo Failure
)
</code></pre>
http://stackoverflow.com/questions/809790/batch-file-into-a-variable/824502#8245020Answer by Patrick Cuff for Batch File - Into a VariablePatrick Cuff2009-05-05T11:41:14Z2009-05-05T11:41:14Z<p>It looks like you're having some problem with reading through the whole file to get the number of lines. This solution will find just the strings you're interested in and get the values:</p>
<pre><code>@echo off
setlocal enableextensions enabledelayedexpansion
:: Get number of files to delete.
for /f "usebackq tokens=1-7" %%A in (`findstr /b "Number of files to delete:" file.txt`) do (
set NUM_FILES=%%F
)
:: Get total size of files.
for /f "usebackq tokens=1-8" %%A in (`findstr /b "Total size of files to delete:" file.txt`) do (
set TOTAL_SIZE=%%G
)
@echo Number of files = %NUM_FILES%
@echo Total size of files = %TOTAL_SIZE%
</code></pre>
<p>If the strings with the number of files and total size ever change, you'll have to change the script accordingly.</p>
http://stackoverflow.com/questions/809790/batch-file-into-a-variable/811010#8110102Answer by Patrick Cuff for Batch File - Into a VariablePatrick Cuff2009-05-01T11:14:01Z2009-05-01T11:39:49Z<p>Something like this should work:</p>
<pre><code>@echo off
setlocal enableextensions enabledelayedexpansion
:: Get the number of lines in the file
set LINES=0
for /f "delims==" %%I in (file.txt) do (
set /a LINES=LINES+1
)
:: Parse the last 2 lines and get the numbers into variable NUMS
set /a LINES=LINES-2
for /f "skip=%LINES% delims=" %%L in (file.txt) do (
for /f "tokens=1-2* delims=:" %%A in ("%%L") do (
for /f "tokens=1-2*" %%N in ("%%B") do set NUMS=!NUMS!%%N;
)
)
:: Parse variable NUMS
for /f "tokens=1-2* delims=;" %%A in ("%NUMS%") do (
set NUM_FILES=%%A
set TOTAL_SIZE=%%B
)
@echo Number of files = %NUM_FILES%
@echo Total size of files = %TOTAL_SIZE%
</code></pre>
http://stackoverflow.com/questions/1725936/need-help-in-finding-the-root-cause-in-this-wrong-batch-command/1726509#1726509Comment by Patrick Cuff on Need help in finding the root cause in this wrong batch commandPatrick Cuff2009-11-13T18:24:13Z2009-11-13T18:24:13Z@alice7: Did you clean up the errors in your code snippet above, or are they typos? Do you know for sure the <code>%processor_architecture%</code> environment variable will contain "AMD64", or is it always "x86"? Johannes Rossel's suggestion to use WMI may be the way to go.http://stackoverflow.com/questions/1649350/how-to-bulk-up-database-for-performance-test/1649374#1649374Comment by Patrick Cuff on How To "Bulk Up" Database for Performance Test?Patrick Cuff2009-10-30T12:41:13Z2009-10-30T12:41:13ZI was considering this, but was curious if there was a tool I could use rather than "roll my own". http://stackoverflow.com/questions/1649350/how-to-bulk-up-database-for-performance-test/1649370#1649370Comment by Patrick Cuff on How To "Bulk Up" Database for Performance Test?Patrick Cuff2009-10-30T12:38:30Z2009-10-30T12:38:30ZI don't think this will work, as it would duplicate primary key values and multiply foreign key values.http://stackoverflow.com/questions/350818/best-test-case-management-system/351288#351288Comment by Patrick Cuff on Best Test Case Management system?Patrick Cuff2009-10-20T20:03:49Z2009-10-20T20:03:49Z@Dean J; can you elaborate. My company is thinking of moving from our current bug tracking system (DevTrack) to using Quality Center...http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/537608#537608Comment by Patrick Cuff on Where do you keep your code?Patrick Cuff2009-10-20T20:00:41Z2009-10-20T20:00:41Z@Ates, I like your idea :)http://stackoverflow.com/questions/1350910/cmd-search-for-program-and-variable-directory/1356940#1356940Comment by Patrick Cuff on CMD: Search for program and variable directoryPatrick Cuff2009-10-19T12:21:01Z2009-10-19T12:21:01ZFor the 2ne one you would need another <code>for /f</code> loop operating over the file <code>temp.out</code>.http://stackoverflow.com/questions/1350910/cmd-search-for-program-and-variable-directory/1351036#1351036Comment by Patrick Cuff on CMD: Search for program and variable directoryPatrick Cuff2009-08-29T14:06:34Z2009-08-29T14:06:34ZYou could try <code>cd /d %%D:</code>; the <code>/d</code> switch will change to the drive specified, in addition to the directory. Enter <code>cd /?</code> from a command line to see if the <code>/d</code> switch is supported by your OS.http://stackoverflow.com/questions/1347384/best-tool-to-do-combinatorial-pairwise-testing/1347970#1347970Comment by Patrick Cuff on Best tool to do combinatorial/pairwise testing?Patrick Cuff2009-08-28T16:20:02Z2009-08-28T16:20:02ZI've used PICT, jenny and allpairs, and PICT is my favorite.http://stackoverflow.com/questions/488020/what-is-your-most-useful-sql-trick-to-avoid-writing-more-code/488070#488070Comment by Patrick Cuff on What is your most useful sql trick to avoid writing more code?Patrick Cuff2009-08-16T22:11:53Z2009-08-16T22:11:53Z@tuinstoel; thanks for the tip :)http://stackoverflow.com/questions/1246053/ms-access-freezes-up-after-text-import/1247695#1247695Comment by Patrick Cuff on MS Access Freezes Up After Text ImportPatrick Cuff2009-08-10T10:50:45Z2009-08-10T10:50:45ZFixing the DoCmd statements to use True/False instead of Yes/No did the trick. Last time I trust code copied from the intertubes ;)http://stackoverflow.com/questions/1246053/ms-access-freezes-up-after-text-import/1246383#1246383Comment by Patrick Cuff on MS Access Freezes Up After Text ImportPatrick Cuff2009-08-08T10:29:18Z2009-08-08T10:29:18ZSmandoli; that's a good idea, I don't know what the Error Handling option is set to, but I'll check.http://stackoverflow.com/questions/1246053/ms-access-freezes-up-after-text-import/1247695#1247695Comment by Patrick Cuff on MS Access Freezes Up After Text ImportPatrick Cuff2009-08-08T10:24:58Z2009-08-08T10:24:58ZThanks HansUp; I do have Option Explicit at the top of the module. What I can't figure out is why the code works when called from the Immediate window and directly from a macro, but not from a form.http://stackoverflow.com/questions/1017432/changing-excel-2000-pivot-chart-unit/1017924#1017924Comment by Patrick Cuff on Changing Excel 2000 pivot chart unitPatrick Cuff2009-06-25T13:33:39Z2009-06-25T13:33:39ZAre you right clicking on the axis or the pivot chart field just below the axis? Should be the latter.http://stackoverflow.com/questions/1017432/changing-excel-2000-pivot-chart-unit/1017924#1017924Comment by Patrick Cuff on Changing Excel 2000 pivot chart unitPatrick Cuff2009-06-19T14:42:30Z2009-06-19T14:42:30ZThat's not what I mean; right-click on the X axis field in the pivot chart and select Group... from the context menu. If the X axis is a date/time field you can select Seconds, Minutes, Hours, Days, Months, Quarters and/or Years in the list.http://stackoverflow.com/questions/980791/number-of-tokens-limit-in-a-for-command-in-a-windows-batch-script/980847#980847Comment by Patrick Cuff on Number of tokens limit in a FOR command in a Windows batch scriptPatrick Cuff2009-06-11T17:56:29Z2009-06-11T17:56:29ZSorry, I misunderstood your question.