User contributions
Jump to navigation
Jump to search
- 13:42, 1 July 2010 diff hist +785 N Microsoft Access modFso Created page with '=== assertPath === <syntaxhighlight lang="vb"> Sub assertPath(strPath) Dim fso As FileSystemObject Dim blnFirst As Boolean blnFirst = True Set fso = New File...'
- 13:42, 1 July 2010 diff hist +4,583 N Microsoft Access modSql Created page with '=== Constants === <syntaxhighlight lang="vb"> Public Const strFormatSqlDate As String = "yyyy\-mm\-dd" Public Const strFormatSqlDateCriterion As String = "\#yyyy\-mm\-dd\#" </syn...'
- 13:41, 1 July 2010 diff hist +2,079 N Microsoft Access modFunction Created page with '=== round === Microsoft Access' Round() function is different from the one implemented in Microsoft Excel. The behavious can be imitated using a user defined function. The "roun...'
- 13:40, 1 July 2010 diff hist +246 N Microsoft Access modUi Created page with '=== setStatus === <syntaxhighlight lang="vb"> Public Sub setStatus(Optional strMessage As String = "Bereit") strMessage = _ getUserName & " - " & _ strMessage...'
- 13:37, 1 July 2010 diff hist +940 N Microsoft Access modSetting Created page with '=== debugPrintUserRunTimeSettings === <syntaxhighlight lang="vb"> Sub debugPrintUserRunTimeSettings() Dim arrSetting() As String Dim intIndex As Integer Debug.Pr...'
- 13:36, 1 July 2010 diff hist +322 Microsoft Access VBA Code Snippets →Modules
- 13:20, 1 July 2010 diff hist -16,372 Microsoft Access VBA Code Snippets →modAccess
- 13:19, 1 July 2010 diff hist +16,401 N Microsoft Access modAccess Created page with '=== getApplicationTitle === <syntaxhighlight lang="vb"> Function getApplicationTitle() As String Dim strResult As String strResult = CurrentDb.Properties("AppTitle")...'
- 13:13, 1 July 2010 diff hist +11 MediaWiki:Common.css
- 13:10, 1 July 2010 diff hist +1 MediaWiki:Common.css
- 13:09, 1 July 2010 diff hist 0 MediaWiki:Common.css
- 13:06, 1 July 2010 diff hist +32 MediaWiki:Common.css
- 15:58, 30 June 2010 diff hist +1,381 Microsoft Access VBA Code Snippets →displayGaps
- 11:09, 25 June 2010 diff hist +314 Microsoft Access VBA Code Snippets →setTableFieldFormat
- 17:06, 19 June 2010 diff hist +24 Main Page →Microsoft Access
- 17:04, 19 June 2010 diff hist +39 Main Page →Microsoft Access
- 17:02, 19 June 2010 diff hist +18 Microsoft Access Options
- 17:00, 19 June 2010 diff hist -75 Microsoft Access Options
- 16:58, 19 June 2010 diff hist 0 MediaWiki:Common.css
- 16:43, 19 June 2010 diff hist -510 MediaWiki:Common.css
- 16:33, 19 June 2010 diff hist +1,288 MediaWiki:Common.css
- 16:29, 19 June 2010 diff hist +13,435 N Microsoft Access Options Created page with '{| class="wikitable" |+ align="bottom" | Microsoft Access: Options ! style="text-align:left;" | Option !! style="text-align:left;" | Type !! style="text-align:left;" | Default !!...'
- 14:57, 17 June 2010 diff hist +11 Microsoft Access VBA Code Snippets →round2
- 13:39, 16 June 2010 diff hist +56 Microsoft Access VBA Code Snippets →executeSql
- 17:05, 10 June 2010 diff hist +1,279 Microsoft Access VBA Code Snippets →modAccess
- 13:29, 8 June 2010 diff hist +570 Microsoft Access VBA Code Snippets →modFunction
- 16:52, 7 June 2010 diff hist +1,065 Microsoft Access VBA Code Snippets →modFunction
- 16:48, 7 June 2010 diff hist -20 Microsoft Access VBA Code Snippets →setAccessAttribute / setupAccessAttributes
- 16:47, 7 June 2010 diff hist -20 Microsoft Access VBA Code Snippets →setAccessAttribute / setupAccessAttributes
- 16:46, 7 June 2010 diff hist +1,707 Microsoft Access VBA Code Snippets →modAccess
- 16:55, 30 April 2010 diff hist -35 Microsoft Access VBA Code Snippets →modExcel
- 15:55, 30 April 2010 diff hist +4,328 Microsoft Access VBA Code Snippets →modExcel
- 12:20, 28 April 2010 diff hist +66 Main Page
- 16:56, 27 April 2010 diff hist +686 Microsoft Access VBA Code Snippets →modAccess
- 15:29, 27 April 2010 diff hist +269 Microsoft Access Front End →User Login
- 15:27, 27 April 2010 diff hist +370 Microsoft Access Front End →User Interface
- 15:20, 27 April 2010 diff hist +181 Microsoft Access Front End →Navigation
- 12:30, 26 April 2010 diff hist +16 Main Page →Special Objects
- 10:35, 26 April 2010 diff hist +69 Main Page →Microsoft Access
- 09:32, 26 April 2010 diff hist +24 Main Page
- 09:30, 26 April 2010 diff hist +117 Microsoft Access VBA Coding Conventions
- 00:08, 26 April 2010 diff hist +44 Well Formed SQL Statements
- 00:06, 26 April 2010 diff hist +367 N Well Formed SQL Statements Created page with '== General == SQL statements can be read much easier, if they are well-formatted. Good formatting is achieved as follows: * align the SQL keywords to the right * make use of fi...'
- 00:02, 26 April 2010 diff hist +684 N Microsoft Access VBA Coding Conventions Created page with '== General == === Indentation === The indentation size is 4. === Empty lines === === Variables === * Early binding * No globals * No abbreviations * Make use of the variable t...'
- 23:41, 25 April 2010 diff hist +599 N Microsoft Access Code Management Created page with '== Import == Import code versions into the code base. == Export == Export code versions into files. == Task management == Scan code base for task constants * @FIXME * @TODO ==...'
- 23:33, 25 April 2010 diff hist +55 Main Page →Coding
- 23:31, 25 April 2010 diff hist +2,150 N Microsoft Access Front End Created page with '== General == The front end of an application is the only way for a user to manipulate data. == Accessibility == The front end usually offers the following measures of accessibi...'
- 22:57, 25 April 2010 diff hist +315 Main Page →Microsoft Access
- 12:50, 22 April 2010 diff hist 0 Microsoft Access VBA Code Snippets →getUserTempTable
- 12:50, 22 April 2010 diff hist +756 Microsoft Access VBA Code Snippets →modWsh