Showing posts with label MSACC. Show all posts
Showing posts with label MSACC. Show all posts

Friday, January 11, 2013

Wednesday, January 9, 2013

MS Access or SQL Database Development

MS Access Custom Form

















MS Access or SQL Database Development

Quality database using MS Access or SQL Server

  • Administering SQL server databases.
  • Backups, Recovery, jobs, linked servers,
    • Triggers
    • SQL Profiler
Replication
  • Implement and troubleshoot replication in SQL server environment
  • Writing TSQL ad-hoc queries and reports
    • SSRS reports
    • Custom Report and Business Intelligence Reporting
  • Stored procedures;
    • SQL Server Functions 
    • Creating database objects, ,
    • SSIS packages
  • · Designing and Implementing SQL server databases
  • Expert Data Translation
    • Moving data between SQL Server, ACCESS and ORACLE
    • Creating, testing and troubleshooting patterns/problems using .NET, C#  and VB
  • Collaborating with team members to establish data requirements
    · Automating complex tasks through scripting
  • Installation, Support and Maintenance
Share:

Wednesday, December 26, 2012

MSACC: Dir Paths and ShortCuts

Subject: finding the paths of an MS Access Project
Posted Under: Files, Directories and Path

Borrowed in part but extended from this posting:

http://support.microsoft.com/kb/210395

Option Compare Database
Function g_GetFullName()
   'Returns full path including file to currently opened MDB or ADP
   g_GetFullPath = CurrentProject.FullName
End Function
Function g_GetPath()
   'Returns the path to currently opened MDB or ADP
   g_GetPath = CurrentProject.Path
End Function
Function g_GetFullConnection()
   'Returns the filename of the currently opened MDB or ADP
   g_GetFullConnection = CurrentProject.Connection
End Function
Function g_GetName()
   'Returns the name of of the currently opened MDB or ADP : returns "my app name.accdb"
   g_GetName = CurrentProject.name
  
End Function
' save time run all in one call
Function GetAll()
Debug.Print "con: "; g_GetFullConnection; vbCrLf
Debug.Print "PATH:  "; g_GetPath; vbCrLf
Debug.Print "name:   "; g_GetName; vbCrLf
Debug.Print "Full Path:   "; g_GetFullPath; vbCrLf


End Function



Share: