From: Tym on 24 May 2006 17:15 On Wed, 24 May 2006 11:19:00 -0500, Paul Clement <UseAdddressAtEndofMessage(a)swspectrum.com> wrote: >Did you actually try the following: > >http://support.microsoft.com/kb/195353/EN-US/ ~cough~ Ahem.. erm.. sorry - missed that one. Been hell on today - power off for most of the day.. trying to do things in a hurry while I could! - Have downloaded it and will try it in the next day or two > >? It also says I need the forms in text not binary... > >Weren't you able to save them as text? Maybe PEBKAC. My decompiler (DoDi) fires up VB4 but there's a problem becuase of the OCX/VBX files. Doesn't save them as text - saves as binary - once I get round the VBX problem I'm quite sure it will resolve. I've setting up a 16bit machine to put this all on so there's no 32bit contamination Is it still possible to get a copt of vb3? I'll try my MSDN subscription!! Tym ~There's no place like 127.0.0.1~
From: Paul Clement on 25 May 2006 08:18 On Wed, 24 May 2006 22:15:46 +0100, Tym <no_spam(a)ictis.net> wrote: ? ? I've setting up a 16bit machine to put this all on so there's no 32bit ? contamination ? ? ? Is it still possible to get a copt of vb3? I'll try my MSDN ? subscription!! Yes, the MSDN goes back to version 2.0. Paul ~~~~ Microsoft MVP (Visual Basic)
From: Tym on 25 May 2006 10:40 On Thu, 25 May 2006 07:18:53 -0500, Paul Clement <UseAdddressAtEndofMessage(a)swspectrum.com> wrote: >? Is it still possible to get a copt of vb3? I'll try my MSDN >? subscription!! > >Yes, the MSDN goes back to version 2.0. That worked wonders and I can now get into the source code generated by Dodi's decompiler Thanks for your pointers! I have a data question that google can't answer... 3043 Could not create VBA expression service. System (DAO) What on earth is a VBA expression service! This occurs when executing the line Set gv1326 = OpenDatabase(gv0B1E + "xyz.mdb") It uses DAO 2.5.... I can find the translation of a portugese thus "This must before be defined the DataSource, voce anger where be indicated where its data base, for then defining the RecordSource" Tym ~There's no place like 127.0.0.1~
From: Paul Clement on 25 May 2006 12:52 On Thu, 25 May 2006 15:40:52 +0100, Tym <no_spam(a)ictis.net> wrote: ? On Thu, 25 May 2006 07:18:53 -0500, Paul Clement ? <UseAdddressAtEndofMessage(a)swspectrum.com> wrote: ? ? >? Is it still possible to get a copt of vb3? I'll try my MSDN ? >? subscription!! ? > ? >Yes, the MSDN goes back to version 2.0. ? ? ? That worked wonders and I can now get into the source code generated ? by Dodi's decompiler ? ? Thanks for your pointers! ? ? I have a data question that google can't answer... ? ? 3043 Could not create VBA expression service. System (DAO) ? ? What on earth is a VBA expression service! ? ? This occurs when executing the line ? ? Set gv1326 = OpenDatabase(gv0B1E + "xyz.mdb") ? ? It uses DAO 2.5.... ? Assuming gv0B1E is a string variable try changing the arithmetic operator to a string concatenation operator: Set gv1326 = OpenDatabase(gv0B1E & "xyz.mdb") I'm also assuming that gv1326 is defined as a DAO.Database object. Paul ~~~~ Microsoft MVP (Visual Basic)
From: Rick Rothstein on 25 May 2006 13:42
> ? What on earth is a VBA expression service! Searching Google using "vba expression service" yeilded this... http://office.microsoft.com/en-us/assistance/HP010322311033.aspx and using "visual basic" along with "expression service" yielded these... http://www.google.com/search?sourceid=navclient&ie=UTF-8&rls=GGLG,GGLG:2006-12,GGLG:en&q=%22visual+basic%22+%22expression+service%22 Rick |