J
Jacob
How do I Capitalize the first letter in a text box???
(Access 2000)
(Access 2000)
RobFMS said:If its just the first letter...
Me.Text1 = UCase ( Left (Me.Text1,1) )
HTH
--
Rob
FMS Professional Solutions Group
http://www.fmsinc.com/consulting
Software Tools for .NET, SQL Server, Visual Basic & Access
http://www.fmsinc.com
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Wayne Morgan said:I don't know of a way to display PDF files in Access. It would probably
require an ActiveX add-in. I don't know if there is one or if the one used
for Internet Explorer will work.
As far as creating a list of the files goes, you would use the DIR command
to parse a directory for the files. You could take each file found and add
it to a list box, a table, or a tree control. Parsing sub directories as
well requires a recursive routine. There are examples of doing in this in
books such as "VBA Developers Handbook" by Ken Getz and Mike Gilbert.