active questions tagged ms-access - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T21:21:16Z http://stackoverflow.com/feeds/tag/ms-access http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/352311/numeric-date-in-database-how-to-interact-with-that-using-normal-dates 0 Numeric "date" in database - How to interact with that using "normal" dates? Skunk 2008-12-09T10:18:53Z 2009-12-18T19:48:46Z <p>I'm using this database where the date colomn is a numeric value instead of a Date value. </p> <p>Yes, I know I can change that with a mouseclick, but all the applications using that database were made by one of my predecessors (and everyone after him just ignored it and built on). So if I'd change it to Date a lot af applications would fail. :(</p> <p>Well, I am making an overview of that database, ranging from one specfic date to another. I tried using a dropdown list but as you can tell, a thousand options in one list is terribly inconvenient, even ugly. </p> <p>I rather have small inputfields for day - month - year, but there comes waltzing in the numeric date in the database. I would have to calculate the date back to the numeric value somehow... </p> <p>There must be an easy solution to this. Right?<br /><br /><br /><br /> I'm using ASP(vbscript) for the application, it's for an intraweb, and I have an Access Database.</p> http://stackoverflow.com/questions/1929592/jdbc-driver-for-msaccess-which-will-work-on-unix 0 JDBC Driver for MsAccess which will work on Unix RN 2009-12-18T17:19:56Z 2009-12-18T18:53:44Z <p>I need a JDBC driver for MsAccess to be used in a Unix environment</p> <p>I would strongly prefer it to be an open-source</p> <p>Also it should support SQL statements</p> <p>(Jackcess came close to being my choice- but it doesn't support SQL queries) <a href="http://jackcess.sourceforge.net/faq.html#query" rel="nofollow">http://jackcess.sourceforge.net/faq.html#query</a></p> http://stackoverflow.com/questions/1929219/how-to-requery-a-subform-from-another-form 0 How to requery a subform from another form? Tony L. 2009-12-18T16:20:00Z 2009-12-18T16:49:56Z <p>I've struggling with this problem on my own, then with some help, then search about it; but I haven't had any luck. So I decided to ask.</p> <p>I have two forms in <em>Access 2007</em> lets call them <code>MainForm</code> and <code>EntryForm</code>.<br> <code>MainForm</code> has a subform and a button. The button opens the <code>EntryForm</code> in Add Mode. What I want to do is when the <code>EntryForm</code> saves the new record it would update (requery) the subform in <code>MainForm</code>.</p> <p>I've try this setup code</p> <pre><code>Private Sub cmdSaveAndClose_Click() DoCmd.Save 'requery list Forms![MainForm]![subformName].Requery '' I've also tried these 'Forms![MainForm]![subformName].Form.Requery 'Forms.("MainForm").[subformName].Requery 'Forms.("MainForm").[subformName].Form.Requery DoCmd.Close End Sub </code></pre> <p>None of these attempts seem to work. Is there a way to make this requery? Thanks for the help in advance.</p> http://stackoverflow.com/questions/1928447/ms-access-index-optimisation 0 MS Access: index optimisation Patrick Honorez 2009-12-18T14:17:15Z 2009-12-18T14:50:02Z <p>Let's say we have a [Valuations] table containing several values per date and per fund:<br> -FundId<br> -ValDate<br> -Value1<br> -Value2... </p> <p>The Primary key is obviously FundId+ValDate.<br> I have also indexed the ValDate field since I often query for values on a specific date. </p> <p>My question is: should I also create a specific index for the FundId, or is MsAccess clever enough to use the Primary key when querying on a specific FundId ?</p> http://stackoverflow.com/questions/1924980/printing-an-access-report-and-decimal-place-weirdness 0 Printing an Access report and decimal place weirdness Michael Itzoe 2009-12-17T22:15:35Z 2009-12-18T13:43:36Z <p>My client has an Access (2000) application that we didn't write and we don't have access to the MDB (it's an MDE). One of the functions is to create a packing slip report. There's no option to preview, only print or save to file.</p> <p>There's a field that represents a weight; it's a Double field. On a standalone machine, it prints correctly, but when printing through Terminal Services it displays all zeros. Printing to XPS format, however, allowed us to see that it was formatting the number to about twenty decimal places, which suggests to me on the standalone machine it may be doing the same thing but left-aligning the field, but right-aligning (and thus displaying only the zeros) through Terminal Services.</p> <p>For what it's worth, I had nothing to do with this, but our network guy brought it to me. I can get more info if needed. Any ideas what may cause this to happen and how to fix it?</p> http://stackoverflow.com/questions/1344091/mdb-2-csv-batch 0 MDB 2 CSV batch. darhipo 2009-08-27T22:27:30Z 2009-12-18T11:57:10Z <p>Does anybody know what I could use to write a script to convert all MDB files in a directory to CSV files? I'm working on Windows but have been using Cygwin for some work.</p> http://stackoverflow.com/questions/1924986/change-all-primary-keys-in-access-table-to-new-numbers 1 Change all primary keys in access table to new numbers ScottK 2009-12-17T22:16:37Z 2009-12-18T10:41:35Z <p>I have an access table with an automatic primary key, a date, and other data. The first record starts at 36, due to deleted records. I want to change all the primary keys so they begin at 1 and increment, ordered by the date. Whats the best way to do this?</p> <p>I want to change the table from this:</p> <pre><code>| TestID | Date | Data | | 36 | 12/02/09 | .54 | | 37 | 12/04/09 | .52 | </code></pre> <p>To this:</p> <pre><code>| TestID | Date | Data | | 1 | 12/02/09 | .54 | | 2 | 12/04/09 | .52 | </code></pre> <p><strong>EDIT:</strong> Thanks for the input and those who answered. I think some were reading a little too much into my question, which is okay because it still adds to my learning and thinking process. The purpose of my question was two fold: 1) It would simply be nicer for <em>me</em> to have the PK match with the order of my data's dates and 2) to learn if something like this was possible for later use. Such as, if I want to add a new column to the table which numbers the tests, labels the type of test, etc. I am trying to learn a lot at once right now so I get a little confused where to start sometimes. I am building .NET apps and trying to learn SQL and database management and it is sometimes confusing finding the right info with the different RDMS's and ways to interact with them.</p> http://stackoverflow.com/questions/1918379/table-joins-in-access-2003-on-date-time-field 2 table joins in Access 2003 on date-time field PowerOfGrayskull 2009-12-16T22:50:45Z 2009-12-18T05:17:52Z <p>I need to join my data table to a server calendar file (has set fiscal dates, periods, etc.). I don't get any results and believe it is because my table has date/time like "11/23/2009 11:30:34AM" and the calendar file only has date/time like "11/23/2009", so the fields are not identical.</p> <p>current SQL reads like: From tbl_data Inner Join tbl_calendar on tbl_data.TRXdate = tbl_calendar.TRXdate</p> <p>any ideas?</p> http://stackoverflow.com/questions/1920552/concatenate-rows-into-1-access-2007 0 Concatenate rows into 1 - access 2007 jonasroelens 2009-12-17T09:42:14Z 2009-12-18T02:56:06Z <p>Hello,</p> <p>I'm making a database in Access 2007, and currently I'm struggling with a query. In only one column, it is possible to cose multiple answers. So, when I open the query I get 3 rows when 3 answers were given. I would like to concatenate the rows into one. Sometimes there is no answer, sometimes 1 or 2 or maximum 3.</p> <p>For the moment my query looks like this:</p> <p><strong>COLUMNNAMES</strong>: B - Latijnse benaming (space) B - Nederlandse benaming (space) Bloemen.B - April 2.Value (space) B - Klas (space) - B - Leerkracht (space) B - Locatie</p> <p><strong>ROW 1</strong> Abelmochus (space) (space) Zaaien (space) 1ATA (space) Depuydt (space) Serre 1</p> <p><strong>ROW 2</strong> Abelmochus (space) (space) Oogsten (space) 1ATA (space) Depuydt (space) Serre 1</p> <p><strong>ROW 3</strong> Abelmochus (space) (space) Bemesten (space) 1ATA (space) Depuydt (space) Serre 1</p> <p>I would like it when it looks like this:</p> <p><strong>ROW 1</strong> Abelmochus (space) (space) Zaaien, Oogsten, Bemesten (space) 1ATA (space) Depuydt (space) Serre 1</p> <p>The tbl is called Bloemen and this is the SQl of the query for the moment:</p> <pre><code> SELECT Bloemen.[B - Latijnse benaming], Bloemen.[B - Nederlandse benaming], Bloemen.[B - April 2].Value, Bloemen.[B - Klas], Bloemen.[B - Leerkracht], Bloemen.[B - Locatie] FROM Bloemen WHERE (((Bloemen.[B - April 2].Value) Is Not Null)); </code></pre> <p>Can anyone help me to concatenate the rows into one. I don't know how to write a SQL... I have to do this for 48 querys, so I would be helpfull when it's kind of standard.</p> <p>Thanks a lot!!!!!!! </p> <p>Jonas Roelens</p> http://stackoverflow.com/questions/1924332/wmsetfocus-event-not-fired-microsoft-access-2000 0 WM_SETFOCUS Event not fired Microsoft Access 2000 froland 2009-12-17T20:26:56Z 2009-12-18T01:51:41Z <p>First some context: I have a Microsoft Access 2000 project (ADP file) accessing a SQL Server 2000 Database. The main form of that application has a lot of controls and subforms.</p> <p>On one of the subforms which contain a summary of some information about companies, each record has two buttons that lead to a search form that access a web service and a form that display detailed information related to the current company.</p> <p>The subform display 4 records. If I play a bit in the various windows accessible from there doing some searches and looking at and modifying detailed info and then going back to the subform, I can't set the focus to the edit box of the first 2 records. They are completely "dead".</p> <p>I tried to have some more insight by looking at event fired in the subform using Spy++ and I discovered that the WM_SETFOCUS is never fired to the text boxes I click onto on those two first records but they are fired to the third record who was the last one I used to access the search window and the detailed information.</p> <p>Is that a GDI related problem ? General corruption of ADP file ? What method can I use to debug that problem ?</p> http://stackoverflow.com/questions/1872554/ms-access-how-to-automatically-select-yes-in-warning-message-boxes 0 ms-access - how to automatically select yes in warning message boxes silverkid 2009-12-09T09:10:13Z 2009-12-18T01:50:28Z <p>in ms-access i am running a macro that runs several queries, during the execution of a query a message box appears </p> <p>"you are about to run an update.......... are you sure you want to run this query ? " </p> <p>how can i automatically select for all such cases so that macro runs without human intervention.</p> http://stackoverflow.com/questions/1917981/how-to-use-controls-collection-in-access-2003-and-vba 0 How to use Controls collection in Access 2003 and VBA KeithA 2009-12-16T21:44:55Z 2009-12-18T01:25:10Z <p>I'm having a heck of the time trying to figure this one out.</p> <p>I want to pass a Controls collection to a function but I get a type mismatch. Here's the function declaration:</p> <pre><code>Public Function DoStuffToCollection(topCtlList As Controls, isLocked As Boolean) </code></pre> <p>And here's how I call it:</p> <pre><code>Call DoStuffToCollection(myPage.Controls, isLocked) </code></pre> <p>myPage is a Page control from the TabControl. I've stepped through the code to see if there was something in myPage.Controls and there is. </p> <p>For fun, I passed in Me.Controls (which would be the Form's control collection) instead of the myPage.Controls and no type mismatch. Is there a difference between a Form control collection and a Page control collection? This is driving me crazy. </p> <p>A bit more digging, the debugger is calling myPage.Controls Children/Children as the type and the Me.Controls as Controls/Controls as the type. Why is this? </p> http://stackoverflow.com/questions/1901387/how-do-i-add-an-email-preview-button-to-a-form-in-ms-access-2003 0 How do I add an email preview button to a form in MS-Access 2003 draice 2009-12-14T15:01:28Z 2009-12-18T01:08:56Z <p>I'm creating a form on MS Access 2003 that will send out a html email newsletter to a list of email addresses. How do I put a preview button into my form that will let me preview my email before I send it? I think I have to use an active-x control, but I have no idea where to start.</p> http://stackoverflow.com/questions/1921119/type-mismatch-runtime-error-13-access-2007 0 type mismatch runtime error 13 access 2007 tintincute 2009-12-17T11:29:10Z 2009-12-17T15:03:03Z <p>hi</p> <p>I just migrated to ms access 2007 and created my own ribbon. In my form, I have this "print" button where if you click that it will open the "report form" </p> <p>here is what I wrote in my VBA code: </p> <pre><code>Case "btnPrintRevisionEingabe" DoCmd.OpenReport acReport, "Revision_Eingabe_rpt", acSaveNo </code></pre> <p>and when I clicked on the "print" button </p> <p>I'm getting an error "type mismatch runtime error 13"....</p> <p>Please help.. Thanks</p> http://stackoverflow.com/questions/1913523/accessing-an-access-db-from-outlook-via-vba 0 Accessing an Access DB from Outlook via VBA camastanta 2009-12-16T09:47:42Z 2009-12-17T12:47:28Z <p>Hi</p> <p>The situation: In Outlook I get a message from a server. The content of the message needs to be put into an Access db. But, there may not exist another message with the same date. So, I need to look into a db if there is already a message with the same date and time. If there exists one, then it needs to be replaced and otherwise the message needs to be added to the database. The database contains a list of current positions from the vehicles on the road.</p> <p>The problem:</p> <p>I have problems to compare a date time with a date time in an Access DB via VBA. The query I use returns no records but there is a record in the database.</p> <p>This is the query I use:</p> <p>adoRS.Open "SELECT * FROM currentpositions WHERE ((currentpositions.<br> [dateLT])=" &amp; "#" &amp; date_from_message &amp; "#" &amp; ")", adoConn, adOpenStatic,<br> adLockOptimistic</p> <p>Second I need to now what the result is of that query. How can I determine the number of records that my query gives me?</p> <p>Thanks camastanta</p> http://stackoverflow.com/questions/1343296/opening-an-mdb-access-file-without-access 0 opening an mdb access file without access IIIIIIIIIIllllIlIlIlIlllllllII 2009-08-27T19:24:00Z 2009-12-17T05:24:34Z <p>i dont have microsoft access but would like to open an mdb file, is there any way to do this?</p> <p>the mdb file contains SQL code that i need. it is just a file that connects to a remote database. i need to view the sql code</p> <p>i did try openoffice base, but it only showed me some tables. i dont see where the sql code is?</p> http://stackoverflow.com/questions/698839/how-to-extract-the-schema-of-an-access-mdb-database 6 How to extract the schema of an Access (.mdb) database? AngryHacker 2009-03-30T20:10:01Z 2009-12-17T05:19:09Z <p>I am trying to extract the schema of an .mdb database, so that I can recreate the database elsewhere. </p> <p>How can I pull off something like this?</p> http://stackoverflow.com/questions/1917516/sql-count-with-group-by-not-returning-0-zero-records 0 SQL count() with group by not returning 0/zero records BikeMrown 2009-12-16T20:38:54Z 2009-12-16T22:54:17Z <p>For ease of discussion, consider this basic table (Test) in Access...</p> <pre><code>ID division name role 1 1 Frank 100 2 2 David 101 3 3 John 101 4 2 Mike 102 5 2 Rob 102 7 3 Dave 102 8 3 Greg 102 </code></pre> <p>I want to count the users of a certain role in a division. If I do a simple count(), I get the proper 0 returned:</p> <pre><code>SELECT COUNT(ID) as ct FROM Test WHERE role &gt;=101 and division=1; </code></pre> <p>yields</p> <pre><code>division ct 1 0 </code></pre> <p>However, I want to include the division number in the results (for the sake of further joining, reports, etc) and it always returns null/no rows instead of the division and count of 0:</p> <pre><code>SELECT division, COUNT(ID) as ct FROM Test WHERE role &gt;=101 GROUP BY division HAVING division=1; </code></pre> <p>or</p> <pre><code>SELECT division, COUNT(ID) as ct FROM Test WHERE role &gt;=101 AND division=1 GROUP BY division; </code></pre> <p>yields</p> <pre><code>division ct </code></pre> <p>I originally came about this because I would also like this to work if the user enters a division that is not in the table (like 4)...</p> <pre><code>SELECT division, COUNT(ID) as ct FROM Test WHERE role &gt;=101 AND division IN (1,2,4) GROUP BY division; </code></pre> <p>yields</p> <pre><code>division ct 2 3 </code></pre> <p>instead of</p> <pre><code>division ct 1 0 2 3 4 0 </code></pre> <p>Is it not possible to return division along with the count if the count is 0? </p> http://stackoverflow.com/questions/1856266/commas-instead-of-semicolons-in-ms-access-lookup-column 0 Commas instead of semicolons in MS Access lookup column Jim Taylor 2009-12-06T19:09:41Z 2009-12-16T17:46:37Z <p>I would not dare label myself as a programmer. But I am running a website with a storefront. I want to label some of my products with multiple categories. This involves creating one column in my MS Access database (called categories) that has categories separated by commas. i.e. "shirts,clothing,wearables,sports" </p> <p>I've added a lookup column that does this fine and inserts the categories I choose for a particular product. The problem is that when I export my database into a txt file, Excel file, etc... this column shows up with semicolons! "shirts;clothing;wearable;sports" </p> <p>Now, I could go and replace all semicolons with commas in that column, but I'm hoping there is an easier way to do this within MS Access. Perhaps a setting I am not aware of?</p> <p>Any assistance would be greatly appreciated!</p> http://stackoverflow.com/questions/1162557/can-you-upgrade-access-2-0-to-access-2000-or-later-access-project 0 Can you upgrade Access 2.0 to Access 2000 or later Access project? Gibbons 2009-07-22T01:12:35Z 2009-12-16T15:34:55Z <p>Due to a merger, we have inherited a couple of legacy apps which run on Access 2.0. Ideally we would like to re-write them as intranet web apps but due to other priorities this is not going to happen anytime soon. </p> <p>Our main concern is to get the data off of the client machines and preferably into SQL Server. Is there a way to upgrade 2.0 to an Access 2000 or later project? </p> http://stackoverflow.com/questions/476180/add-ado-net-data-tables-to-a-blank-mdb-file 0 Add ado.net data tables to a blank MDB file 2009-01-24T15:47:16Z 2009-12-16T14:46:15Z <p>I'm wondering how to add several data tables that I've built in code, to a blank MDB file that ships with my app.</p> <p>I find it easy enough to connect to the MDB file via the OledbConnection object, but then I'm at a loss for an easy way to add my tables to it. There it sits...open...and empty, but what next?</p> <p>I can add my tables to a dataset easily enough, but I still don't see an easy way to map the dataset over to my open MDB file.</p> <p>Am I missing an easy fix for this? I'd like to avoid using ADOX if possible. I also see that it is very easy to write the dataset out as XML, but find no similar functionality for writing out an MDB file.</p> <p>Any help would be appreciated. </p> http://stackoverflow.com/questions/835765/how-to-set-ssis-package-dynamic-mdb-connection-when-running-package-from-net-ap 1 How to Set SSIS package dynamic .mdb connection When Running Package from .NET Application Devtron 2009-05-07T16:39:52Z 2009-12-16T14:43:15Z <p>Hello, </p> <p>I am currently working on a VB.NET desktop application that uses .mdb (Access) database files on the backend. The .mdb files are opened and edited in the VB.NET app. Once editing is completed, the users will need to import the data into our SQL Server database. This is an easy task, until you try to introduce the dynamic filepath scenario.</p> <p>I have a fair amount of experience with SSIS but am having some trouble with approaching this. I have created a WinForm that allows the user to browse to the .mdb file of their choice. The .mdb filenames have timestamp/date information in them, to make them unique. (I did not develop this part of the app, I recently began working on this, hence the problems. I would not timestamp an .mdb filename but this is what Im forced to use!).</p> <p>Anyways, I need to pass the filename and path to my SSIS package, dynamically. I see where you create variables for ConnectionString, etc. But I am really unsure of the details and what type of Data Connection I should use for MS Access (Ole DB, ODBC, or Jet 4.0 for Office?? sheesh there are a lot!!)</p> <p>I also assume that my data connection's connection string must be dynamic, since the package will use the .mdb file as the SOURCE. But how do you create a dynamic data connection in SSIS for .mdb files?</p> <p>And how do I pass the filename/path string to my SSIS package?</p> <p>I am currently prototyping with this code:</p> <pre><code> 'Execute the SSIS_Import package Dim pkgLocation As String Dim pkg As New Package Dim app As New Microsoft.SqlServer.Dts.Runtime.Application Dim pkgResults As DTSExecResult Dim eventListener As New EventListener() Try pkgLocation = "C:\SSIS_DataTransfer\ImportPackage.dtsx" 'TO-DO: pass databasePath variable to SSIS package here ??? pkg = app.LoadPackage(pkgLocation, eventListener) pkgResults = pkg.Execute(Nothing, Nothing, eventListener, Nothing, Nothing) Select Case pkgResults Case DTSExecResult.Completion MsgBox("Data import completed!") Case DTSExecResult.Success MsgBox("Data import was successful!") Case DTSExecResult.Failure MsgBox("Data import was not successful!") End Select Catch ex As Exception MsgBox(ex.Message) End Try </code></pre> <ol> <li>How do I pass the .mdb file location to my SSIS package? LoadPackage maybe?</li> <li>How do I use the dynamic file location in my Data Connection for my SSIS package?</li> </ol> <p>It is quite simple to upload an .mdb file that is NOT dynamic. Setting the source and destination is quite easy until you introduce the DYNAMIC aspect of user selection. How is this possible in SSIS? </p> <p>any help is greatly appreciated. Thank you.</p> http://stackoverflow.com/questions/507698/vc-2008-get-table-names-from-datatable-into-combolist-how-to-merge-tables-fr 0 VC# 2008: Get Table names from DataTable into ComboList / How to merge tables from 2 MDBs ? OneShot 2009-02-03T15:57:22Z 2009-12-16T14:39:19Z <p>My program that I am writing's purpose arose with this issue:</p> <p>There are two users, each user saves to a .MDB file. One user has half the updated / correct information (the other half is outdated) and the other user has half the information (the other half is outdated).</p> <p>User1: 25% + 25% = 50% current information needed the other 50% is outdated User1 works on 2 out of the 4 items.</p> <p>User2: 25% + 25% = 50% current information needed the other 50% is outdated User2 works on 2 out of the 4 items.</p> <p>I need to take that 50% (2 out of the 4 items) from lets say...User1 and add it to User2 making it 100% current (4 out of 4 items).</p> <p>Their SQL style table structure is (should be anyways) identical (but if possible I would like to provide an event where for some a new table was added I would know)</p> <p>If I could find out how to get all the table names from the DataTable, I could systematically array through the DataTable and replace the tables with the tables from the other .MDB file that I know need to be updated. I know DataSet has "DataSet.Tables" ...but that doesn't help me very much.</p> <p>If I can do that, I can also add the tables to a combo box and create functionality to where whatever the combo box says, thats the table I will list on my Datagrid.</p> <p>If any of you have any ideas on how to go about doing this (or if you even understand what i'm saying) please let me know. I'm 70% done with ths project, and these seem to be my last logic road blocks. I think I explained this right.</p> <ol> <li>How do I list just the Table names in a DataTable object.</li> <li>What are your ideas on taking specific Tables out of a .MDB file and adding them to another .MDB file?</li> <li>How would I go about inputting a ComboList drop-down box that included all the tables names...when I changed the table name it would list those contents on a Datagrid. </li> <li>Is there a way to list tables on a Datagrid, and when you click on a Table it lists the contents of that table (kind of like a Tree structure). </li> </ol> <p><strong>EDIT: I think he is right! I think DataTables are just one table whereas DataSets are sets of Tables. With that in mind, how do I list all the tables in a .MDB file into a DataSet? That would fix my problem perfectly.</strong></p> http://stackoverflow.com/questions/304367/will-the-net-entity-framework-work-with-a-mdb 0 Will the .Net Entity Framework work with a .mdb? Ryan Michela 2008-11-20T04:59:07Z 2009-12-16T14:29:46Z <p>Can use a .mdb file as the data source for an Entity Framework model using the Microsoft Jet OLEDB data provider? If so, how will I be limited? No stored procedures, for example.</p> http://stackoverflow.com/questions/280894/automatically-convert-access-db 1 automatically convert access db Joshxtothe4 2008-11-11T13:41:01Z 2009-12-16T14:24:03Z <p>Hello,</p> <p>I have an access database, with a query made. I need to automate it so that each night this query can run and export to a tab delimited csv file. It is not possible to export a query to a csv file from within access. My question is, are there any tools that can select certain tables, or perform an sql query on an mdb file, and export to a csv file?</p> http://stackoverflow.com/questions/1181758/accdb-vs-mdb-which-is-faster-better 2 accdb vs mdb. Which is faster/better? MT 2009-07-25T09:43:51Z 2009-12-16T14:18:51Z <p>Does anyone have any experience of using Access 2007 with the prior versions of Access (i.e. mdb files).</p> <p>We have been upgraded, but are still using the mdb format. Some of our code (in particular Docmd.TransferDatabase acImportReport) are now incredibly slow.</p> <p>I tried an initial test and converted our client mdb to accdb and the above TransferDatabase seemed to perform better. </p> <p>I am now wondering whether we should bite the bullet and convert all the other files that make up the application. There is no need for replication or user-level security that appear to be the only limitations of the new version from the old. We have one client mdb, three backend databases and then 3000 mdbs each containing a single report (don't ask!).</p> <p>Does the new version perform any faster than the old one - particularly over an already struggling network)?</p> http://stackoverflow.com/questions/1363660/import-ms-visual-foxpro-dbf-tables-into-ms-access-2007 1 Import MS Visual Foxpro .dbf tables into MS Access 2007 sinisana 2009-09-01T17:27:47Z 2009-12-16T14:17:00Z <p>Does anyone know how to import .dbf file into MS ACcess 2007?</p> http://stackoverflow.com/questions/1430870/get-all-source-code-in-mdb-file-msaccess-using-c-vbscript 2 get all source code in mdb file (msaccess) using c#/vbscript Fidel 2009-09-16T04:01:23Z 2009-12-16T14:15:30Z <p>I would like to get all the source code from an access database (forms, modules) without using office interops.</p> <p>I liked the <code>AllCodeToDesktop()</code> function <a href="http://wiki.lessthandot.com/index.php/Code%5Fand%5FCode%5FWindows" rel="nofollow">found here</a>, however that runs from inside the mdb file.</p> <p>Could someone make a vbs file that loads the mdb file and runs that function on it?</p> http://stackoverflow.com/questions/1447482/ms-access-mdb-compiler 2 MS-Access .mdb compiler? Derek 2009-09-19T01:49:33Z 2009-12-16T14:14:20Z <p>Does anyone know of a tool that can create a MS-Access database from a configuration file? It needs to be able to do things outside of the SQL spec such as be able to create macros, modules, and forms, and make changes to the "Lookup" tab that's available in Design View.</p> <p>And if possible, I need to be able to export an existing database to the configuration file format.</p> <p>The reason I need this is because we currently check a .mdb file with almost 200 tables into CVS, so it gets checked in quite often. And since it's a binary file, there's no easy way to diff two different revisions of the file.</p> <p>I suppose I could do it all programmatically using vbscript, but surely there must be an easier way.</p> http://stackoverflow.com/questions/1478547/blank-forms-displays-in-ms-access 0 Blank forms displays in MS Access. clifton anderson 2009-09-25T17:17:39Z 2009-12-16T14:06:34Z <p>I just converted my <a href="http://en.wikipedia.org/wiki/Microsoft%5FAccess" rel="nofollow">MS Access</a> database from 2000 to 2003 format and then created an executable (.mde) file. The executable works fine, but on one form the screen is blank in form view, even though all of the contols show up in design view. What am I doing wrong?</p>