User David Walker - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T23:33:36Z http://stackoverflow.com/feeds/user/81770 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1050644/convert-xml-to-plain-text 0 Convert XML to Plain Text David Walker http://stackoverflow.com/users/81770 2009-06-26T18:53:04Z 2010-02-02T20:48:08Z <p>My goal is to build an engine that takes the latest HL7 3.0 CDA documents and make them backward compatible with HL7 2.5 which is a radically different beast.</p> <p>The CDA document is an XML file which when paired with its matching XSL file renders a HTML document fit for display to the end user.</p> <p>In HL7 2.5 I need to get the rendered text, devoid of any markup, and fold it into a text stream (or similar) that I can write out in 80 character lines to populate the HL7 2.5 message.</p> <p>So far, I'm taking an approach of using XslCompiledTransform to transform my XML document using XSLT and product a resultant HTML document.</p> <p>My next step is to take that document (or perhaps at a step before this) and render the HTML as text. I have searched for a while, but can't figure out how to accomplish this. I'm hoping its something easy that I'm just overlooking, or just can't find the magical search terms. Can anyone offer some help?</p> <p>FWIW, I've read the 5 or 10 other questions in SO which embrace or admonish using RegEx for this, and don't think that I want to go down that road. I need the rendered text.</p> <pre><code>using System; using System.IO; using System.Xml; using System.Xml.Xsl; using System.Xml.XPath; public class TransformXML { public static void Main(string[] args) { try { string sourceDoc = "C:\\CDA_Doc.xml"; string resultDoc = "C:\\Result.html"; string xsltDoc = "C:\\CDA.xsl"; XPathDocument myXPathDocument = new XPathDocument(sourceDoc); XslCompiledTransform myXslTransform = new XslCompiledTransform(); XmlTextWriter writer = new XmlTextWriter(resultDoc, null); myXslTransform.Load(xsltDoc); myXslTransform.Transform(myXPathDocument, null, writer); writer.Close(); StreamReader stream = new StreamReader (resultDoc); } catch (Exception e) { Console.WriteLine ("Exception: {0}", e.ToString()); } } } </code></pre> http://stackoverflow.com/questions/2166630/how-do-i-get-multiple-xml-children-inside-a-single-parent-node-instead-of-repeati 1 How do I get multiple XML children inside a single parent node instead of repeating the parent node for each child? David Walker http://stackoverflow.com/users/81770 2010-01-30T02:44:47Z 2010-01-30T04:22:54Z <p>I'm trying to produce valid XML for a HL7 CDA document from SQL Server 2008 using FOR XML. I'm having trouble with the syntax to get multiple children inside a node instead of repeating the node for each child.</p> <pre><code>/* Expected output: &lt;!-- ******************************************************** Past Medical History section ******************************************************** --&gt; &lt;component&gt; &lt;section&gt; &lt;code code="10153-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/&gt; &lt;title&gt;Past Medical History&lt;/title&gt; &lt;text&gt; &lt;list&gt; &lt;item&gt;COPD - 1998&lt;/item&gt; &lt;item&gt;Dehydration: 2001&lt;/item&gt; &lt;item&gt;Myocardial infarction: 2003&lt;/item&gt; &lt;/list&gt; &lt;/text&gt; &lt;/section&gt; &lt;/component&gt; */ SELECT ' ******************************************************** Past Medical History section ******************************************************** ' As "comment()", '10153-2' AS [section/code/@code], '2.16.840.1.113883.6.1' AS [section/code/@codeSystem], 'LOINC' AS [section/code/@codeSystemName], 'Past Medical History' AS [section/title], (SELECT [Incident] + ' - ' + [IncidentYear] as [item] FROM [tblSummaryPastMedicalHistory] AS PMH WHERE ([PMH].[Incident] IS NOT NULL) AND ([PMH].[PtUnitNum] = [PatientEncounter].[PtUnitNum]) FOR XML PATH('list'), TYPE ) as [section/text] FROM tblPatientEncounter AS PatientEncounter WHERE (PatientEncounterNumber = 54) FOR XML PATH('component'), TYPE </code></pre> <p>Instead of getting the </p> <pre><code>&lt;text&gt; &lt;list&gt; &lt;item&gt;blah&lt;/item&gt; &lt;item&gt;blah2&lt;/item&gt; &lt;/list&gt; &lt;/text&gt; </code></pre> <p>structure from the expected output, I get:</p> <pre><code>&lt;text&gt; &lt;list&gt; &lt;item&gt;blah&lt;/item&gt; &lt;/list&gt; &lt;list&gt; &lt;item&gt;blah2&lt;/item&gt; &lt;/list&gt; &lt;/text&gt; </code></pre> <p>Can anyone please explain how to format the FOR XML to get the multiple children inside the node?</p> http://stackoverflow.com/questions/2166630/how-do-i-get-multiple-xml-children-inside-a-single-parent-node-instead-of-repeati/2166848#2166848 0 Answer by David Walker for How do I get multiple XML children inside a single parent node instead of repeating the parent node for each child? David Walker http://stackoverflow.com/users/81770 2010-01-30T04:22:54Z 2010-01-30T04:22:54Z <p>Figured this out...</p> <p>Instead of: </p> <pre><code>FOR XML PATH('list'), TYPE) as [section/text] </code></pre> <p>Changed to:</p> <pre><code>FOR XML PATH(''), TYPE) as [list/section/text] </code></pre> <p>Hope this helps someone else out in the future.</p> http://stackoverflow.com/questions/2166236/autofill-a-subform-field-from-a-main-form-field/2166787#2166787 1 Answer by David Walker for Autofill a subform field from a main form field David Walker http://stackoverflow.com/users/81770 2010-01-30T04:04:06Z 2010-01-30T04:04:06Z <p>OnCurrent, OnClick, etc...</p> <pre><code>If IsNull(Me.MyField) or Me.MyField = "" Then Me.MyField = Me.Parent.MyRelatedField End If </code></pre> http://stackoverflow.com/questions/1166283/vba-update-query/1166337#1166337 1 Answer by David Walker for VBA update query David Walker http://stackoverflow.com/users/81770 2009-07-22T15:59:10Z 2009-09-21T18:02:56Z <p>Run this as a check to make sure your fields have the data that you think they have: </p> <pre><code>DoCmd.RunSQL (" SELECT * FROM tbltesting " &amp; _ "WHERE empid= " &amp; Me.txtEmpId.Value &amp; _ " and testid= " &amp; Me.txtAutoNumber.Value &amp; ";") </code></pre> <p>Incidentally, you can leave off the .Value portion.</p> http://stackoverflow.com/questions/1322829/connection-to-oracle-via-vbscript/1323285#1323285 0 Answer by David Walker for Connection to Oracle via VBScript David Walker http://stackoverflow.com/users/81770 2009-08-24T16:08:48Z 2009-08-24T16:08:48Z <p>Try adding your port number to the end of the server name separated by a colon.</p> <pre><code>SERVER=SERVER_NAME:1521 </code></pre> <p>I'm not an Oracle user, but that will work with MS SQL Server.</p> http://stackoverflow.com/questions/1311885/sql-as-control-source-for-access-form-field/1312890#1312890 2 Answer by David Walker for SQL as Control Source for Access Form field David Walker http://stackoverflow.com/users/81770 2009-08-21T16:12:19Z 2009-08-21T16:12:19Z <p>You can set the control source of your field to a function name. That function can easily execute your SQL, and/or pass in a variable. Here's my simple boiler plate for a function to execute a SQL statement into a recordset and return the first value. In my world I'm usually including a very specific where clause, but you could certainly make any of this function more robust for your needs.</p> <pre><code>=fnName(sVariable, iVariable) Public Function fnName( _ sVariable as String, _ iVariable as Integer _ ) As String On Error GoTo Err_fnName Dim con As ADODB.Connection Dim rst As ADODB.Recordset Dim sSQL As String sSQL = "" Set con = Access.CurrentProject.Connection Set rst = New ADODB.Recordset rst.Open sSQL, con, adOpenDynamic, adLockOptimistic If rst.BOF And rst.EOF Then 'No records found 'Do something! Else 'Found a value, return it! fnName = rst(0) End If rst.Close Set rst = Nothing con.Close Set con = Nothing Exit_fnName: Exit Function Err_fnName: Select Case Err.Number Case Else Call ErrorLog(Err.Number, Err.Description, "fnName", "", Erl) GoTo Exit_fnName End Select End Function </code></pre> http://stackoverflow.com/questions/1255982/dynamically-change-size-of-splitcontainer-panel 2 Dynamically change size of splitContainer Panel David Walker http://stackoverflow.com/users/81770 2009-08-10T16:52:25Z 2009-08-10T18:33:15Z <p>I have a splitContainter control with two horizontal panels. The top panel holds a patient identification banner and bottom panel holds related patient documents and a tree-view.</p> <p>The patientBanner control is from the UK's NIH and if you click on a button inside the control (double-down arrows at lower right), it will expand to display more information about the patient's address, phone, email, and allergies.</p> <p>It expands quite nicely, but I don't know how to make the splitContainer adjust so that the top panel can display all of the information.</p> <p><img src="http://www.intellicure.com/files/DocumentManagerScreenShot.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1221435/maximum-number-of-rows-in-an-ms-access-database-engine-table/1222761#1222761 0 Answer by David Walker for Maximum number of rows in an MS Access database engine table? David Walker http://stackoverflow.com/users/81770 2009-08-03T14:47:58Z 2009-08-03T14:47:58Z <p>We're not necessarily talking theoretical limits here, we're talking about real world limits of the 2GB max file size AND database schema.</p> <ul> <li>Is your db a single table or multiple? </li> <li>How many columns does each table have?</li> <li>What are the datatypes?</li> </ul> <p><strong><em>The schema is on even footing with the row count in determining how many rows you can have.</em></strong></p> <p>We have used Access MDBs to store exports of MS-SQL data for statistical analysis by some of our corporate users. In those cases we've exported our core table structure, typically four tables with 20 to 150 columns varying from a hundred bytes per row to upwards of 8000 bytes per row. In these cases, we would bump up against a few hundred thousand rows of data were permissible PER MDB that we would ship them.</p> <p>So, I just don't think that this question has an answer in absence of your schema.</p> http://stackoverflow.com/questions/1195363/how-to-use-vba-to-move-a-page-within-a-pdf-document/1196313#1196313 1 Answer by David Walker for How to use VBA to move a page within a PDF document David Walker http://stackoverflow.com/users/81770 2009-07-28T19:40:26Z 2009-07-28T19:40:26Z <p>If you just call the document with a shell method, then the following will work according to the following Adobe help file:</p> <p><a href="http://www.adobe.com/devnet/acrobat/pdfs/PDFOpenParameters.pdf" rel="nofollow">http://www.adobe.com/devnet/acrobat/pdfs/PDFOpenParameters.pdf</a></p> <blockquote> <p>When opening a PDF document from a command shell, you can pass the parameters to the open command using the /A switch using the following syntax:</p> </blockquote> <pre><code>&lt;path to Acrobat&gt; /A "&lt;open parameter&gt;=OpenActions" "&lt;path to PDF file&gt;" </code></pre> <p>For example:</p> <pre><code>Acrobat.exe /A "page=4=OpenActions" "C:\example.pdf" </code></pre> http://stackoverflow.com/questions/1193048/how-to-retrieve-the-odbc-database-name-of-tables-in-ms-access-vba/1193683#1193683 0 Answer by David Walker for How to retrieve the odbc database name of tables in ms-access VBA David Walker http://stackoverflow.com/users/81770 2009-07-28T12:09:14Z 2009-07-28T14:31:23Z <p>Using the local name of the table, you can query the MSysObjects system table (typically hidden) for the table's Foreign Name.</p> <pre><code>SELECT MSysObjects.ForeignName FROM MSysObjects WHERE (((MSysObjects.Name)="LocalTableName")); </code></pre> <p>If you need more information about the foreign table, try your hand at parsing the 'Connect' column from the same table.</p> http://stackoverflow.com/questions/1187234/how-to-distiguish-between-ms-access-fullversion-with-access-run-time/1189620#1189620 0 Answer by David Walker for How to distiguish between MS Access Fullversion with Access Run-Time. David Walker http://stackoverflow.com/users/81770 2009-07-27T17:49:34Z 2009-07-27T17:49:34Z <p>Since you are asking for an answer that tests during your install process, the simplest answer is to query the registry. Prior to Access 2007 there was a specific key for Access Run Time, but it seems that with 2007 you need to check the Installed Packages path of the Office registry hierarchy.</p> <p>Here's the key for Access 2007 Runtime:</p> <pre><code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\12.0\Common \InstalledPackages\90120000-001C-0409-0000-0000000FF1CE </code></pre> <p>And here's the key for Access 2007:</p> <pre><code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\12.0\Common\ InstalledPackages\90120000-0015-0409-0000-0000000FF1CE </code></pre> <p>If you later want to re-verify that the setup remains as you want/need it, then try this:</p> <pre><code>IF SysCmd(acSysCmdRuntime) = true THEN ... END IF </code></pre> http://stackoverflow.com/questions/1170789/vba-select-not-returning-any-rows/1171971#1171971 2 Answer by David Walker for VBA select not returning any rows David Walker http://stackoverflow.com/users/81770 2009-07-23T14:00:59Z 2009-07-23T14:00:59Z <p>Your values in the field are numeric, so the extra single quotes aren't needed. Code should look like the following:</p> <pre><code>Me.lstDiff.RowSource = "select TestScenario,TestId from tblTesting where empid= " &amp; Me.txtEmpId &amp; " and testid= " &amp; Me.txtAutoNumber &amp; ";" </code></pre> <p>I've also dropped .Value from the field references, they're not harmful, but also aren't necessary.</p> <p>And I've added a semi-colon to the end of your statement.</p> <p>Depending on when/where you insert this code, you may need to add the following statement as well:</p> <pre><code>Me.lstDiff.Requery </code></pre> http://stackoverflow.com/questions/1165192/vba-sql-problem/1166117#1166117 2 Answer by David Walker for vba sql problem David Walker http://stackoverflow.com/users/81770 2009-07-22T15:29:40Z 2009-07-22T15:29:40Z <p>I'm going to guess that empid and testid are numeric, and you're setting them off like they're strings in the SQL statement. Remove the single-quotes that you've wrapped around your field references.</p> <pre><code>DoCmd.RunSQL (" Update tbltesting set IsDiff ='Yes' where empid= " &amp; Me.txtEmpId.Value &amp; " and testid= " &amp; Me.txtAutoNumber.Value &amp; ";") </code></pre> http://stackoverflow.com/questions/1154306/generate-xml-comments-with-sql-for-xml-statement 0 Generate XML comments with SQL FOR XML statement David Walker http://stackoverflow.com/users/81770 2009-07-20T15:39:34Z 2009-07-20T15:53:58Z <p>Background: I am generating pieces of a much larger XML document (HL7 CDA documents) using SQL FOR XML queries. Following convention, we need to include section comments before this XML node so that when the nodes are reassembled into the larger document, they are easier to read.</p> <p>Here is a sample of the expected output:</p> <pre><code>&lt;!-- ******************************************************** Past Medical History section ******************************************************** --&gt; &lt;component&gt; &lt;section&gt; &lt;code code="10153-2" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC"/&gt; &lt;title&gt;Past Medical History&lt;/title&gt; &lt;text&gt; &lt;list&gt; &lt;item&gt;COPD - 1998&lt;/item&gt; &lt;item&gt;Dehydration - 2001&lt;/item&gt; &lt;item&gt;Myocardial infarction - 2003&lt;/item&gt; &lt;/list&gt; &lt;/text&gt; &lt;/section&gt; &lt;/component&gt; </code></pre> <p>Here is the SQL FOR XML statement that I have constructed to render the above XML:</p> <pre><code>SELECT '10153-2' AS [section/code/@code], '2.16.840.1.113883.6.1' AS [section/code/@codeSystem], 'LOINC' AS [section/code/@codeSystemName], 'Past Medical History' AS [section/title], (SELECT [Incident] + ' - ' + [IncidentYear] as "item" FROM [tblSummaryPastMedicalHistory] AS PMH WHERE ([PMH].[Incident] IS NOT NULL) AND ([PMH].[PatientUnitNumber] = [PatientEncounter].[PatientUnitNumber]) FOR XML PATH('list'), TYPE ) as "section/text" FROM tblPatientEncounter AS PatientEncounter WHERE (PatientEncounterNumber = 6) FOR XML PATH('component'), TYPE </code></pre> <p>While I can insert the comments from the controlling function that reassembles these XML snippets into the main document, our goal is to have the comments be generated with the output to avoid document construction errors.</p> <p>I've tried a few things, but am having trouble producing the comments with the SELECT statement. I've tried a simple string, but have not been able to get the syntax for the line breaks. Any suggestions?</p> http://stackoverflow.com/questions/1133635/ms-access-2000-vba-value-from-a-combo-text-box-into-a-file-path-string/1134634#1134634 2 Answer by David Walker for MS Access 2000 - VBA Value from a combo/text box into a file path string David Walker http://stackoverflow.com/users/81770 2009-07-15T23:25:02Z 2009-07-15T23:25:02Z <p>You need to refer to the field as <code>Me.cmbTitle</code>. As it is written, it looks like you're calling the variable cmbTitle which doesn't exist.</p> http://stackoverflow.com/questions/1133300/odd-results-from-an-sql-query-in-ms-access/1133362#1133362 0 Answer by David Walker for Odd Results from an SQL query in MS Access David Walker http://stackoverflow.com/users/81770 2009-07-15T19:13:58Z 2009-07-15T19:13:58Z <p>It sounds like you are expecting to 'see' all of the records, but I think you are just retrieving the first record. I say this because you are seeing what would be the first record with each case. You will probably need to move to the next record in your recordset in order to see the next one.</p> <pre><code>rsServiceSched.MoveNext </code></pre> http://stackoverflow.com/questions/1123664/how-can-i-call-the-below-function-to-populate-my-access-form-list-control/1126184#1126184 0 Answer by David Walker for How can i call the below function to populate my access form list control David Walker http://stackoverflow.com/users/81770 2009-07-14T15:30:15Z 2009-07-14T15:30:15Z <p>That code is overly complex for what you're probably trying to do.</p> <p>Why not try to just set the control's row source and then requery.</p> <p>If you want to retain the parameterization, then pass in the SQL.</p> <pre><code>Dim strSQL As String strSQL = "SELECT MyField FROM MyTable;" Me.lstMyListBox.RowSource = strSQL Me.lstMyListBox.Requery </code></pre> http://stackoverflow.com/questions/1120674/accessing-sql-database-in-excel-vba/1122214#1122214 1 Answer by David Walker for Accessing SQL Database in Excel-VBA David Walker http://stackoverflow.com/users/81770 2009-07-13T21:35:40Z 2009-07-13T21:48:22Z <p>I've added the Initial Catalog to your connection string. I've also abandonded the ADODB.Command syntax in favor of simply creating my own SQL statement and open the recordset on that variable.</p> <p>Hope this helps.</p> <pre><code>Sub GetDataFromADO() 'Declare variables Set objMyConn = New ADODB.Connection Set objMyRecordset = New ADODB.Recordset Dim strSQL As String 'Open Connection objMyConn.ConnectionString = "Provider=SQLOLEDB;Data Source=localhost;Initial Catalog=MyDatabase;User ID=abc;Password=abc;" objMyConn.Open 'Set and Excecute SQL Command strSQL = "select * from myTable" 'Open Recordset Set objMyRecordset.ActiveConnection = objMyConn objMyRecordset.Open strSQL 'Copy Data to Excel ActiveSheet.Range("A1").CopyFromRecordset (objMyRecordset) End Sub </code></pre> http://stackoverflow.com/questions/1108065/cant-create-blank-form-in-ms-access/1111340#1111340 2 Answer by David Walker for Can't create blank form in MS Access David Walker http://stackoverflow.com/users/81770 2009-07-10T18:54:04Z 2009-07-10T18:54:04Z <p>I have experienced that type of behavior in Access 2003, but not yet with 2007.</p> <p>In those cases I launch the database with the /decompile flag on the end, recompile my VBA code, and exit. Upon return, I've never failed to be back in control of a functional database.</p> <p>I usually keep a 'Decompile' shortcut in my project folder. Here's the shortcut target:</p> <pre><code>"C:\Program Files\Microsoft Office\Office11\MSACCESS.EXE" "I:\Development\MyDatabase.mdb" /decompile </code></pre> http://stackoverflow.com/questions/1075294/how-do-i-store-pictures-in-sql-server-ms-access-interface/1082318#1082318 0 Answer by David Walker for How do I store pictures in SQL Server (MS Access interface) David Walker http://stackoverflow.com/users/81770 2009-07-04T14:40:05Z 2009-07-04T14:40:05Z <p>We have used DBPix from Ammara, <a href="http://www.Ammara.com" rel="nofollow">www.Ammara.com</a> for 5 or 6 years now to handle the capture and display. Very easy to use ActiveX control with complete sample code in their documentation, and affordable.</p> <p>Our team preferentially stores images on disk and refers to them by storing their location in a varchar, but the control will handle both methods.</p> http://stackoverflow.com/questions/1079386/pre-filling-data-in-data-entry-form-opened-as-acformadd/1082308#1082308 1 Answer by David Walker for Pre-filling data in data entry form (opened as acFormAdd) David Walker http://stackoverflow.com/users/81770 2009-07-04T14:34:12Z 2009-07-04T14:34:12Z <p>You can conditionally access the OpenArgs in the Form Load or Open events, and then use the OpenArgs to alert the form that you want it to perform a lookup routine.</p> <p>If you need help, post what code you have, or your real world situation and I'll be happy to assist you with the details.</p> http://stackoverflow.com/questions/1082160/ms-access-2003-simple-value-input-into-a-text-box-from-clicking-label-boxes/1082303#1082303 1 Answer by David Walker for MS Access 2003 - Simple value input into a text box from clicking label boxes David Walker http://stackoverflow.com/users/81770 2009-07-04T14:30:33Z 2009-07-04T14:30:33Z <p>Quick air code here...</p> <pre><code>Private Sub MyLabel_OnClick() Me.MyTextBox = "NVOWEGDJHF" End Sub </code></pre> <p>Don't forget your error handling.</p> http://stackoverflow.com/questions/1061557/how-to-get-result-from-a-column-with-combined-data/1061567#1061567 0 Answer by David Walker for How to get result from a column with combined data ? David Walker http://stackoverflow.com/users/81770 2009-06-30T03:23:10Z 2009-06-30T03:23:10Z <p>Am I missing something?</p> <pre><code>SELECT * FROM MyTable WHERE (id = 3) or (id = 5) or (id = 6) </code></pre> http://stackoverflow.com/questions/1061404/syntax-for-date-range-sql-query-in-openoffice-base/1061481#1061481 1 Answer by David Walker for Syntax for date range SQL query in OpenOffice Base David Walker http://stackoverflow.com/users/81770 2009-06-30T02:35:40Z 2009-06-30T02:35:40Z <p>This should work:</p> <pre><code>SELECT * FROM OrderTbl WHERE OrdDate BETWEEN '2007-01-01' AND '2007-01-31' </code></pre> http://stackoverflow.com/questions/1060730/why-does-xsd-validation-always-work-for-this-file/1061449#1061449 0 Answer by David Walker for Why does XSD validation always work for this file? David Walker http://stackoverflow.com/users/81770 2009-06-30T02:18:54Z 2009-06-30T02:18:54Z <p>You refer to that namespace here:</p> <pre><code> &lt;Worksheet ss:Name="Not 8 Counts"&gt; &lt;Table ss:ExpandedColumnCount="8" ss:ExpandedRowCount="8" x:FullColumns="1" x:FullRows="1"&gt; </code></pre> <p>with x:FullColumns and x:FullRows</p> http://stackoverflow.com/questions/1055274/efficient-sql-2000-query-for-selecting-preferred-candy/1055313#1055313 0 Answer by David Walker for Efficient SQL 2000 Query for Selecting Preferred Candy David Walker http://stackoverflow.com/users/81770 2009-06-28T17:21:55Z 2009-06-28T17:21:55Z <p>I changed your column Name to PersonName to avoid any common reserved word conflicts.</p> <pre><code>SELECT PersonName, MAX(Candy) AS PreferredCandy, MAX(PreferenceFactor) AS Factor FROM CandyPreference GROUP BY PersonName ORDER BY Factor DESC </code></pre> http://stackoverflow.com/questions/1055007/cannot-delete-rows-from-a-remote-access-database/1055018#1055018 0 Answer by David Walker for cannot delete rows from a remote access database David Walker http://stackoverflow.com/users/81770 2009-06-28T14:26:02Z 2009-06-28T14:26:02Z <p>Post your query and the primary keys, those may be the answer, but if it truly works locally but not from remote, then Shiraz is probably right. The web server user needs to have write privileges on the file and folder where the database resides.</p> <p>Is this IIS?</p> http://stackoverflow.com/questions/1036295/ms-access-linked-to-sql-server-views/1040558#1040558 2 Answer by David Walker for MS Access linked to SQL server views David Walker http://stackoverflow.com/users/81770 2009-06-24T19:47:52Z 2009-06-24T19:47:52Z <p>I have included my entire ODBC Reconnect function below. This function is predicated with the idea that I have a table called rtblODBC which stores all of the information I need to do the reconnecting. If you implement this function, you will NOT need to worry about connecting to multiple SQL databases, as that is handled smoothly with each table to be reconnected having its own connection string.</p> <p>When you get towards the end you will see that I use DAO to recreate the primary keys with db.Execute "CREATE INDEX " &amp; sPrimaryKeyName &amp; " ON " &amp; sLocalTableName &amp; "(" &amp; sPrimaryKeyField &amp; ")WITH PRIMARY;"</p> <p>If you have any questions, please ask.</p> <pre><code>Public Function fnReconnectODBC( _ Optional bForceReconnect As Boolean _ ) As Boolean ' Comments : ' Parameters: bForceReconnect - ' Returns : Boolean - ' Modified : ' -------------------------------------------------- On Error GoTo Err_fnReconnectODBC Dim db As DAO.Database Dim rs As DAO.Recordset Dim tdf As DAO.TableDef Dim sPrimaryKeyName As String Dim sPrimaryKeyField As String Dim sLocalTableName As String Dim strConnect As String Dim varRet As Variant Dim con As ADODB.Connection Dim rst As ADODB.Recordset Dim sSQL As String If IsMissing(bForceReconnect) Then bForceReconnect = False End If sSQL = "SELECT rtblODBC.LocalTableName, MSysObjects.Name, MSysObjects.ForeignName, rtblODBC.SourceTableName, MSysObjects.Connect, rtblODBC.ConnectString " _ &amp; "FROM MSysObjects RIGHT JOIN rtblODBC ON MSysObjects.Name = rtblODBC.LocalTableName " _ &amp; "WHERE (((rtblODBC.ConnectString)&lt;&gt;'ODBC;' &amp; [Connect]));" Set con = Access.CurrentProject.Connection Set rst = New ADODB.Recordset rst.Open sSQL, con, adOpenDynamic, adLockOptimistic 'Test the recordset to see if any tables in rtblODBC (needed tables) are missing from the MSysObjects (actual tables) If rst.BOF And rst.EOF And bForceReconnect = False Then 'No missing tables identified fnReconnectODBC = True Else 'Table returned information, we don't have a perfect match, time to relink Set db = CurrentDb Set rs = db.OpenRecordset("rtblODBC", dbOpenSnapshot) 'For each table definition in the database collection of tables For Each tdf In db.TableDefs 'Set strConnect variable to table connection string strConnect = tdf.Connect If Len(strConnect) &gt; 0 And Left(tdf.Name, 1) &lt;&gt; "~" Then If Left(strConnect, 4) = "ODBC" Then 'If there is a connection string, and it's not a temp table, and it IS an odbc table 'Delete the table DoCmd.DeleteObject acTable, tdf.Name End If End If Next 'Relink tables from rtblODBC With rs .MoveFirst Do While Not .EOF Set tdf = db.CreateTableDef(!localtablename, dbAttachSavePWD, !SourceTableName, !ConnectString) varRet = SysCmd(acSysCmdSetStatus, "Relinking '" &amp; !SourceTableName &amp; "'") db.TableDefs.Append tdf db.TableDefs.Refresh If Len(!PrimaryKeyName &amp; "") &gt; 0 And Len(!PrimaryKeyField &amp; "") &gt; 0 Then sPrimaryKeyName = !PrimaryKeyName sPrimaryKeyField = !PrimaryKeyField sLocalTableName = !localtablename db.Execute "CREATE INDEX " &amp; sPrimaryKeyName &amp; " ON " &amp; sLocalTableName &amp; "(" &amp; sPrimaryKeyField &amp; ")WITH PRIMARY;" End If db.TableDefs.Refresh .MoveNext Loop End With subTurnOffSubDataSheets fnReconnectODBC = True End If rst.Close Set rst = Nothing con.Close Set con = Nothing Exit_fnReconnectODBC: Set tdf = Nothing Set rs = Nothing Set db = Nothing varRet = SysCmd(acSysCmdClearStatus) Exit Function Err_fnReconnectODBC: fnReconnectODBC = False sPrompt = "Press OK to continue." vbMsg = MsgBox(sPrompt, vbOKOnly, "Error Reconnecting") If vbMsg = vbOK Then Resume Exit_fnReconnectODBC End If End Function </code></pre> http://stackoverflow.com/questions/972001/programmatically-add-comments-to-pdf-header 4 Programmatically add comments to PDF header David Walker http://stackoverflow.com/users/81770 2009-06-09T19:21:03Z 2009-06-16T05:11:44Z <p>Has anyone had any success with adding additional information to a PDF file?</p> <p>We have an electronic medical record system which produces medical documents for our users. In the past, those documents have been Print-To-File (.prn) files which we have fed to a system that displayed them as part of an enterprise medical record.</p> <p>Now the hospital's enterprise medical record vendor wants to receive the documents as PDF, but still wants all of the same information stored in the header.</p> <p>Honestly, we can't figure out how to put information into a PDF file that doesn't break the PDF file.</p> <p>Here is the start of one of our PDFs... </p> <pre><code>%PDF-1.4 %âãÏÓ 6 0 obj &lt;&lt; /Type /XObject /Subtype /Image /BitsPerComponent 8 /Width 854 /Height 130 /ColorSpace /DeviceRGB /Filter /DCTDecode /Length 17734&gt;&gt; stream </code></pre> <p>In our PRN files, we would insert information like this:</p> <pre><code>%MRN% TEST000001 %ACCT% TEST0000000000001 %DATE% 01/01/2009^16:44 %DOC_TYPE% Clinical %DOC_NUM% 192837475 %DOC_VER% 1 </code></pre> <p>My question is, can I insert this information into a PDF in a manner which allows the document server to perform post-processing, yet is NOT visible to the doctor who views the PDF?</p> <p>Thank you,</p> <p>David Walker</p> http://stackoverflow.com/questions/1322829/connection-to-oracle-via-vbscript/1323479#1323479 Comment by David Walker on Connection to Oracle via VBScript David Walker http://stackoverflow.com/users/81770 2009-08-24T18:12:33Z 2009-08-24T18:12:33Z Absolutely, connectionstrings.com is your friend! http://stackoverflow.com/questions/1311885/sql-as-control-source-for-access-form-field/1315683#1315683 Comment by David Walker on SQL as Control Source for Access Form field David Walker http://stackoverflow.com/users/81770 2009-08-22T17:35:40Z 2009-08-22T17:35:40Z Because the first answer already suggested your solution, yet the OP was still seeking a method that he could utilize a SQL statement as the source of his query. http://stackoverflow.com/questions/1255982/dynamically-change-size-of-splitcontainer-panel/1256133#1256133 Comment by David Walker on Dynamically change size of splitContainer Panel David Walker http://stackoverflow.com/users/81770 2009-08-12T16:11:20Z 2009-08-12T16:11:20Z This was problematic in my specific situation, but I worked with the control developer to determine that there was a SizeChanged Event which I used to set the SplitterDistance to the Size. Thanks for the help. http://stackoverflow.com/questions/1255982/dynamically-change-size-of-splitcontainer-panel/1256133#1256133 Comment by David Walker on Dynamically change size of splitContainer Panel David Walker http://stackoverflow.com/users/81770 2009-08-10T18:44:09Z 2009-08-10T18:44:09Z I like the general idea of a DataBinding on the SplitterDistance property. I'm using VS2008 and am not familiar with creating a custom DataBinding. http://stackoverflow.com/questions/1255982/dynamically-change-size-of-splitcontainer-panel Comment by David Walker on Dynamically change size of splitContainer Panel David Walker http://stackoverflow.com/users/81770 2009-08-10T18:43:39Z 2009-08-10T18:43:39Z Added the screenshot, thanks for the suggestion. http://stackoverflow.com/questions/1233185/how-to-update-or-select-the-same-rows-value-in-the-table Comment by David Walker on How to update or select the same rows value in the table? David Walker http://stackoverflow.com/users/81770 2009-08-05T14:26:05Z 2009-08-05T14:26:05Z The update is quite simple, but does this table have a primary key? http://stackoverflow.com/questions/1187234/how-to-distiguish-between-ms-access-fullversion-with-access-run-time/1189620#1189620 Comment by David Walker on How to distiguish between MS Access Fullversion with Access Run-Time. David Walker http://stackoverflow.com/users/81770 2009-07-27T20:47:15Z 2009-07-27T20:47:15Z True, thanks Tony. http://stackoverflow.com/questions/1176951/ms-access-2003-linked-tables-to-sql-server-2005-windows-authentication-slow Comment by David Walker on MS Access 2003 + linked tables to SQL Server 2005 + Windows Authentication = slow David Walker http://stackoverflow.com/users/81770 2009-07-27T20:42:19Z 2009-07-27T20:42:19Z Can you post your connection string? Please obfusticate your local values. :) http://stackoverflow.com/questions/1008897/emr-electronic-medical-record-standard-record-format/1009009#1009009 Comment by David Walker on EMR (Electronic Medical Record) standard record format? David Walker http://stackoverflow.com/users/81770 2009-07-25T21:55:25Z 2009-07-25T21:55:25Z The CCR is a document developed by ASTM. The Continuity of Care Document (CCD) is a collaborative effort by ASTM and HL7 creating a document like the CCR but built on HL7's Clinical Document Architecture (CDA). http://stackoverflow.com/questions/1166283/vba-update-query/1166337#1166337 Comment by David Walker on VBA update query David Walker http://stackoverflow.com/users/81770 2009-07-22T18:55:55Z 2009-07-22T18:55:55Z No problem. Glad you got it straightened out. http://stackoverflow.com/questions/1166283/vba-update-query/1166312#1166312 Comment by David Walker on VBA update query David Walker http://stackoverflow.com/users/81770 2009-07-22T16:00:37Z 2009-07-22T16:00:37Z No, we've already covered this in the OPs original thread. :( http://stackoverflow.com/questions/1165192/vba-sql-problem/1166117#1166117 Comment by David Walker on vba sql problem David Walker http://stackoverflow.com/users/81770 2009-07-22T15:56:18Z 2009-07-22T15:56:18Z Run this as a check to make sure your fields have the data that you think they have: DoCmd.RunSQL (&quot; SELECT * FROM tbltesting WHERE empid= &quot; &amp; Me.txtEmpId.Value &amp; &quot; and testid= &quot; &amp; Me.txtAutoNumber.Value &amp; &quot;;&quot;) Incidentally, you can leave off the .Value portion. http://stackoverflow.com/questions/1154306/generate-xml-comments-with-sql-for-xml-statement/1154348#1154348 Comment by David Walker on Generate XML comments with SQL FOR XML statement David Walker http://stackoverflow.com/users/81770 2009-07-20T18:13:20Z 2009-07-20T18:13:20Z Thanks for the help! Had to actually put in any white space that I actually wanted preserved, such as returns, tabs, etc; because the comment by its nature won't recognize any &amp;#10; tags, etc. http://stackoverflow.com/questions/804260/best-practices-and-or-advice-for-diamond-relationing-tables-linq-to-sql Comment by David Walker on Best practices and/or advice for diamond relationing tables (Linq to SQL) David Walker http://stackoverflow.com/users/81770 2009-07-12T13:54:13Z 2009-07-12T13:54:13Z Your relationship diagram isn't coming through... :( http://stackoverflow.com/questions/1082160/ms-access-2003-simple-value-input-into-a-text-box-from-clicking-label-boxes/1082303#1082303 Comment by David Walker on MS Access 2003 - Simple value input into a text box from clicking label boxes David Walker http://stackoverflow.com/users/81770 2009-07-05T00:25:01Z 2009-07-05T00:25:01Z Labels absolutely DO have events, the On Click and the On Dbl Click. Only when a label is associated with a control does it lose it's event properties. My answer is completely correct in the OP's context. Please, feel free to check for yourself.