User CodeSlave - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T18:56:42Zhttp://stackoverflow.com/feeds/user/685http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/987615/how-do-you-use-visio-in-your-shop-and-apply-it-to-development-projects1How do you use Visio in your shop and apply it to development projects?CodeSlave2009-06-12T16:22:55Z2009-12-15T21:07:19Z
<p>I'm trying to justify a MS Visio license.</p>
<p>Immediately I can think of a few ways that I would use it in my shop, and apply it to my development projects:</p>
<ul>
<li>ER Diagrams</li>
<li>UML Diagrams</li>
<li>Project Management (WBS's, org-charts, etc.)</li>
<li>Documentation</li>
</ul>
<p>I know these things <em>can</em> be done in MS Word's drawing tools, but as far as I'm concerned, they look sloppy and it's a pain in the butt to use.</p>
<p>How else do you use Visio in your shop?</p>
http://stackoverflow.com/questions/322098/compiling-and-running-java-in-unix-coming-from-windows4Compiling and Running java in Unix ( coming from Windows ) CodeSlave2008-11-26T20:50:06Z2009-12-01T02:59:25Z
<p>Ok, this is working on windows. My Java app is running and functioning normally</p>
<pre><code>javac -classpath .;ojdbc14.jar -g foo.java
java -classpath .;ojdbc14.jar foo
</code></pre>
<p>However, when I do the same thing on Unix I get this error:
ojdbc14.jar: not found</p>
<p>What am I doing wrong? I know the ";" is telling my shell that ojdbc14.jar is a new command, but I'm not sure how to fix this.</p>
http://stackoverflow.com/questions/467188/why-would-an-aspx-file-return-404-the-page-cannot-be-found2Why would an aspx file return 404 ("The page cannot be found")CodeSlave2009-01-21T21:55:08Z2009-11-25T04:36:44Z
<p>Why when I access an aspx (e.g., <a href="http://www.example.com/foo.aspx" rel="nofollow">http://www.example.com/foo.aspx</a> - not the real site) through IE6 would I get a 404 Error (i.e., "The page cannot be found") in IIS</p>
<p>I've got scripts enabled for the website and I've tried with executables enabled as well.</p>
<p>Here is the full error: </p>
<pre><code>The page cannot be found
The page you are looking for might have been removed, had its name changed, or
is temporarily unavailable.
------------------------------------------------------------------------------
Please try the following:
Make sure that the Web site address displayed in the address bar of your
browser is spelled and formatted correctly.
If you reached this page by clicking a link, contact the Web site
administrator to alert them that the link is incorrectly formatted.
Click the Back button to try another link.
HTTP Error 404 - File or directory not found.
Internet Information Services (IIS)
------------------------------------------------------------------------------
Technical Information (for support personnel)
Go to Microsoft Product Support Services and perform a title search for the
words HTTP and 404.
Open IIS Help, which is accessible in IIS Manager (inetmgr), and search for
topics titled Web Site Setup, Common Administrative Tasks, and About Custom
Error Messages.
</code></pre>
<p>I can get to Default.htm in the same directory, so I know the path is right. I've opened it up to everyone (temporarily) so I know the permissions are right.</p>
http://stackoverflow.com/questions/1770088/visual-studio-2005-build-problem/1771383#17713831Answer by CodeSlave for Visual Studio 2005 build problemCodeSlave2009-11-20T15:50:33Z2009-11-20T15:50:33Z<p>When Visual Studio was installed on your system, you might have chosen a typical installation or a custom installation that did not include everything available to it. This is appropriate in some cases (low disk space, you know only a certain subset is all that is aver or should ever be used).</p>
<p>Try reinstalling, and make sure its a complete install. And don't have it delete unused pieces.</p>
http://stackoverflow.com/questions/1765330/can-you-encode-an-mp3-file-with-multiple-bitrates0Can you encode an mp3 file with multiple bitrates?CodeSlave2009-11-19T18:06:12Z2009-11-19T18:47:51Z
<p>Is it possible to encode an mp3 file using multiple bit rates?</p>
<p>e.g., 0-2min 64kbps, 2-4min 128kbps, and 4-10min 64kbps (the middle section needs higher sound quality)</p>
<p>Or am I stuck having to encode it all at the highest?</p>
http://stackoverflow.com/questions/1603544/how-do-i-find-where-a-missing-reference-is-used-in-ms-access1How do I find where a missing reference is used in MS AccessCodeSlave2009-10-21T20:52:32Z2009-10-21T21:24:57Z
<p>I have a missing reference listed in my References list (in the VBA Code view). It's a reference to an OCX for a product that we no longer use.</p>
<p>I'm fine with removing(unchecking) the reference, but I'm wondering if that is going to come back to bite me. </p>
<p>Is there a way to find out in which forms/reports it might have been used?</p>
<p>Is removing it and then doing a compile of the MDB sufficient?</p>
http://stackoverflow.com/questions/1570645/visual-c-compiling-error/1573369#15733690Answer by CodeSlave for Visual C++ compiling errorCodeSlave2009-10-15T16:07:16Z2009-10-15T16:07:16Z<p>You are using ()'s where you should be using {}'s</p>
<p>e.g, your if-blocks, switch statements, method declarations, etc.</p>
http://stackoverflow.com/questions/1498803/microsoft-access-disable-user-input-for-automation/1500086#15000862Answer by CodeSlave for Microsoft Access Disable User Input for AutomationCodeSlave2009-09-30T19:07:18Z2009-09-30T19:07:18Z<p>Sounds like you want to run with scissors. It would be better to test your changes rather than deploying them blind upon your users. However, that said...</p>
<p>You can disable activation of break points by un-checking "Use Access Special Keys" in the Tools->Startup options.</p>
<p>You can disable error checking in the Tools->Options form (Error Checking tab).</p>
<p>And of course you can pass parameters to MS-Access queries (rather than require user input) - see this <a href="http://stackoverflow.com/questions/95277">question</a>.</p>
http://stackoverflow.com/questions/1479614/are-there-any-good-resources-for-dealing-with-user-document-dob-files0Are there any good resources for dealing with "User Document" (.dob) filesCodeSlave2009-09-25T21:12:08Z2009-09-28T09:02:17Z
<p>I've inherited a vb6 application that makes use of "Visual Basic User Document" files (.dob).</p>
<p>This tech seems to be abandoned and forgotten.</p>
<p>Are there any good resources out there for working with them?</p>
http://stackoverflow.com/questions/1465487/how-to-fix-method-saveastext-of-object-failed/1466369#14663691Answer by CodeSlave for How to fix method saveastext of object failed?CodeSlave2009-09-23T14:30:17Z2009-09-24T12:34:13Z<p>Gotta love undocumented options. For kicks and giggles, I'd try renaming one of the two forms. Or, swap the two statements and see if app1 starts erroring. It looks like the forms has identical names, perhaps Access is leaving the first one open and getting confused.</p>
<p>Maybe something is slightly corrupt in app2. You could always try running the /decompile option on app2 (take a backup first of course) </p>
http://stackoverflow.com/questions/1401314/how-do-i-add-a-field-in-to-a-report-crystal-reports-in-visual-studio0How do I add a field in to a report (Crystal Reports in Visual Studio)CodeSlave2009-09-09T18:32:49Z2009-09-09T20:32:18Z
<p>I have an existing report (Crystal Report) in my Visual Studio project that is based off of an SQL Server View. using an OLE DB (ADO) connection.</p>
<p>I've updated the View since the report was created. I've changed some field names and added a field.</p>
<p>How can I updated the fields on the report to point at the new fields in the view?<br />
How can I add a new field to the report that points at the new field in the view?</p>
<p>(I know, that's two questions. But the answer is probably going to be very similar for both)</p>
http://stackoverflow.com/questions/1401314/how-do-i-add-a-field-in-to-a-report-crystal-reports-in-visual-studio/1401907#14019070Answer by CodeSlave for How do I add a field in to a report (Crystal Reports in Visual Studio)CodeSlave2009-09-09T20:29:55Z2009-09-09T20:29:55Z<p>I finally figured it out. For the sake of the next guy...</p>
<ol>
<li><p>shahkalpesh and serge_ bg are right about the "Verify Data"<br />
If you right click on a blank spot on your report, you will get a popup menu. Select Database -> Verify__Database. Crystal Reports should update the fields that have changed.</p></li>
<li><p>You can drag-n-drop the new field onto your report.<br />
There should be a "Field Explorer" tree view (probably on the left). Select Database Fields -> View/Table Name -> Field Name and drag that onto your report.</p></li>
</ol>
<p>A worst case scenario of Crystal Reports updating report field to match up with the wrong field on the view, can be resolved by deleting the old field and re-adding the field using the drag and drop method.</p>
http://stackoverflow.com/questions/1400197/access-problem-what-is-the-best-way-to-run-a-conditional-report-of-the-current/1401019#14010190Answer by CodeSlave for Access problem - What is the best way to run a conditional report of the current recordCodeSlave2009-09-09T17:34:58Z2009-09-09T17:34:58Z<p>You can do this a couple of different ways</p>
<ol>
<li>You can base the report off of a query that lists only the records you want to see: <code>select * from foo where bar = true;</code> </li>
<li>You can base the report off of a table and then add filters to the report to get the exact rows you want. The filter is basically the where clause.</li>
</ol>
<p>As for dBASE, blame Ashton-Tate for screwing up the schedule on dBASE IV 1.1 for that.</p>
http://stackoverflow.com/questions/1398971/ms-access-comparing-two-recordsets/1400852#14008520Answer by CodeSlave for Ms Access Comparing two recordsetsCodeSlave2009-09-09T16:58:49Z2009-09-09T16:58:49Z<p>My gut says you are doing something sub-optimally; however, in the if statement <code>If rs2.EOF Then</code>, why not add a comparison to <code>a</code> and then redirect to a different Excel file for 0, 1, 2 and 3</p>
<p>Bruit Force and Ignorance, but definitely segregated.</p>
http://stackoverflow.com/questions/1374787/how-do-i-clean-up-after-a-streamwriter-during-an-exception1how do I clean up after a StreamWriter during an exception?CodeSlave2009-09-03T17:18:20Z2009-09-03T19:29:47Z
<p>I'm trying to clean-up after an exception, and I'm not sure how to handle a StreamWriter.</p>
<pre><code>Dim sw As StreamWriter
Try
''// stuff happens
somethingBad1() ''//Sometimes throws an exception
sw = New StreamWriter(File.Open("c:\tmp.txt", FileMode.Create))
''// stuff happens
somethingBad2() ''//Also sometimes throws an exception
sw.Write("Hello World")
sw.Flush() ''//Flush buffer
sw.Close() ''//Close Stream
Catch ex As Exception
sw = Nothing
Finally
sw = Nothing
end try
</code></pre>
<p>If somethingBad1 throws an exception, I don't need to do anything to <code>sw</code>; however, if somathignBad2 happens, <code>sw</code> has already been created and I need to close it. But How do I know if <code>sw</code> has been created or not?</p>
http://stackoverflow.com/questions/1364663/are-globals-still-bad3Are globals still bad?CodeSlave2009-09-01T21:06:20Z2009-09-02T13:22:03Z
<p>I ran across some code like this today; having a flow control flag that is visible to the whole class. My gut says this is the wrong way to handle this need for flow control (it's almost like an old time global flag in C).</p>
<p>(The example is in VB.Net but similar things could be done in C#.)</p>
<pre><code>Public Class myClass
Private bMyFlag As Boolean ''// <------
private sub New
bMyFlag = false
end sub
private sub mySub1
bMyFlag = true
mySub3()
mySub4()
mySubN()
end sub
private sub mySub2
bMyFlag = false
mySub3()
mySub4()
mySubN()
end sub
private sub mySub3
if bMyFlag then
DoSomething()
else
DoSomethingElse()
end if
end sub
private sub mySub4
if not bMyFlag then
DoSomethingDifferent()
else
DoSomethingReallyDifferent()
end if
end sub
private sub mySubN
if not bMyFlag then
DoNotPassGo()
else
DoNotCollect200Dollars()
end if
end sub
end class
</code></pre>
<p>It's obvious to me that it was grafted on after the fact. I'm planning on reworking the code so that bMyFlag is a parameter passed to mySub3, mySub4, and mySuvN. However, before I do so: </p>
<p>Is there a valid reason for having a flow control flag that is global to the class?</p>
<p>Or if not, why is this considered bad practice?</p>
http://stackoverflow.com/questions/1290125/how-can-i-find-the-width-of-the-parent-window-in-ms-access1How can I find the width of the parent window in MS-Access CodeSlave2009-08-17T20:06:43Z2009-08-19T11:15:19Z
<p>I'm trying to force an MS-Access form to take a certain position relative to the right edge of the main window (actually I want to center it, but I can see also wanting to dock it to one side or another). I can reposition the form this with <code>Me.Move</code>, e.g.,</p>
<pre><code> Me.Move newWindowLeft, newWindowTop, newWidth, newHeight
</code></pre>
<p>However, how can I find out how wide the parent window is?</p>
http://stackoverflow.com/questions/1290125/how-can-i-find-the-width-of-the-parent-window-in-ms-access/1290738#12907380Answer by CodeSlave for How can I find the width of the parent window in MS-Access CodeSlave2009-08-17T22:04:14Z2009-08-17T22:04:14Z<p>Here's the actual code I used</p>
<pre><code>Application.Echo False 'turn off screen updates
DoCmd.Maximize
w = Me.WindowWidth
h = Me.WindowHeight
DoCmd.Restore 'restore the window to it's old size
Application.Echo True 'turn on screen updates
DoCmd.MoveSize w / 2 - myWidth / 2, _
h / 2 - myHeigth / 2, _
myWidth, _
myHeigth
</code></pre>
http://stackoverflow.com/questions/1286450/how-to-get-a-proper-total-time-value/1288833#12888331Answer by CodeSlave for How to get a Proper total time value?CodeSlave2009-08-17T16:02:44Z2009-08-17T16:02:44Z<p>What's happening is that it's totalling the numeric representation of the times</p>
<p>You can do this:</p>
<pre><code>Select Personid, cdate(sum (TotalHours)) as GrandTotal
from table
group by personid.
</code></pre>
<p>But you are going to get results that look like:</p>
<pre><code>111 1900-01-01 2:28:10 AM
222 1:23:32 AM
</code></pre>
<p>This because Personalid 111 exceeds 24 hours</p>
<p>What you really have to do is smoosh the times down to seconds; then add them; and then break it out into hours/minutes/seconds again; I did this with two queries</p>
<pre><code>[time_1 definition]
SELECT time_tab.pid,
Sum(Hour([time]) * 3600
+ Minute([time]) * 60
+ Second([time])) AS time_total
FROM time_tab
GROUP BY time_tab.pid;
[time_2 definition]
SELECT time_1.pid,
Int([time_total]/3600) AS h,
Int(([time_total]-Int([time_total]/3600) * 3600)/60) AS m,
[time_total]
- (Int(([time_total]-Int([time_total]/3600) * 3600)/60)*60
+ (Int([time_total]/3600)*3600)) AS s
FROM time_1
</code></pre>
<p>which gives me</p>
<pre><code>111 50 28 10
222 1 23 32
</code></pre>
<p>OR</p>
<pre><code>[time_2 definition]
SELECT time_1.pid,
Int([time_total]/3600) & ":"
& Int(([time_total]-Int([time_total]/3600) * 3600)/60) & ":"
& [time_total]
- (Int(([time_total]-Int([time_total]/3600) * 3600)/60) * 60
+ (Int([time_total]/3600)*3600)) AS grand_total
FROM time_1
</code></pre>
<p>which gives me</p>
<pre><code>111 50:28:10
222 1:23:32
</code></pre>
http://stackoverflow.com/questions/1143472/why-dont-dims-reformat-in-ms-access0Why don't DIMs reformat in MS Access.CodeSlave2009-07-17T14:01:18Z2009-08-07T21:09:21Z
<p>Is this another MS Access 2000(2007)-ism?</p>
<p>If I type the following:</p>
<pre><code>foo = blah + blah - bar
</code></pre>
<p>the editor automatically reformats it as</p>
<pre><code>foo = blah + blah - bar
</code></pre>
<p>But I type:</p>
<pre><code>Dim foobar as long
</code></pre>
<p>the editor doesn't reformat it at all. Some how I expect it to reformat it to</p>
<pre><code>Dim foobar as long
</code></pre>
<p>Did it always work this way (I haven't got an older version to check against)?</p>
http://stackoverflow.com/questions/1233185/how-to-update-or-select-the-same-rows-value-in-the-table/1233908#1233908-1Answer by CodeSlave for How to update or select the same rows value in the table?CodeSlave2009-08-05T15:10:34Z2009-08-06T16:13:34Z<p>Have you tried something like this:</p>
<pre><code>UPDATE table1
SET
name = (SELECT t2.name
FROM table1 T2
WHERE t2.name is not null
and t2.empid - table1.empid),
city = (SELECT t3.city
FROM table1 T3
WHERE t3.city is not null
and t3.empid - table1.empid)
WHERE
name is null
and city is null
</code></pre>
<p><strong>--Update--</strong><br />
<strong>Doh!!!</strong></p>
<p>onedaywhen is right. You can't use a select in an update (in MS Access).</p>
<p>The ultimate solution appears to be to take this down into VBA, open up a recordset of the null names/cities, and a recordset of the the non-null names/cities. Then walk the two record sets, updating the null records appropriately. It will look something like this:</p>
<pre><code>' Note: Typed, but not tested (kind of like dictated buy not read)
' Note: No real error handling has been included in this code
' Note: This has not been optimised and is likely bigger than O(n)
Dim db As Database
Dim rst As Recordset
Dim rst2 As Recordset
Set db = CurrentDb
Set rst = db.OpenRecordset("select blah blah blah", _
dbOpenDynaset, _
dbSeeChanges)
If (Not rst.BOF) Then
rst.MoveFirst
End If
while (not rst.eof)
Set rst2 = db.OpenRecordset("select blah blah where empid = " & _
rst("empid"), _
dbOpenDynaset, _
dbSeeChanges)
If (Not rst2.BOF) Then
rst2.MoveFirst
End If
if (not rst2.eof) then ' we only need the first one we find
rst.edit
rst("fieldname1") = rst2("fieldname1")
rst("fieldname2") = rst2("fieldname2")
rst.update
end if
rst.movenext
wend
rst.close
set rst = nothing
</code></pre>
<p>(btw., naming a column <code>name</code> can cause you a big pain in the butt later on; I'd consider renaming it empName)</p>
http://stackoverflow.com/questions/1231350/operation-must-use-an-updatable-query-error-3073-microsoft-access/1233716#12337160Answer by CodeSlave for Operation must use an updatable query. (Error 3073) Microsoft AccessCodeSlave2009-08-05T14:43:24Z2009-08-05T14:43:24Z<p>You are updating <code>weight1</code> and <code>qty1</code> with values that are in turn derived from <code>weight1</code> and <code>qty1</code> (respectively). That's why MS-Access is choking on the update. It's probably also doing some optimisation in the background.</p>
<p>The way I would get around this is to dump the calculations into a temporary table, and then update the first table from the temporary table.</p>
http://stackoverflow.com/questions/1207740/make-a-query-count-return-0-instead-of-empty/1209040#12090401Answer by CodeSlave for Make a query Count() return 0 instead of emptyCodeSlave2009-07-30T20:10:34Z2009-08-02T06:00:45Z<p>Even better, use <code>Nz()</code> e.g. </p>
<pre><code>Nz(Count(SELECT Source.DateAdded
FROM Source
WHERE Int(Date()-Source.DateAdded), 0)
</code></pre>
<p>This will return 0 when the result is null, or count otherwise.</p>
<p>Note the <code>Nz()</code> function is part of the Access object model and therefore only available when used within the Access user interface. If you are using the Access database engine without the Access UI (from another application via OLE DB, ODBC, etc) then you will get an error, "Undefined function 'Nz' in expression".</p>
http://stackoverflow.com/questions/1207740/make-a-query-count-return-0-instead-of-empty/1215080#12150801Answer by CodeSlave for Make a query Count() return 0 instead of emptyCodeSlave2009-07-31T21:57:27Z2009-07-31T21:57:27Z<p>On second though (without more information) I think you are doing this query very wrong....</p>
<p>As I said, when I try your original query I get an error "At most one record can be returned by this subquery".</p>
<p>This is probably a little closer to what you want</p>
<pre><code>SELECT DISTINCT Source.ItemName,
(SELECT count(Source.DateAdded ) FROM Source
WHERE Int(Date()-Source.DateAdded)> 20) AS Total,
(SELECT count(Source.DateAdded ) FROM Source
WHERE Int(Date()-Source.DateAdded) BETWEEN 20 AND 44) AS BTWN_20_44,
(SELECT count(Source.DateAdded ) FROM Source
WHERE Int(Date()-Source.DateAdded) BETWEEN 45 AND 60) AS BTWN_45_60,
(SELECT count(Source.DateAdded ) FROM Source
WHERE Int(Date()-Source.DateAdded) BETWEEN 61 AND 90) AS BTWN_61_90,
(SELECT count(Source.DateAdded ) FROM Source
WHERE Int(Date()-Source.DateAdded) BETWEEN 91 AND 180) AS BTWN_91_180,
(SELECT count(Source.DateAdded ) FROM Source
WHERE Int(Date()-Source.DateAdded) > 180) AS GT_180
FROM Source
GROUP BY Source.ItemName;
</code></pre>
<p>Unless you are trying to get a count per Item name... in which case it's a little trickyier.</p>
http://stackoverflow.com/questions/1209681/how-do-i-copy-a-table-from-one-access-db-to-another-access-db/1214412#12144120Answer by CodeSlave for How Do I Copy a table from one Access DB to another Access DBCodeSlave2009-07-31T19:27:04Z2009-07-31T19:27:04Z<p>Try the CopyObject method:</p>
<pre><code>DoCmd.CopyObject "DestinationDatabaseName", "NewName", acTable, "SourceTable"
</code></pre>
http://stackoverflow.com/questions/1007159/under-priced-projects-tight-budget-what-are-the-characteristics/1007764#10077644Answer by CodeSlave for Under-priced projects (tight budget) - what are the characteristics?CodeSlave2009-06-17T15:26:47Z2009-07-30T15:16:38Z<p>What you are talking about is not a 'limited resources' project, but instead a rushed and unplanned project.</p>
<p>A few items in your list I take issue with:</p>
<ul>
<li>Strict bureaucratic process for off-spec work</li>
<li>Change request budget may be small or non-existent</li>
</ul>
<p>Actually, these should be the norm for most projects. Who's requesting and paying for the changes, you or the client?</p>
<ul>
<li>Can’t do any content management or data entry for client</li>
<li>No budget for writing user documentation or manuals.</li>
</ul>
<p>If that's not part of the contract, why are you doing it?</p>
<ul>
<li>Have to go for ‘good enough’ coding solutions</li>
</ul>
<p>At some point, you have to stop at 'good enough', or else you are going to be polishing from now until the end of time.</p>
<p>Something I would add to your list are:</p>
<ul>
<li>Office supplies become scarce or go under lock and key.</li>
<li>Corporate supplied food/beverages disappear</li>
<li>Down time disappears. 100% of your time on your time sheet must be dedicated to project work.</li>
<li>The printer/photocopier is running full-bore printing other staff member's resumes.</li>
<li>The Boss' door is shut for 90% of the day.</li>
</ul>
http://stackoverflow.com/questions/1200505/access-2003-forms-dropdown-navigation/1200779#12007790Answer by CodeSlave for Access 2003 forms: dropdown navigationCodeSlave2009-07-29T14:43:07Z2009-07-29T14:43:07Z<p>You are probably looking for the <code>FindFirst</code> method.</p>
<p>Here is an example of how it might be used:</p>
<pre><code>Function FindRecord (rstTemp As Recordset, _
strFind As String) As Boolean
rstTemp.FindFirst strFind
FindAny = IIf(rstTemp.NoMatch, False, True)
End Function
</code></pre>
http://stackoverflow.com/questions/95277/how-do-you-create-a-parameterized-query-in-ms-access-2003-and-use-other-queries-f/96134#961340Answer by CodeSlave for How do you create a parameterized query in MS Access 2003 and use other queries/forms to fill the parameters and obtain a resultsetCodeSlave2008-09-18T19:40:06Z2009-07-28T20:51:58Z<p>I found the following here (<a href="http://forums.devarticles.com/microsoft-access-development-49/pass-parameters-from-vba-to-query-62367.html" rel="nofollow">http://forums.devarticles.com/microsoft-access-development-49/pass-parameters-from-vba-to-query-62367.html</a>):</p>
<pre><code>'Ed. Start - for completion of the example
dim qryStartDate as date
dim qryEndDate as date
qryStartDate = #2001-01-01#
qryEndDate = #2010-01-01#
'Ed. End
'QUOTEING "stallyon": To pass parameters to a query in VBA
' is really quite simple:
'First we'll set some variables:
Dim qdf As Querydef
Dim rst As Recordset
'then we'll open up the query:
Set qdf = CurrentDB.QueryDefs(qryname)
'Now we'll assign values to the query using the parameters option:
qdf.Parameters(0) = qryStartDate
qdf.Parameters(1) = qryEndDate
'Now we'll convert the querydef to a recordset and run it
Set rst = qdf.OpenRecordset
'Run some code on the recordset
'Close all objects
rst.Close
qdf.Close
Set rst = Nothing
Set qdf = Nothing
</code></pre>
<p>(I haven't tested it myself, just something I collected in my travels, because every once in a while I've wanted to do this to, but had to hack around it)</p>
<p><strong>Edit</strong>
I finally had cause to use this. Here's the actual code.</p>
<pre><code>'...
Dim qdf As DAO.QueryDef
Dim prmOne As DAO.Parameter
Dim prmTwo As DAO.Parameter
Dim rst as recordset
'...
'open up the query:
Set qdf = db.QueryDefs("my_two_param_query") 'params called param_one and
'param_two
'link your DAP.Parameters to the query
Set prmOne = qdf.Parameters!param_one
Set prmTwo = qdf.Parameters!param_two
'set the values of the parameters
prmOne = 1
prmTwo = 2
Set rst = qdf.OpenRecordset(dbOpenDynaset, _
dbSeeChanges)
'... treat the recordset as normal
'make sure you clean up after your self
Set rst = Nothing
Set prmOne = Nothing
Set prmTwo = Nothing
Set qdf = Nothing
</code></pre>
http://stackoverflow.com/questions/1194280/how-do-i-overwrite-files-without-prompt-in-access-2007/1194708#11947083Answer by CodeSlave for How do I overwrite files without prompt in Access 2007?CodeSlave2009-07-28T14:58:32Z2009-07-28T14:58:32Z<p>You can do something like this, but it's cludgy and not very robust.</p>
<pre><code>DoCmd.SetWarnings False
'do stuff
DoCmd.SetWarnings true
</code></pre>
<p>What you could also do is first see if the file is there, and then if it is, delete it (of course this destroys any special file permissions you had set on it).</p>
<pre><code>If Dir(strPath) <> "" Then
Kill (strPath) 'Delete (strPath)
End If
DoCmd.TransferSpreadsheet acExport, _
acSpreadsheetTypeExcel8, _
"MyTableQueryName", _
strPath, _
True
</code></pre>
http://stackoverflow.com/questions/1181377/how-to-condition-branch-if-else-with-the-value-from-form-recordset/1188700#11887000Answer by CodeSlave for How to condition branch (if - else) with the value from Form.RecordsetCodeSlave2009-07-27T15:03:54Z2009-07-27T15:03:54Z<p>Assuming that your button is called <code>myButton</code>, I think what you want to do something like this:</p>
<pre><code>strSQL = "SELECT * FROM TB_STATUS"
rs.Open strSQL, cn, adOpenKeyset, adLockOptimistic
If rs.RecordCount <> 0 Then
Set Form.Recordset = rs
if rs("DEL_FLG") = 0 then
me.myButton.enabled = false
else
me.myButton.enabled = true
end if
rs.Close
End If
</code></pre>
<p>Note: I'm not sure how MySQL store booleans (0, -1) or (0, 1) => (true, false), so some playing might be necessary.</p>
http://stackoverflow.com/questions/322098/compiling-and-running-java-in-unix-coming-from-windows/322460#322460Comment by CodeSlave on Compiling and Running java in Unix ( coming from Windows ) CodeSlave2009-11-21T15:37:09Z2009-11-21T15:37:09ZI changed the semi-colon to colon as in the accepted answer.http://stackoverflow.com/questions/1587652/html-jsp-visual-design-mode/1588120#1588120Comment by CodeSlave on HTML/JSP visual design modeCodeSlave2009-10-19T14:55:00Z2009-10-19T14:55:00ZTnay, see my comment on the OP's question.http://stackoverflow.com/questions/1587652/html-jsp-visual-design-modeComment by CodeSlave on HTML/JSP visual design modeCodeSlave2009-10-19T14:53:36Z2009-10-19T14:53:36ZTnay, you say in 1588068 that it is a duplicate of this one. Which is the chicken and which is the egg. Only one should be marked as a duplicate, or neither will get answered. http://stackoverflow.com/questions/1588068/html-jsp-visual-design-editorComment by CodeSlave on HTML / JSP Visual Design EditorCodeSlave2009-10-19T14:50:42Z2009-10-19T14:50:42ZTnay, you say in 1587652 that it is a duplicate of this one. Which is the chicken and which is the egg. Only one should be marked as a duplicate, or neither will get answered.http://stackoverflow.com/questions/1537332/reports-as-pdf-in-access-2007-using-a-stored-procedure/1538794#1538794Comment by CodeSlave on Reports as PDF in Access 2007 using a Stored ProcedureCodeSlave2009-10-09T14:31:14Z2009-10-09T14:31:14Zof course... I saw the inner problem but not the outer problem.http://stackoverflow.com/questions/1509697/ms-access-form-subform-sort/1509847#1509847Comment by CodeSlave on ms Access form subform sortCodeSlave2009-10-02T16:13:06Z2009-10-02T16:13:06Znote: you might have to cycle OrderByOn false and then true to get it to take affect, especially if you've previously turned it on.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/450434#450434Comment by CodeSlave on What non-programming books should programmers read?CodeSlave2009-10-01T17:15:13Z2009-10-01T17:15:13ZWhat, no "Planiverse"?http://stackoverflow.com/questions/1501824/access-database-default-date-cannot-contain-00-hour-00-min-or-00-secComment by CodeSlave on Access Database Default Date cannot contain 00 hour, 00 min or 00 sec CodeSlave2009-10-01T16:29:07Z2009-10-01T16:29:07ZYah, I'd bite bullet and change that piece. Why the heck are they multiplying the date parts together? To get some kind of unique identifier?http://stackoverflow.com/questions/1479614/are-there-any-good-resources-for-dealing-with-user-document-dob-files/1486079#1486079Comment by CodeSlave on Are there any good resources for dealing with "User Document" (.dob) filesCodeSlave2009-09-28T21:07:17Z2009-09-28T21:07:17ZYah, I know. But someone used tech because it was there. Thanks.http://stackoverflow.com/questions/1478882/boss-doesnt-believe-my-time-estimate-advice-backup/1478936#1478936Comment by CodeSlave on Boss doesn't believe my time estimate... advice/backup?CodeSlave2009-09-28T14:48:14Z2009-09-28T14:48:14ZIt's not really contrary to what's normal for project management. X is how long we have to do the project. Y is how long the feature set will take. Now tell me which features you want to cut (or resources you want to add) to get Y < X.http://stackoverflow.com/questions/1465487/how-to-fix-method-saveastext-of-object-failedComment by CodeSlave on How to fix method saveastext of object failed?CodeSlave2009-09-27T13:48:01Z2009-09-27T13:48:01ZI assume you got the same results when you renamed app2's form. And it still failed on app2's form when you changed the order.http://stackoverflow.com/questions/1121972/multiple-insert-problemComment by CodeSlave on Multiple insert problem CodeSlave2009-09-21T17:56:36Z2009-09-21T17:56:36ZSo the short story is you were trying to reuse the same key (an auto-number that you are generating) for each insert, on a column that has a unique constraint. This is what the Autonumber datatype is meant to avoid. You shouldn't be creating them yourself.http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652945#652945Comment by CodeSlave on What is the worst real-world macros/pre-processor abuse you've ever come across?CodeSlave2009-09-21T14:16:11Z2009-09-21T14:16:11ZOf course, I can't help but think he would have saved just as many characters if he had just removed the parenthesis ()'s from around the return values; which are of course, not necessary in C. :-Dhttp://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652945#652945Comment by CodeSlave on What is the worst real-world macros/pre-processor abuse you've ever come across?CodeSlave2009-09-18T16:56:23Z2009-09-18T16:56:23ZMy eyes! The goggles do nothing!http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652852#652852Comment by CodeSlave on What is the worst real-world macros/pre-processor abuse you've ever come across?CodeSlave2009-09-18T16:51:24Z2009-09-18T16:51:24ZHey, I think I used to work with that 'architect' as well. He eventually got reclassified senior-architect when he needed to have his ego appeased.