From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: f64f7,13d78d83336f164c X-Google-Attributes: gidf64f7,public X-Google-Thread: 10b7d3,13d78d83336f164c X-Google-Attributes: gid10b7d3,public X-Google-Thread: f7600,13d78d83336f164c X-Google-Attributes: gidf7600,public X-Google-Thread: 103376,13d78d83336f164c X-Google-Attributes: gid103376,public X-Google-Thread: ff0ac,13d78d83336f164c X-Google-Attributes: gidff0ac,public X-Google-ArrivalTime: 2004-02-10 23:21:54 PST From: "Keld Laursen [eMVP]" References: <3a6166b7.0402101717.7417bd1f@posting.google.com> Subject: Re: How can access desktop access database from my unitech pt930(s) Date: Wed, 11 Feb 2004 08:18:57 +0100 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Message-ID: Newsgroups: comp.databases.ms-access,comp.lang.ada,comp.database.ms-access,microsoft.public.windowsce.embedded.vb,comp.os.ms-windows.ce NNTP-Posting-Host: 193.162.201.162 Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!newshub.sdsu.edu!msrn-out!msrtrans!TK2MSFTNGP08.phx.gbl!TK2MSFTNGP10.phx.gbl Xref: archiver1.google.com comp.databases.ms-access:18603 comp.lang.ada:5419 comp.database.ms-access:7008 microsoft.public.windowsce.embedded.vb:1061 comp.os.ms-windows.ce:7090 Date: 2004-02-11T08:18:57+01:00 List-Id: "Ambassador" wrote in message news:3a6166b7.0402101717.7417bd1f@posting.google.com... > How can I access server mdb file database by using embedded vb from > my handle device. I need a sample code. Thank you > My device is PT930 and pt930S. You cannot do that! What you CAN do is to write some program on the "server" that copies the file to the device using the DEVICETODESKTOP function. This will convert the file into something that is useable by the device (a .cdb file). The net should have plenty of examples on using DESKTOPTODEVICE and its cousin DEVICETODESKTOP form more or less any programming language. If you really really really want to access the mdb file, you will most probably have to roll some kind of server program for your "server", and access that using TCP/IP or some such. You will have to roll your own protocol for sending queries and datasets, or try and find something to adopt. In either case, the task isn't trivial. /Keld Laursen