<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.office.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Build navigation UI with Access 2010</title><link>http://blogs.office.com/b/microsoft-access/archive/2009/11/14/build-navigation-ui-with-access-2010.aspx</link><description>Today&amp;rsquo;s guest writer is Wouter Steenbergen, a PM on the Access team responsible for Access form and report designers. If you want to build an easy to use application it always starts with a good navigation model that allows users to quickly perform</description><dc:language>en-US</dc:language><generator>Telligent Community 1.5.134.15456 (Build: 5.5.134.15456)</generator><item><title>re: Build navigation UI with Access 2010</title><link>http://blogs.office.com/b/microsoft-access/archive/2009/11/14/build-navigation-ui-with-access-2010.aspx#15198</link><pubDate>Tue, 08 Dec 2009 15:11:51 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:15198</guid><dc:creator>David</dc:creator><description>&lt;p&gt;What happens if an Access 2010 file with a navigation control is opened in Access 2007? Can the navigation control still be used in form view? Can the navigation control be edited in design view?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=15198" width="1" height="1"&gt;</description></item><item><title>re: Build navigation UI with Access 2010</title><link>http://blogs.office.com/b/microsoft-access/archive/2009/11/14/build-navigation-ui-with-access-2010.aspx#15199</link><pubDate>Tue, 01 Dec 2009 21:59:14 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:15199</guid><dc:creator>Gelert</dc:creator><description>&lt;p&gt;I am using the Navigation tool and finding that it works pretty well. The issue that have is that when using a split form, the data sheet portion disappears. Is there something that I can do to get my data sheet component back?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=15199" width="1" height="1"&gt;</description></item><item><title>re: Build navigation UI with Access 2010</title><link>http://blogs.office.com/b/microsoft-access/archive/2009/11/14/build-navigation-ui-with-access-2010.aspx#15200</link><pubDate>Fri, 20 Nov 2009 02:58:54 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:15200</guid><dc:creator>Dennis Yapp</dc:creator><description>&lt;p&gt;Boy I wish this was in Access 2003 and 2007.. it should be so backward compatible, because tab control doesn&amp;#39;t do all these things navigation control does.. which I&amp;#39;m glad you&amp;#39;ve added this because coding tab controls properly to deal with record updates/requeries and switch tabs is a pain with the tab control, you do have to know your logic well, and I find that header forms of subforms, tend to fire subform control current record many times in a row based on events that occur. So congrates on adding a cool new developer feature to make it easier to build better UI in no time flat!&lt;/p&gt;
&lt;p&gt;Thanks MS!&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=15200" width="1" height="1"&gt;</description></item><item><title>re: Build navigation UI with Access 2010</title><link>http://blogs.office.com/b/microsoft-access/archive/2009/11/14/build-navigation-ui-with-access-2010.aspx#15201</link><pubDate>Thu, 19 Nov 2009 02:11:58 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:15201</guid><dc:creator>Clint Covington</dc:creator><description>&lt;p&gt;Gilad--thanks for the explanation. You will get the same visual formatting for the tab control. You just need to turn on the Use Theme property. We still don&amp;#39;t allow you to set the backcolor of a tab page. Nice feature request.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=15201" width="1" height="1"&gt;</description></item><item><title>re: Build navigation UI with Access 2010</title><link>http://blogs.office.com/b/microsoft-access/archive/2009/11/14/build-navigation-ui-with-access-2010.aspx#15202</link><pubDate>Tue, 17 Nov 2009 08:10:26 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:15202</guid><dc:creator>Gilad</dc:creator><description>&lt;p&gt;&amp;gt;“Can you elaborate on the scenario you had in mind with navigation tabs and OnChange?” Clint, you asked me to elaborate, so here goes: First let me say that I think I have the same navigation ability as that of the new navigation control that you described above, but with a regular tab control. For me, what is missing from the tab control is only how it looks, which I was hoping will improve. You can’t change the back-color of a page on a tab control for example, (unless you use all sorts of improvisations which I don’t like and that are problematic). So here is how to reproduce the same functionality with a regular tab control: I have a continuous form. In its footer I have a Tab control. Over on top of the tab control, but not included inside any of its pages I situated a sub-form control (initially Access tells you that you can’t do that and automatically changes the top level form to have a single form view instead of continuous, but that can be then changed back to continuous). Once a user clicks on one of the tabs in the tab control, the tab’s On-Change event is triggered. In this event’s code I replace the content of the sub-form’s container to contain a different sub-form appropriate for that tab. But in addition to the functionality that you described for the new Navigation control, here this sub-form can also be set to continuous, and can have linked child and master fields to its containing form. So when adding new records to the sub-form, Access automatically takes care of inserting the correct PK field into the sub-form’s underlying table. It gets better because you can have the same thing repeated for a second level inside the sub-form itself. In other words this sub form can contain another tab with another sub form on top of it. So you can see on the same screen a hierarchy of three levels, one to many, and then again one to many. In order to repeat this with the new navigation control you would have to code all that Access does automatically with the child and master fields for sub forms. I guess you would have to use the sub-form’s before-insert event to take care of the PK field, and probably some more things also. The sub-forms underlying query will have to include a criteria that references the top level form in order to filter the records etc.. You wrote that the ‘roles’ only apply to web apps. If I understand correctly then ‘web apps’ are applications that are run on the browser and are linked to lists on sharepoint, and that do not require the user to have Access installed locally? If so, then it is unfortunate that roles only apply to web apps because I was hoping that there will be a way to handle roles for regular client apps as well. I still haven’t done that for my applications and need to do it in code. Web apps are great but I personally don’t think that they will completely replace regular client applications, but will mostly be an addition to them. So from what I can see, in terms of how it looks , this new Navigation control is a nice and welcome improvement when compared to a Tab control. But in terms of the functionality of a regular client application, I think it is a reduction in functionality when compared to a tab control. For me functionality comes first. Gilad&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=15202" width="1" height="1"&gt;</description></item><item><title>re: Build navigation UI with Access 2010</title><link>http://blogs.office.com/b/microsoft-access/archive/2009/11/14/build-navigation-ui-with-access-2010.aspx#15203</link><pubDate>Mon, 16 Nov 2009 17:10:29 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:15203</guid><dc:creator>Clint Covington</dc:creator><description>&lt;p&gt;oX. The navigation control is available for client forms. Assuming you are in a web database look under the Client Forms dropdown for a client version of the navigation forms. It is the option at the bottom.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=15203" width="1" height="1"&gt;</description></item><item><title>re: Build navigation UI with Access 2010</title><link>http://blogs.office.com/b/microsoft-access/archive/2009/11/14/build-navigation-ui-with-access-2010.aspx#15204</link><pubDate>Mon, 16 Nov 2009 16:43:17 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:15204</guid><dc:creator>oXmike</dc:creator><description>&lt;p&gt;Thanks Clint/Albert,&lt;/p&gt;
&lt;p&gt;In my excitement I missed that I was using client forms. I&amp;#39;m wondering how many other people will miss that too when the final version is released. Maybe it should remain hidden till needed in the final version. oX.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=15204" width="1" height="1"&gt;</description></item><item><title>re: Build navigation UI with Access 2010</title><link>http://blogs.office.com/b/microsoft-access/archive/2009/11/14/build-navigation-ui-with-access-2010.aspx#15205</link><pubDate>Mon, 16 Nov 2009 15:06:52 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:15205</guid><dc:creator>Clint Covington</dc:creator><description>&lt;p&gt;Gilad, we will write up a post on the CurrentWebUser() stuff. It isn&amp;#39;t a replacement for user level security but rather a handy function for controlling the user interface for web apps. Can you elaborate on the scenario you had in mind with navigation tabs and OnChange? oXmike--are you trying to add client forms into a web form? That might be the reason you are seeing the can&amp;#39;t drop sign.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=15205" width="1" height="1"&gt;</description></item><item><title>re: Build navigation UI with Access 2010</title><link>http://blogs.office.com/b/microsoft-access/archive/2009/11/14/build-navigation-ui-with-access-2010.aspx#15206</link><pubDate>Mon, 16 Nov 2009 03:48:58 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:15206</guid><dc:creator>Albert D. Kallal</dc:creator><description>&lt;p&gt;&amp;gt;every time I drag a form on to the navigation control, as in the video above, nothing happens. Hum, works for me. Try creating a blank form, and then choose the navigation option from the ribbon (with the choice of horizontal, or vertical…choose one you like) (don&amp;#39;t place the nav contorl on the form...try using the ribbon option). Now, you should be able to drag + drop forms onto the nav control. Keep a bit of a careful eye on the orange bar that highlights the position where you control will appear. It very much like dropping a control onto a layout control in 2007. Make sure your form is layout view.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=15206" width="1" height="1"&gt;</description></item><item><title>re: Build navigation UI with Access 2010</title><link>http://blogs.office.com/b/microsoft-access/archive/2009/11/14/build-navigation-ui-with-access-2010.aspx#15207</link><pubDate>Mon, 16 Nov 2009 03:42:59 GMT</pubDate><guid isPermaLink="false">53587256-c606-4c9b-bad4-97c86b12ce62:15207</guid><dc:creator>Albert D. Kallal</dc:creator><description>&lt;p&gt;&amp;gt;Will these navigation tabs have an &amp;#39;On Change&amp;#39; event that can be used with VBA? No there is not a on change event. The forms on-load event does fire (so VBA could/would go there). I also found I could place a regular button onto the layout grid next to the nav control formatted to look exactly like a button from that nav pane. That button when clicked on can run code and do near anything you want. There is also a new &amp;quot;browse to&amp;quot; command that lets your code &amp;quot;change&amp;quot; the current form (or report) that the selected nav button is displaying. It is a very simple but great little control system. &amp;gt;Can you please elaborate on the issue of &amp;#39;roles&amp;#39;. yes, that interesting to me also. I not seen that function either. It looks new to me. There is a function called IsCurrentWebUserInGroup(). I assume this function allows one to test/check for membership in SharePoint groups. IsAdmin does not look like a local var, and it don&amp;#39;t look like a function either. My guess it is a new enviromement value that I not seen... I think the role issue and your question could be the subject of whole new article here&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.office.com/aggbug.aspx?PostID=15207" width="1" height="1"&gt;</description></item></channel></rss>