
|
Use your pdf converter to make your pdf files easy! You can now buy software that makes converting pdf to doc possible! Did you know you can even convert pdf to word? Home Page Bloglines 1906 CelebrateStadium 2006 OfficeZealot Scobleizer TechRepublic AskWoody SpyJournal Computers Software Microsoft Windows Excel FrontPage PowerPoint Outlook Word Host your Web site with PureHost! |
![]() Saturday, February 26, 2011 – Permalink – Access TutorialsLearning SitesMicrosoft has created a web site for Office. Part of the site is devoted to tutorials touching on: Word, Access, Publisher , Outlook, PowerPoint, InfoPath , Excel, Visio, OneNote, Expression, and Project. The Access lessons are located here: 2010 Access Tutorials 2003 Access Tutorials 2007 Access Tutorials Here are some other sites: FunctionX Access tutorials TutorialUSA.com Access Tutorials, Basic Bay City Public Schools See all Topics access <Doug Klippert@ 3:59 AM
Comments:
Post a Comment
Wednesday, February 23, 2011 – Permalink – Flag Access ControlsTag PropertyThe TAG property allows you to associate up to 2,084 characters of text with any form, report, section, or control. This is especially helpful when you want to single out a specific subset of controls. For instance, say that you want to hide certain controls on a form when a user clicks a button. You can flag which controls will be hidden by entering the word "Hide" (or any other consistent word) in each control's Tag property. Then, attach the following code to the command button's Click event procedure: Dim ctl As Control For Each ctl In Me.Controls If ctl.Tag = "Hide" Then ctl.Visible = False End If Next ![]() See all Topics access Labels: Customize, Forms, General, Properties, Tips <Doug Klippert@ 3:56 AM
Comments:
Post a Comment
Wednesday, February 16, 2011 – Permalink – Auto NumberDon't be smartThere should not be any "intelligence" in an AutoNumber field. It is meant as an index field and not anything else. If the need should arise to reset the field, if your table does NOT contain any records, simply compacting the database again will set the Autonumber field back to 1. Another way would be to delete the AutoNumber field and re-insert it in the table. Here's a long way to start at a specific number.
Also: Access AutoNumber Reset "This is some sample code that shows how to programmatically reset all AutoNumber fields in an Access Database to a correct value (whether it be 0 or the max value + 1). In addition, it contains code for Compacting and Repairing an MS Access Database. This is perfect for people who are working with a complicated Access Database and have experienced AutoNumber bugs!And: Creating an AutoNumber field from code See all Topics access <Doug Klippert@ 3:04 AM
Comments:
Post a Comment
Monday, February 14, 2011 – Permalink – Creating Hyperlinks in Access TablesSimplyWhen you populate a hyperlink field in a table, you probably cut and paste the URL from your browser into the Insert Hyperlink dialog box. There's an even easier way to do this using Internet Explorer.
See all Topics access <Doug Klippert@ 3:04 AM
Comments:
Post a Comment
Sunday, February 13, 2011 – Permalink – Keyboard ShortcutsExtra pilcrows?Here is a list of keyboard shortcuts I once or never knew. The one that struck me was: Ctrl Alt K — Remove extraneous paragraph marks. This removes doubled pilcrows (¶¶). Word-Tips
See all Topics access <Doug Klippert@ 8:05 AM
Comments:
Post a Comment
Wednesday, February 09, 2011 – Permalink – Split Access DatabaseSeparate tablesYou don't need to keep all of your data in one file. You can split your MDB file into data and application files.
Access has a tool to do the splitting for you, go to: Tools>Database Utilities Database Splitter In Access 2007:
Knowledgebase: How to manually split a Microsoft Access database MSDN: About sharing an Access database on a network See all Topics access <Doug Klippert@ 3:19 AM
Comments:
Post a Comment
Sunday, February 06, 2011 – Permalink – Runtime for AccessFree Download !Access is not included in the basic Office 2007+ suites. If you want to distribute your database projects to others in the office, you'll need this download. The Access 2003 Developer Extensions cost about $500. The 2007-10 downloads are free! "Microsoft Office Access 2007 provides a rich platform for developing database management solutions with easy-to-use customization tools. Access 2007 Runtime Access 2010 Runtime See all Topics access <Doug Klippert@ 3:18 AM
Comments:
Post a Comment
Tuesday, February 01, 2011 – Permalink – Indent CodeRealign a bunchIndenting blocks of VBA code, such as statements within loops or If...Then statements, makes reading a procedure much easier. You probably indent a code statement using the [Tab] key, and outdent by using [Shift][Tab]. However, you may not be aware that the [Tab] and [Shift][Tab] techniques also work when multiple code lines are selected. The Visual Basic Editor also provides Indent and Outdent buttons on the Edit toolbar that allow you to easily reposition blocks of code. See all Topics access Labels: VBA <Doug Klippert@ 3:22 AM
Comments:
Post a Comment
|