David W. Fenton
|
Registered User
|
|
|
36m |
comment |
database synchronization - MS Access JRO is useless as it fails to support anything that DAO can't do except for initiating an indirect synch in code. The TSI Synchronizer gives far more control, though it's an unsupported non-MS product. But it was created by the world's foremost expert on Jet Replication, who is, in fact, now a Microsoft employee. |
|
37m |
comment |
database synchronization - MS Access -1 for a TERRIBLE answer that betrays complete ignorance of Jet Replication. If I could give this answer -10 I would. First off, Jet Replication is NOT flakey. Secondly, Worrying about Autonumber values shows that you're mis-using Autonumbers -- they are meaningless and it shouldn't matter if they are negative numbers or extremely large or small. Synchronization can of course be automated. See my detailed answer below. |
|
40m |
answered | Building SQL strings in Access/VBA |
|
18h |
comment |
SendObject in MSAccess giving errors I don't look at anything on SO except Access-related questions, as that's how I make my living, i.e., programming in Access. Why should I care that Office questions are lower-rated than questions about topics I have zero interest in reading about? I also don't see how rating the question itself does anything in regard to choosing answers (which I vote up and down pretty zealously). |
|
18h |
comment |
Checking if OLEDB returned a result from SELECT statement (VB.NET) Are there ADO.NET drivers for "Access"? |
|
18h |
comment |
Access 2007 Wizards won’t run I just encountered such a message in A2003 at a client's yesterday. I figured I needed to install the advanced wizards, but when I ran the Office installer from Control Panel | Add/Remove Programs, it showed they were all installed. I aborted the install, and then when I opened Access again, it worked. You might try a REPAIR and see if that fixes it. |
|
18h |
comment |
Export multiple queries to different tables The question is foggy on where this is being run from, but Access/Jet/ACE can't run multiple SQL statements in a batch -- it can only do one at a time. Given the nature of Access/Jet/ACE, i.e., having no server-side process for serializing updates, it should stand to reason that you can't do that (or, at least, you couldn't do it safely and reliably and not be afraid of corrupting your data). |
|
18h |
comment |
Minimum permissions required for an updatable query (Access Project) I've never used ADPs, but one of the many complaints about them that I recall was that in certain circumstances, ADO bypasses your views (and your security settings therein) and tries to do update the underlying tables directly. I don't think the exact circumstances were the same as the ones you describe, but it might be worth looking into. |
|
18h |
comment |
connect Access via c# Do you have access to this other server? If you type "\\150.248.248.38\d$\TestApp\" into START | RUN and click OK, does it open an Explorer window showing the destination folder? If so, can you right click and create a new text file? If not, you have a permissions problem. I'd definitely recommend against using an administrative share for access -- non-admin users are never going to have access to that, only administrators. |
|
1d |
comment |
Is Jet database engine included in Windows xp, vista and Windows7? They did? I missed that one. DAO is in the OS, nonetheless. |
|
1d |
comment |
Linking SubReports Without LinkChild/LinkMaster Have you tried changing the recordsource in the OnOpen event of the child subreport? You'd have to have either controls in the parent form with the values you're filtering on or global variables to pull the values from, but this should work. |
|
1d |
answered | C#/Access Interop DoCmd value combobox |
|
1d |
comment |
C#/Access Interop DoCmd value combobox I think Jeffrey meant "in a server environment". |
|
1d |
answered | Access Database Pass Through Query? |
|
1d |
comment |
Access Database Pass Through Query? While this is OK for a one-time operation, if you're regularly importing the data, you really should do an append to an existing table, even if you're clearing all the data between imports. Also, if you're clearing the table between imports, the table really shouldn't be in your front end or back end, but in a separate temp mdb file so that the bloat it produces won't affect important components of your Access application. |
|
1d |
comment |
Microsoft Access 2003 Shared DBF, file is already in use To follow on Tony's comment: you need to have appropriate permissions on both the SHARE and on the underlying folder that the share is making available across the LAN. |
|
1d |
comment |
SendObject in MSAccess giving errors I never bother to look at the accept rate because I'm answering to make sure the question gets a good answer, not just to raise my reputation. |
|
1d |
comment |
Login Screen in Access with forms, macros and queriesms- In re: no branching in macros: That changes in A2010, and quite powerfully so. |
|
1d |
comment |
Login Screen in Access with forms, macros and queriesms- By the way, this code will break if you properly structure your database and split it into back end (tables only) and front end (forms/reports/etc.), because you can't use SEEK on linked tables. Really, Seek is hardly ever helpful, particularly for looking up a single record. |
|
1d |
comment |
Login Screen in Access with forms, macros and queriesms- Why DBEngine(0)(0) instead of CurrentDB? |
|
Nov 23 |
comment |
Is Jet database engine included in Windows xp, vista and Windows7? Jet has not been a part of MDAC for over 5 years. Given that Jet ships with the OS, there's no reason it should be included. The MDAC does include different interfaces that can be used to access Jet data -- it just doesn't include the Jet database engine itself. |
|
Nov 23 |
comment |
Is it possible to disable ctrl + a in Access 2007? How is this not a programming question? Sure, you might use a Macro for this, but Macros are a form of programming. I'd do it in code, myself (instead of in an AutoKeys macro that just disables it), as I'd likely want to disable it only in certain circumstances. |
|
Nov 23 |
comment |
How to hide bottom-navigation-bar in Acces 2007. Every form has that property, but if it's showing up on table datasheets, the user might want to hide it there, too. In fact, a datasheet is actually an object of type FORM, so it does actually have a NavigationButtons property. But there is no Datasheets collection and you don't get access to these properties through the TableDefs collection. Instead, you have to set Screen.ActiveDatasheet.NavigationButtons = False for each datasheet that you open. If you wrote a wrapper around DoCmd.OpenTable you could do that. |
|
Nov 23 |
comment |
Jet Engine’s query-optimization is based on statistics, but how are they refreshed with linked tables? Refreshing existing links does not update all the metadata stored in the linked table. Only deleting and recreating the link insures up-to-date metadata. |
|
Nov 23 |
comment |
Tracking SQL Calls From MS Access to MySQL For one, MySQL is not throttled on number of connections, whereas SQL Server Express is. Nor is the size of the MySQL data store limited. And it's not from Microsoft so using it is helping keep variety in the software ecosystem. |
|
Nov 23 |
comment |
Access and classic ASP error 80004005 System resource exceeded. Jet/ACE is not unacceptable for all web back ends, but it's mostly just small-scale read-only sites that it's appropriate for. Accessing it via ADO is better than ODBC or DAO because ADO is thread-safe (even with Jet/ACE), so that could get you a little bit more robustness. |
|
Nov 20 |
comment |
How to transfer my data from MS ACCESS DB to a new SQL SERVER DB? A real developer will use a wizard if it is faster than writing the code from scratch and the code produced does not need to be substantially altered. Same with SQL. The find unmatched wizard is a lot easier than writing the same SQL by hand or using the QBE. All that said, I don't use many wizards. |
|
Nov 20 |
comment |
Force to support inheritance VBA is a superset of VB. Is VB not a programming language? |
|
Nov 20 |
comment |
Hide a column programmatically in MS-Access Hardly any of the questions are good questions. Indeed, most of them are questions that I've a bazillion times in various Access forums over the years. By not voting I'm saying "this is not a bad question." |
|
Nov 20 |
comment |
How to transfer my data from MS ACCESS DB to a new SQL SERVER DB? It's unquestionably a developer's question. |
|
Nov 20 |
comment |
Word document printed on MS Access report using OLE object I still don't see why they need to be stored in the database, as opposed to somewhere in the file system. Perhaps there are some requirements you're failing to mention that would make it sensible. |
|
Nov 20 |
comment |
How do I debug event handlers in Microsoft Access 2000? Again, "OpenForm()" is not a standard Access function/command. DoCmd.OpenForm exists, but it's not a function. And it can't be called as "?DoCmd.OpenForm("FormName")". |
|
Nov 20 |
comment |
Hide a column programmatically in MS-Access I didn't know I was supposed to vote on the questions. I give credit for answers by voting on those. I can't see the point of voting on a question, up or down. |
|
Nov 19 |
accepted | Hide a column programmatically in MS-Access |
|
Nov 18 |
revised |
SQL Update woes in MS Access - Operation must use an updateable query Changed "Access Database Engine" to "Jet/ACE" because the comment applies to historic versions of Jet before the term "Access Database Engine" existed in MS's documentation. |
|
Nov 17 |
answered | Upgrading and Security Implementation (Access 2000-2003 and up) |
|
Nov 17 |
revised |
Access Services and SharePoint 2010 - Need Info Fixed 2 little typos |
|
Nov 17 |
revised |
Is there a difference in VBA versions between office 2003 and 2007? Replaced "without impunity" with "with impunity", which is what the OP meant to write |
|
Nov 17 |
awarded | ● Organizer |
|
Nov 17 |
revised |
MS Access Moving records into fields Clarified what the sample data examples were |
|
Nov 17 |
answered | Why do the records get deleted in an access database when I open the file in access? |
|
Nov 17 |
answered | defining delimiters in vba for access |
|
Nov 17 |
revised |
Disable warning: You copied a large amount of data onto the clipboard Added info about using Screen.ActiveDatasheet |
|
Nov 17 |
revised |
SQL Update woes in MS Access - Operation must use an updateable query Formatted SQL for readability |
|
Nov 17 |
revised |
How to Bifurcate Activex controls present in access DB Form using vb.net? Formatted code for readability |
|
Nov 17 |
answered | How can I add a button to an Access report to export it to Excel / PDF? |
|
Nov 17 |
answered | how to extract characters from a Korean string in VBA |
|
Nov 16 |
accepted | Error on Save a changed row if the change was in a field of type ‘Memo’ |
|
Nov 16 |
accepted | access form to run query and display results |
|
Nov 15 |
revised |
Hide a column programmatically in MS-Access Added in property sheet advice |
