Juan Soto

About Juan Soto

Juan Soto is a Senior Access Developer at IT Impact Inc. and a Microsoft Access MVP. He specializes in Access with SQL Server databases. His passion for Access has led him to helping a wide range of businesses in helping them establish a secure, stable and efficient environment with SQL Server. He's a frequent speaker at Access user groups nationwide and recently spoke at the Orange County SQL Saturday # 73. If you wish to have Juan speak at your next group meeting you can contact him here.
jsoto@itimpact.com

Map route on Yahoo Maps with Addresses in Access

Yahoo maps is great at mapping out a route you entered through the browser, but what if you need to map the addresses using a pre-defined route in Access? This tip will show you how to build the URL on the fly and then pass it along to the default browser on your PC. Note: for the same technique usi [...]

2013-09-27T19:22:39-05:00July 21st, 2010|

Map route on Google Maps with Addresses in Access

Google maps is great at mapping out a route you entered through the browser, but what if you need to map the addresses using a pre-defined route in Access? This tip will show you how to build the URL on the fly and then pass it along to the default browser on your PC. Here's the code: Private Sub cm [...]

2010-07-21T16:49:08-05:00July 21st, 2010|

Bug will occur when using datasheet view in a sub form.

Here's a bug you will come across when using a subform in datasheet view: "Property Not Found" Here is the code that will trigger the criptic message from Access: Private Sub MyField_BeforeUpdate(Cancel as Integer) if somecondition = True then Msgbox "Your message here, usually you can't save the re [...]

2010-07-13T19:51:21-05:00July 13th, 2010|

Access function to return day of the week

Sometimes you need the actual day name of the date and not the numeric equivalent, the following function will do that for you: Public Function MyWeekDayName(dteDate As Date) As String 'Will return "Monday", "Tuesday", etc. based on the date supplied MyWeekDayName = WeekdayName(WeekDay(dteDate), Fal [...]

2010-07-13T19:50:36-05:00July 13th, 2010|

Part 3: Why I grew to love Microsoft Access Data Projects

Note: This is part three of a series of articles on Access Data Projects, Click to see Part 1 Click to see Part 2  Why I learned to love Microsoft Access Data Projects As a seasoned Access programmer, it seams all I do lately is Access with SQL Server, in part because of the great combination of SQL [...]

2010-06-21T16:45:45-05:00June 21st, 2010|

Launch Email Window from Form

If your database contains an email field, you can easily modify your form so that users can single click to create an email in their default email program. First, modify the control's Display as Hyperlink property to Always, second, modify the control's on click event with the following code:     If [...]

2010-06-17T16:43:58-05:00June 17th, 2010|

Part 2 Access ADP Tip : Get rid of the login box on startup

Note: This is part two of a series of articles on Access Data Projects, Click to see Part 1 Click to see Part 3  Access ADPs can provide you with the flexibility and power only a direct connection to SQL Server can provide, but a major drawback to a developer is the login box that will always show u [...]

2010-06-06T16:40:44-05:00June 6th, 2010|

Part 1 Access ADP Tip: Using ADP ServerFilter property

Note: This is part one of a series of articles on Access ADP projects. Click to see Part 2 Click to see Part 3  Where and Filter Clause do not work when using DoCmd.OpenForm Statement One of the issues you will find when working with an Access Data Project, (ADP), is the lack of functionality in the [...]

2022-03-22T09:26:22-05:00June 3rd, 2010|

How to create PDFs in Word using Access VBA

Office 2007 will allow you to easily create PDFs from any Word Document using the output menu on the Office button, (Access does too with Reports), but recently I had to create a procedure for a client that wanted to convert Word docs to PDF, email them and do it all from Access. Note: To make this [...]

2022-04-19T04:03:44-05:00May 13th, 2010|

Using a SQL Server stored procedure with an insert query in Access

If you're using a SQL Server database with an Access frontend, then this article is for you. Leveraging the power of Stored Procedures from Access has numerous benefits: your server can perform transactions that would take far longer in Access. Recently I came across the following issue when working [...]

2021-03-03T14:31:59-06:00April 19th, 2010|

Using SQL Server Views with Access: Index needed for editing data.

SQL Server views are one of the best tools a Microsoft Access programmer can use to limit exposure to data and improve Access performance. Unfortunately, you can't modify data in a view unless it has an unique index, read on if that is the case for you. (You can create indexed views in SQL Server, t [...]

2021-03-03T12:46:14-06:00March 3rd, 2010|
Go to Top