Similar Threads:
1.Install Sheild / VB 6.0 / Ms Access DB created from Outlook 2003
I have a Vb 6.0 project
The VB 6.0 project with a just a click of the button...exports the
calender rows from OUtlook to a MS Access file ( a DB and a table with
the calender rows are created) and from this table a crystal report is
created.The Db and table don't exist beforehand...they are created..
Right now for test purposes...I have a test machine set-up with just
Outlook 2003 set-up and on that test machine I manually tried to
Export a file from Outlook to a MS Access file ( ie.... it creates a
database and then a table) and I get the error
" Outlook could not start the required translator...The feature (MS
ACCESS) is not currently installed."
Based on this info I provided... will I need to have MS Access
installed on this test machine in order for this project to work or if
I use Install Shield ( to bundle my project) will enough files be
included so that this can work without MS Access being installed on
the test machine.
2.Req code example of selecting MS sql MSDE database stored locally TIA sal
Hello,
I'm trying to find an example in vb.net of how I can have a user select a MS SQL database locally
created using MSDE.
TIA
3.Looking for example VBA code for MS Access DB sync
Need to store Access database data in a central location where multiple users
can update the data. The users must be able to make modifications while off
line (i.e. not connected to the central DB). These changes are to be
uploaded to the central data location when the user has internet access.
Anyone have example VBA code for an application of this type?
4.Handling Concurrency in an Access DB using VB .Net 2003 and Je
Hi Mary I appreciate your response.
Any documentation or sample code you can refer me to?
Thank you.
"Mary Chipman [MSFT]" wrote:
> The best way to handle concurrency is to design for it at the outset
> -- normalize your database so that data is partitioned in such a way
> that no two people are accessing the same row at the same time. If
> that is not an option, then using optimistic concurrency is your best
> bet--pessimistic locking is a great way to kill concurrency. This is
> easier to control in .NET where data is fetched read-only and you only
> allow users to connect through your .NET UI, and not link directly to
> tables. If your data is hopelessly denormalized, then creating
> semaphore columns that are incremented with each data modification and
> checked prior to data modification are also an option. You can then
> "rollback", alert the user, and fetch fresh data. You can also
> implement Jet security as a deterrence to keep people from bypassing
> your UI and accessing the data directly (note that I stress
> "deterrence" here, not actual data security). The one thing you want
> to avoid as much as possible is a situation where people have abnormal
> shutdowns while editing data, which can cause rows to be locked
> indefinitely until someone goes in and deletes the .ldb file. This is
> one of the main reasons why using Jet is discouraged -- it's very
> fragile in multi-user scenarios unless you plan carefully around its
> weak points. You'll have the best results if you approach the problem
> as though you were designing a Web app. If you do that, there's no
> reason Jet can't support as many users as you want to throw at it (up
> to 255, anyway).
>
> --Mary
>
> On Fri, 16 Jun 2006 21:26:02 -0700, Salvador
> < XXXX@XXXXX.COM > wrote:
>
> >Hi.
> >I need to know how to efficiently handle concurrency for an Access 2000 DB
> >in a multiuser environment for an application written in VB .Net 2003. I'm
> >using Jet Oledb 4.0 and Visual Studio .Net 2003 Pro.
> >
> >Please let me know where to find documentaion and examples.
> >
> >Thanks
>
5.Handling Concurrency in an Access DB using VB .Net 2003 and Jet Ol
Hi.
I need to know how to efficiently handle concurrency for an Access 2000 DB
in a multiuser environment for an application written in VB .Net 2003. I'm
using Jet Oledb 4.0 and Visual Studio .Net 2003 Pro.
Please let me know where to find documentaion and examples.
Thanks
6. Accessing a MS Access 2003 DB from .NET CF v2.0 app running on WM2
7. how to create new folder MS OUtlook 2003 using in vb.net
8. Using ".OpenCurrentDatabase" in VB .net to open an MS Access DB