PC Review


Reply
Thread Tools Rate Thread

access 2007 et win 7, erreur d'affichage des champs calculés.

 
 
Alain Bourgeois
Guest
Posts: n/a
 
      18th Sep 2010
Bonjour,

J'ai un formulaire avec un champs calculé, c'est à dire dont la propriété
controlSource vaut:
=DCount("[Scéance prestée]";"ReqCountSéanceD").

Sous windows 7 il faut appuyer sur F9 pour forcer le calcul et voir la
valeur s'afficher correctement, sinon aucune valeur n'est affichée.
Sous windows xp et vista, pas de souci. Les versions antérieures d'access
sous win 7 / vista ne posent aucun problème non plus à ma connaissance.

Ce problème s'est produit avec access 2007 et windows vista et a été corrigé
dans un service pack de windows vista.
Etonnant que access n'aie pas été testé sous windows 7, à se demander si
c'est écrit par la même société.

Je présume qu'à par attendre un patch on ne peut rien faire?
On ne peut pas échanger access 2007 contre un access 2003?


Alain Bourgeois


 
Reply With Quote
 
 
 
 
James A. Fortune
Guest
Posts: n/a
 
      20th Sep 2010
On Sep 18, 11:41*am, "Alain Bourgeois" <brolspa...@skynet.be> wrote:
> Bonjour,
>
> J'ai un formulaire avec un champs calculé, c'est à dire dont la propriété
> controlSource vaut:
> * * =DCount("[Scéance prestée]";"ReqCountSéanceD").
>
> Sous windows 7 il faut appuyer sur F9 pour forcer le calcul et voir la
> valeur s'afficher correctement, sinon aucune valeur n'est affichée.
> Sous windows xp et vista, pas de souci. Les versions antérieures d'access
> sous win 7 / vista ne posent aucun problème non plus à ma connaissance.
>
> Ce problème s'est produit avec access 2007 et windows vista et a été corrigé
> dans un service pack de windows vista.
> Etonnant que access n'aie pas été testé sous windows 7, à se demander si
> c'est écrit par la même société.
>
> Je présume qu'à par attendre un patch on ne peut rien faire?
> On ne peut pas échanger access 2007 contre un access 2003?
>
> Alain Bourgeois


Question translated from http://translate.google.com and modified:

I have a form with a calculated field with a ControlSource of:

DCount = ("[Meeting worked]"; "ReqCountMeetingD").

Under Windows 7, I must press F9 to force the calculation and see the
value display properly, otherwise no value is displayed. Under the
Windows XP and Vista operating systems, no worries. Earlier versions
of Access under Win 7 / Vista have no problem either to my knowledge.

This problem occurred with Access 2007 and Windows Vista and has been
corrected in a service pack for Windows Vista. Surprisingly Access
has not been tested on Windows 7, even though both were written by the
same company.

Is my assumption true that I must wait for a patch before anything can
be done? Can I access Exchange 2007 with an access 2003 database?



Answer translated using http://translate.google.com:

Essayez une contourner. Utilisez le code suivant dans un module:

Public Function ReturnSQLResult(strSQL As String) As Variant
Dim MyDB As Database
Dim MyRS As Recordset

Set MyDB = CurrentDb
Set MyRS = MyDB.OpenRecordset(strSQL, dbOpenSnapshot)
If MyRS.RecordCount <> 0 Then
MyRS.MoveFirst
ReturnSQLResult = MyRS(0)
Else
ReturnSQLResult = Null
End If
MyRS.Close
Set MyRS = Nothing
Set MyDB = Nothing
End Function

Alors, pour la ControlSource:

=ReturnSQLResult("SELECT [Scéance prestée] FROM ReqCountSéanceD;")

Si cela ne fonctionne pas, essayez le SQL par lui-même dans une
requête.

Bonne Nuit,

James A. Fortune
(E-Mail Removed)
 
Reply With Quote
 
James A. Fortune
Guest
Posts: n/a
 
      20th Sep 2010
On Sep 19, 9:29*pm, "James A. Fortune" <MPAPos...@FortuneJames.com>
wrote:

> > On ne peut pas échanger access 2007 contre un access 2003?


> *Can I access Exchange 2007 with an access 2003 database?


LOL. I see he meant "Can I replace Access 2007 with Access 2003?"

James A. Fortune
(E-Mail Removed)
 
Reply With Quote
 
rumkus@hotmail.com
Guest
Posts: n/a
 
      20th Sep 2010
> Question translated from http://translate.google

Thanks Google a billion.
Now God can send her orders in any language - except in vba.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: access 2007 et win 7, erreur d'affichage des champs calculés. James A. Fortune Microsoft Access 0 20th Sep 2010 03:46 PM
Pourquoi, après une erreur d'adresse mal écrite, la fenêtre s'ouvre sans cesse Ã* la lecture des mails en signalant "erreur"? Raymond BEY Windows Vista Mail 2 8th Feb 2010 02:09 AM
erreur de socket : 011001, numerot d'erreur : 0x800CCC0D philippe goutarel Windows Vista Mail 1 10th Mar 2008 10:01 PM
2 question for Excel champs ;) hummiz Microsoft Excel Discussion 6 2nd Jun 2005 05:56 AM
Probleme de lecture de champs BDD sdffsdf Microsoft ASP .NET 2 7th Apr 2005 01:00 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:50 PM.