Context Sensitive Help

  • Thread starter Thread starter Racer57
  • Start date Start date
R

Racer57

Two Part question:

I seem to remember in an older version of Access that when building an
expression in the expression builder, you could highlight a function, such
as Time(), hit F1, and Help on that function would pop up. That does not
work in Access 2002. I also cannot search in Help for info on any functions.
How can I find out how to use a function, with examples.

My specific question has to do with the syntax of the Time() function. I
want to test for time greater than 10:00. Is Time() > "10:00" the correct
syntax?

--
Paul Mazzola
General Manager-High Speed Data Services
Time Warner Cable
Eastern Carolina Division
Wilmington NC
Ph: 910-772-5793
Fax: 910-772-5796
 
Paul,

Here's something to get you started. How about this :-

If Format(Time, "Short Time") > Format("10:00", "Short Time") Then.......
...
...
...
End If

Times were in 24 hour format on my PC.

Mark. mcse
 
What about the Context Sensitive help, or any method to get info of a
function such as Time()?

--
Paul Mazzola
General Manager-High Speed Data Services
Time Warner Cable
Eastern Carolina Division
Wilmington NC
Ph: 910-772-5793
Fax: 910-772-5796
 
You have to be in the VBA development environment/editor to get the context
sensitive VBA help. Go to design mode on any form/report, click "view
code", then press F1.
-Ed
 
Back
Top