[AccessD] Known Bugs List in A2K7/10

David McAfee davidmcafee at gmail.com
Tue Oct 18 13:28:24 CDT 2011


Allen Browne site has a list (Sorry I don't have the link at the moment)


I think A2010 SP1 (or was it Win7 Sp1, or both) had some weird issues.

I have had some things that have been working for years suddenly break.

I have also had some weird things happen that I haven't pin pointed yet,
such as:

A form launching a report in preview mode
Pressing Print, prints the form behind the report, not the report itself.

I thought the user was doing something wrong, but it has happened again to
another user.

I though the from / report were corrupt, so I wiped the FE from their
computer and reinstalled it.

Same issue.

Reboot the box. Same issue.

Came back to my desk to check a few things and go back and it was working
again.

weird.


I've had other issues where I had to put CDATE() around a date field when
comparing something such as:

If Me.txtIncentiveStartDate = CDate(Me.lstHist.Column(3)) Then

I had to change it to :

If CDate(Me.txtIncentiveStartDate) = CDate(Me.lstHist.Column(3)) Then


I've also had another issue

where I had to change code that has worked for several years:

        If (SysCmd(acSysCmdAccessVer) = 14) Then
            Me.RecordSource = "EXEC dbo.stpItemDetHist " &
Me.InputParameters
        Else
            Me.RecordSourceQualifier = "dbo"
            Me.RecordSource = "stpItemDetHist"
        End If


On Tue, Oct 18, 2011 at 10:45 AM, Arthur Fuller <fuller.artful at gmail.com>wrote:

> Does anyone know of a known bug list for these two products? I am running
> into some very strange issues, and if they are known bugs then I can stop
> fighting them and just acknowledge that it's time to move on to a more
> solid
> platform. Weird screen behaviour, saved changes turn out not to be saved,
> etc. Very frustrating. Maybe it's time for a c# course.
>
> A.
> --
> AccessD mailing list
> AccessD at databaseadvisors.com
> http://databaseadvisors.com/mailman/listinfo/accessd
> Website: http://www.databaseadvisors.com
>



More information about the AccessD mailing list