Connecting Tech Pros Worldwide Help | Site Map

Access 2000 vs. Access 2003

deko
Guest
 
Posts: n/a
#1: Nov 13 '05
Is it possible to develop an Access app in Access 2003 that will run on
Access 2000? Is it just a matter of selecting "Access 2000" from the
Default File Format drop down list on the Advanced Tab of the Options
dialog?

I need to do some quick work for a client that runs Access 2000 and I've
only been doing working on 2002/2003 projects since installing Access 2003
on my development workstation. Do I need to install Access 2000 on my
development workstation? I assume 2000 and 2003 will co-exist without any
issues.

Thanks in advance.



Rick Brandt
Guest
 
Posts: n/a
#2: Nov 13 '05

re: Access 2000 vs. Access 2003


deko wrote:[color=blue]
> Is it possible to develop an Access app in Access 2003 that will run
> on Access 2000? Is it just a matter of selecting "Access 2000" from
> the Default File Format drop down list on the Advanced Tab of the
> Options dialog?
>
> I need to do some quick work for a client that runs Access 2000 and
> I've only been doing working on 2002/2003 projects since installing
> Access 2003 on my development workstation. Do I need to install
> Access 2000 on my development workstation? I assume 2000 and 2003
> will co-exist without any issues.
>
> Thanks in advance.[/color]

In addition to the file format you also have to avoid using any features that
wered added in 2002 and 2003 that don't exist in 2000. Other than that you
should be fine.

Oh...and you won't be able to give them an MDE since 2003 can only make an MDE
in the newer file format.

--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com


deko
Guest
 
Posts: n/a
#3: Nov 13 '05

re: Access 2000 vs. Access 2003


> In addition to the file format you also have to avoid using any features
that[color=blue]
> wered added in 2002 and 2003 that don't exist in 2000. Other than that[/color]
you[color=blue]
> should be fine.
>
> Oh...and you won't be able to give them an MDE since 2003 can only make an[/color]
MDE[color=blue]
> in the newer file format.[/color]

Thanks.

I immediately ran into a problem with the Common Dialog with Access 2000...
will repost...


Rick Brandt
Guest
 
Posts: n/a
#4: Nov 13 '05

re: Access 2000 vs. Access 2003


deko wrote:[color=blue][color=green]
>> In addition to the file format you also have to avoid using any
>> features that wered added in 2002 and 2003 that don't exist in 2000.
>> Other than that you should be fine.
>>
>> Oh...and you won't be able to give them an MDE since 2003 can only
>> make an MDE in the newer file format.[/color]
>
> Thanks.
>
> I immediately ran into a problem with the Common Dialog with Access
> 2000... will repost...[/color]

Never use it (or any other ActiveX controls). More likely a difference
between two PCs than having anything to do with the Access version.

--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com


deko
Guest
 
Posts: n/a
#5: Nov 13 '05

re: Access 2000 vs. Access 2003


> > I immediately ran into a problem with the Common Dialog with Access[color=blue][color=green]
> > 2000... will repost...[/color]
>
> Never use it (or any other ActiveX controls). More likely a difference
> between two PCs than having anything to do with the Access version.[/color]

I think that's the issue - I was using ActiveX to get the dialog with Access
2003, now I need another way. I found some code on Microsoft's site to get
a file picker, but still need code for a folder picker. If you have code
for a folder picker, that would be a big help.

Here's what I've got for the file picker dialog:

Private Declare Function GetOpenFileName Lib "comdlg32.dll" Alias _
"GetOpenFileNameA" (pOpenfilename As OPENFILENAME) As Long

Private Type OPENFILENAME
lStructSize As Long
hwndOwner As Long
hInstance As Long
lpstrFilter As String
lpstrCustomFilter As String
nMaxCustFilter As Long
nFilterIndex As Long
lpstrFile As String
nMaxFile As Long
lpstrFileTitle As String
nMaxFileTitle As Long
lpstrInitialDir As String
lpstrTitle As String
flags As Long
nFileOffset As Integer
nFileExtension As Integer
lpstrDefExt As String
lCustData As Long
lpfnHook As Long
lpTemplateName As String
End Type

Private Function LaunchCD(strForm As Form, strSelect As String) As String
Dim OpenFile As OPENFILENAME
Dim lReturn As Long
Dim sFilter As String
OpenFile.lStructSize = Len(OpenFile)
OpenFile.hwndOwner = strForm.hWnd
sFilter = "Excel Workbooks (*.xls)" & Chr(0) & "*.xls" & Chr(0)
OpenFile.lpstrFilter = sFilter
OpenFile.nFilterIndex = 1
OpenFile.lpstrFile = String(257, 0)
OpenFile.nMaxFile = Len(OpenFile.lpstrFile) - 1
OpenFile.lpstrFileTitle = OpenFile.lpstrFile
OpenFile.nMaxFileTitle = OpenFile.nMaxFile
OpenFile.lpstrInitialDir = "C:\"
OpenFile.lpstrTitle = strSelect
OpenFile.flags = 0
lReturn = GetOpenFileName(OpenFile)
If lReturn <> 0 Then
LaunchCD = Trim(Left(OpenFile.lpstrFile, InStr(1,
OpenFile.lpstrFile, vbNullChar) - 1))
End If
End Function


DFS
Guest
 
Posts: n/a
#6: Nov 13 '05

re: Access 2000 vs. Access 2003


deko wrote:[color=blue][color=green][color=darkred]
>>> I immediately ran into a problem with the Common Dialog with Access
>>> 2000... will repost...[/color]
>>
>> Never use it (or any other ActiveX controls). More likely a
>> difference between two PCs than having anything to do with the
>> Access version.[/color]
>
> I think that's the issue - I was using ActiveX to get the dialog with
> Access 2003, now I need another way. I found some code on
> Microsoft's site to get a file picker, but still need code for a
> folder picker. If you have code for a folder picker, that would be a
> big help.[/color]

Try this:

Public Function BrowseFolder(szDialogTitle As String) As String

Dim X As Long, bi As BROWSEINFO, dwIList As Long
Dim szPath As String, wPos As Integer

With bi
.hOwner = hWndAccessApp
.lpszTitle = szDialogTitle
.ulFlags = BIF_RETURNONLYFSDIRS
End With

dwIList = SHBrowseForFolder(bi)
szPath = Space$(512)
X = SHGetPathFromIDList(ByVal dwIList, ByVal szPath)

If X Then
wPos = InStr(szPath, Chr(0))
BrowseFolder = Left$(szPath, wPos - 1)
Else
BrowseFolder = vbNullString
End If

End Function


Call it like this:

Dim strFolderName As String
strFolderName = BrowseFolder("whatever message you want")




[color=blue]
> Here's what I've got for the file picker dialog:
>
> Private Declare Function GetOpenFileName Lib "comdlg32.dll" Alias _
> "GetOpenFileNameA" (pOpenfilename As OPENFILENAME) As Long
>
> Private Type OPENFILENAME
> lStructSize As Long
> hwndOwner As Long
> hInstance As Long
> lpstrFilter As String
> lpstrCustomFilter As String
> nMaxCustFilter As Long
> nFilterIndex As Long
> lpstrFile As String
> nMaxFile As Long
> lpstrFileTitle As String
> nMaxFileTitle As Long
> lpstrInitialDir As String
> lpstrTitle As String
> flags As Long
> nFileOffset As Integer
> nFileExtension As Integer
> lpstrDefExt As String
> lCustData As Long
> lpfnHook As Long
> lpTemplateName As String
> End Type
>
> Private Function LaunchCD(strForm As Form, strSelect As String) As
> String Dim OpenFile As OPENFILENAME
> Dim lReturn As Long
> Dim sFilter As String
> OpenFile.lStructSize = Len(OpenFile)
> OpenFile.hwndOwner = strForm.hWnd
> sFilter = "Excel Workbooks (*.xls)" & Chr(0) & "*.xls" & Chr(0)
> OpenFile.lpstrFilter = sFilter
> OpenFile.nFilterIndex = 1
> OpenFile.lpstrFile = String(257, 0)
> OpenFile.nMaxFile = Len(OpenFile.lpstrFile) - 1
> OpenFile.lpstrFileTitle = OpenFile.lpstrFile
> OpenFile.nMaxFileTitle = OpenFile.nMaxFile
> OpenFile.lpstrInitialDir = "C:\"
> OpenFile.lpstrTitle = strSelect
> OpenFile.flags = 0
> lReturn = GetOpenFileName(OpenFile)
> If lReturn <> 0 Then
> LaunchCD = Trim(Left(OpenFile.lpstrFile, InStr(1,
> OpenFile.lpstrFile, vbNullChar) - 1))
> End If
> End Function[/color]


Norman Scheinin
Guest
 
Posts: n/a
#7: Nov 13 '05

re: Access 2000 vs. Access 2003


"bi As BROWSEINFO" produced a compile error. What library does this
reference?

DFS wrote:[color=blue]
>
> deko wrote:[color=green][color=darkred]
> >>> I immediately ran into a problem with the Common Dialog with Access
> >>> 2000... will repost...
> >>
> >> Never use it (or any other ActiveX controls). More likely a
> >> difference between two PCs than having anything to do with the
> >> Access version.[/color]
> >
> > I think that's the issue - I was using ActiveX to get the dialog with
> > Access 2003, now I need another way. I found some code on
> > Microsoft's site to get a file picker, but still need code for a
> > folder picker. If you have code for a folder picker, that would be a
> > big help.[/color]
>
> Try this:
>
> Public Function BrowseFolder(szDialogTitle As String) As String
>
> Dim X As Long, bi As BROWSEINFO, dwIList As Long
> Dim szPath As String, wPos As Integer
>
> With bi
> .hOwner = hWndAccessApp
> .lpszTitle = szDialogTitle
> .ulFlags = BIF_RETURNONLYFSDIRS
> End With
>
> dwIList = SHBrowseForFolder(bi)
> szPath = Space$(512)
> X = SHGetPathFromIDList(ByVal dwIList, ByVal szPath)
>
> If X Then
> wPos = InStr(szPath, Chr(0))
> BrowseFolder = Left$(szPath, wPos - 1)
> Else
> BrowseFolder = vbNullString
> End If
>
> End Function
>
> Call it like this:
>
> Dim strFolderName As String
> strFolderName = BrowseFolder("whatever message you want")
>[color=green]
> > Here's what I've got for the file picker dialog:
> >
> > Private Declare Function GetOpenFileName Lib "comdlg32.dll" Alias _
> > "GetOpenFileNameA" (pOpenfilename As OPENFILENAME) As Long
> >
> > Private Type OPENFILENAME
> > lStructSize As Long
> > hwndOwner As Long
> > hInstance As Long
> > lpstrFilter As String
> > lpstrCustomFilter As String
> > nMaxCustFilter As Long
> > nFilterIndex As Long
> > lpstrFile As String
> > nMaxFile As Long
> > lpstrFileTitle As String
> > nMaxFileTitle As Long
> > lpstrInitialDir As String
> > lpstrTitle As String
> > flags As Long
> > nFileOffset As Integer
> > nFileExtension As Integer
> > lpstrDefExt As String
> > lCustData As Long
> > lpfnHook As Long
> > lpTemplateName As String
> > End Type
> >
> > Private Function LaunchCD(strForm As Form, strSelect As String) As
> > String Dim OpenFile As OPENFILENAME
> > Dim lReturn As Long
> > Dim sFilter As String
> > OpenFile.lStructSize = Len(OpenFile)
> > OpenFile.hwndOwner = strForm.hWnd
> > sFilter = "Excel Workbooks (*.xls)" & Chr(0) & "*.xls" & Chr(0)
> > OpenFile.lpstrFilter = sFilter
> > OpenFile.nFilterIndex = 1
> > OpenFile.lpstrFile = String(257, 0)
> > OpenFile.nMaxFile = Len(OpenFile.lpstrFile) - 1
> > OpenFile.lpstrFileTitle = OpenFile.lpstrFile
> > OpenFile.nMaxFileTitle = OpenFile.nMaxFile
> > OpenFile.lpstrInitialDir = "C:\"
> > OpenFile.lpstrTitle = strSelect
> > OpenFile.flags = 0
> > lReturn = GetOpenFileName(OpenFile)
> > If lReturn <> 0 Then
> > LaunchCD = Trim(Left(OpenFile.lpstrFile, InStr(1,
> > OpenFile.lpstrFile, vbNullChar) - 1))
> > End If
> > End Function[/color][/color]
Douglas J. Steele
Guest
 
Posts: n/a
#8: Nov 13 '05

re: Access 2000 vs. Access 2003


See http://www.mvps.org/access/api/api0002.htm at "The Access Web" for the
complete code.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)



"Norman Scheinin" <norman.b.scheinin@boeing.com> wrote in message
news:422376E4.E1D58EA0@boeing.com...[color=blue]
> "bi As BROWSEINFO" produced a compile error. What library does this
> reference?
>
> DFS wrote:[color=green]
>>
>> deko wrote:[color=darkred]
>> >>> I immediately ran into a problem with the Common Dialog with Access
>> >>> 2000... will repost...
>> >>
>> >> Never use it (or any other ActiveX controls). More likely a
>> >> difference between two PCs than having anything to do with the
>> >> Access version.
>> >
>> > I think that's the issue - I was using ActiveX to get the dialog with
>> > Access 2003, now I need another way. I found some code on
>> > Microsoft's site to get a file picker, but still need code for a
>> > folder picker. If you have code for a folder picker, that would be a
>> > big help.[/color]
>>
>> Try this:
>>
>> Public Function BrowseFolder(szDialogTitle As String) As String
>>
>> Dim X As Long, bi As BROWSEINFO, dwIList As Long
>> Dim szPath As String, wPos As Integer
>>
>> With bi
>> .hOwner = hWndAccessApp
>> .lpszTitle = szDialogTitle
>> .ulFlags = BIF_RETURNONLYFSDIRS
>> End With
>>
>> dwIList = SHBrowseForFolder(bi)
>> szPath = Space$(512)
>> X = SHGetPathFromIDList(ByVal dwIList, ByVal szPath)
>>
>> If X Then
>> wPos = InStr(szPath, Chr(0))
>> BrowseFolder = Left$(szPath, wPos - 1)
>> Else
>> BrowseFolder = vbNullString
>> End If
>>
>> End Function
>>
>> Call it like this:
>>
>> Dim strFolderName As String
>> strFolderName = BrowseFolder("whatever message you want")
>>[color=darkred]
>> > Here's what I've got for the file picker dialog:
>> >
>> > Private Declare Function GetOpenFileName Lib "comdlg32.dll" Alias _
>> > "GetOpenFileNameA" (pOpenfilename As OPENFILENAME) As Long
>> >
>> > Private Type OPENFILENAME
>> > lStructSize As Long
>> > hwndOwner As Long
>> > hInstance As Long
>> > lpstrFilter As String
>> > lpstrCustomFilter As String
>> > nMaxCustFilter As Long
>> > nFilterIndex As Long
>> > lpstrFile As String
>> > nMaxFile As Long
>> > lpstrFileTitle As String
>> > nMaxFileTitle As Long
>> > lpstrInitialDir As String
>> > lpstrTitle As String
>> > flags As Long
>> > nFileOffset As Integer
>> > nFileExtension As Integer
>> > lpstrDefExt As String
>> > lCustData As Long
>> > lpfnHook As Long
>> > lpTemplateName As String
>> > End Type
>> >
>> > Private Function LaunchCD(strForm As Form, strSelect As String) As
>> > String Dim OpenFile As OPENFILENAME
>> > Dim lReturn As Long
>> > Dim sFilter As String
>> > OpenFile.lStructSize = Len(OpenFile)
>> > OpenFile.hwndOwner = strForm.hWnd
>> > sFilter = "Excel Workbooks (*.xls)" & Chr(0) & "*.xls" & Chr(0)
>> > OpenFile.lpstrFilter = sFilter
>> > OpenFile.nFilterIndex = 1
>> > OpenFile.lpstrFile = String(257, 0)
>> > OpenFile.nMaxFile = Len(OpenFile.lpstrFile) - 1
>> > OpenFile.lpstrFileTitle = OpenFile.lpstrFile
>> > OpenFile.nMaxFileTitle = OpenFile.nMaxFile
>> > OpenFile.lpstrInitialDir = "C:\"
>> > OpenFile.lpstrTitle = strSelect
>> > OpenFile.flags = 0
>> > lReturn = GetOpenFileName(OpenFile)
>> > If lReturn <> 0 Then
>> > LaunchCD = Trim(Left(OpenFile.lpstrFile, InStr(1,
>> > OpenFile.lpstrFile, vbNullChar) - 1))
>> > End If
>> > End Function[/color][/color][/color]


deko
Guest
 
Posts: n/a
#9: Nov 13 '05

re: Access 2000 vs. Access 2003


> See http://www.mvps.org/access/api/api0002.htm at "The Access Web" for the[color=blue]
> complete code.[/color]

Fantastic! Thanks very much.


Closed Thread