vbabuff.blogspot.com
VBA Buff: Does Access Object Exists
http://vbabuff.blogspot.com/2010/03/does-access-object-exists.html
Samples of VBA code I'm using in my daily tasks. Friday, March 12, 2010. Does Access Object Exists. Subscribe to: Post Comments (Atom). Save Recordset To CSV File. Write Table Or Query To CSV File. Does filed exist in Access table. Does Access Object Exists. Format Excel Sheet From Access. Merge Text Files FSO. Mass replace characters in a text file. How To Build ODBC Connection String.
vbabuff.blogspot.com
VBA Buff: Format Excel Sheet From Access
http://vbabuff.blogspot.com/2010/03/format-excel-sheet-from-access.html
Samples of VBA code I'm using in my daily tasks. Friday, March 12, 2010. Format Excel Sheet From Access. I have this function in my Access modules. When a table or a query is transfered to a speadsheet I use the function to format all sheets in the workbook. Format Excel Sheet * * * * * * * * * * * * * * '= = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =. Sub FormatExcelSheet(ByVal myFilePath As String) '. Cells(1, 1).EntireRow.Interior.ColorIndex = 6 ' Use bold font in first row. ObjXLActi...
vbabuff.blogspot.com
VBA Buff: Change - Make QueryDefs
http://vbabuff.blogspot.com/2010/05/change-make-querydefs.html
Samples of VBA code I'm using in my daily tasks. Monday, May 3, 2010. Change - Make QueryDefs. If you have an MS Access job where in the loop you want to use the same query, or run update query on a different table, or want to pass different SS Number, or . here is the solution. 1 Create a query and name it "qryMySampleQuery" (template). 2 Read your querydef from template query:. SqlIn = CurrentDb.QueryDefs(" qryMySampleQuery. SqlOut = Replace(sqlIn, "tblTableSampleName", strMyVariableTableName). Purpose...
vbabuff.blogspot.com
VBA Buff: May 2010
http://vbabuff.blogspot.com/2010_05_01_archive.html
Samples of VBA code I'm using in my daily tasks. Monday, May 3, 2010. Change - Make QueryDefs. If you have an MS Access job where in the loop you want to use the same query, or run update query on a different table, or want to pass different SS Number, or . here is the solution. 1 Create a query and name it "qryMySampleQuery" (template). 2 Read your querydef from template query:. SqlIn = CurrentDb.QueryDefs(" qryMySampleQuery. SqlOut = Replace(sqlIn, "tblTableSampleName", strMyVariableTableName). Purpose...
vbabuff.blogspot.com
VBA Buff: Write Table Or Query To CSV File
http://vbabuff.blogspot.com/2010/03/write-table-or-query-to-csv-file.html
Samples of VBA code I'm using in my daily tasks. Wednesday, March 17, 2010. Write Table Or Query To CSV File. April 14, 2013 at 1:11 PM. Subscribe to: Post Comments (Atom). Save Recordset To CSV File. Write Table Or Query To CSV File. Does filed exist in Access table. Does Access Object Exists. Format Excel Sheet From Access. Merge Text Files FSO. Mass replace characters in a text file. How To Build ODBC Connection String.
vbabuff.blogspot.com
VBA Buff: Extended DLookup
http://vbabuff.blogspot.com/2010/03/extended-dlookup.html
Samples of VBA code I'm using in my daily tasks. Sunday, March 14, 2010. This is a great utility I found at allenbrowne.com. Allen is one of 95 Access MVP. Extended DLookup() '= = = = = = = = = = = = = = = = 'The DLookup() function in Access retrieves a value from a table. 'For basic information on how to use DLookup(), see Getting a value from a table. ' 'Why a replacement? Dim db As DAO.Database 'This database. Dim rs As DAO.Recordset 'To retrieve the value to find. Dim strSQL As String 'SQL statement.
vbabuff.blogspot.com
VBA Buff: March 2010
http://vbabuff.blogspot.com/2010_03_01_archive.html
Samples of VBA code I'm using in my daily tasks. Wednesday, March 17, 2010. Save Recordset To CSV File. Write Table Or Query To CSV File. Sunday, March 14, 2010. This is a great utility I found at allenbrowne.com. Allen is one of 95 Access MVP. Extended DLookup() '= = = = = = = = = = = = = = = = 'The DLookup() function in Access retrieves a value from a table. 'For basic information on how to use DLookup(), see Getting a value from a table. ' 'Why a replacement? Dim db As DAO.Database 'This database.
vbabuff.blogspot.com
VBA Buff: Does filed exist in Access table
http://vbabuff.blogspot.com/2010/03/does-filed-exist-in-access-table.html
Samples of VBA code I'm using in my daily tasks. Friday, March 12, 2010. Does filed exist in Access table. Subscribe to: Post Comments (Atom). Save Recordset To CSV File. Write Table Or Query To CSV File. Does filed exist in Access table. Does Access Object Exists. Format Excel Sheet From Access. Merge Text Files FSO. Mass replace characters in a text file. How To Build ODBC Connection String.