PC Review


Reply
Thread Tools Rate Thread

bookmarks in form.

 
 
=?Utf-8?B?U3RlZmFu?=
Guest
Posts: n/a
 
      18th May 2006
Hi,

I have a subform with an enormous list of properties according to projects
that was selected in an second form. This works fine.

Because its a great list (this has to stay this way) i want above it a
listbox with the different chapters so that the user can click on the chapter
he/she wants to see.

My question is: is it possible to scroll a form using VB or something like
bookmarks in WORD or FrontPage.


--
thanks,
Stefan
 
Reply With Quote
 
 
 
 
Arvin Meyer [MVP]
Guest
Posts: n/a
 
      18th May 2006
A bookmark in Access is a placeholder, similar to a placeholder in Word, but
it doesn't use a physical place in a document. Rather, it uses a placeholder
in a recordset.

So in Access, you'd use the Key, or Index. Something like:

With Me.RecordsetClone
.FindFirst "ID = " & Me.txtID
If .NoMatch Then
MsgBox "Not found."
Else
'Go to the record.
Me.Bookmark = .Bookmark
End If
End With
End If
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access

"Stefan" <123@abc> wrote in message
news:7F869E6F-905E-42C1-BD96-(E-Mail Removed)...
> Hi,
>
> I have a subform with an enormous list of properties according to projects
> that was selected in an second form. This works fine.
>
> Because its a great list (this has to stay this way) i want above it a
> listbox with the different chapters so that the user can click on the

chapter
> he/she wants to see.
>
> My question is: is it possible to scroll a form using VB or something

like
> bookmarks in WORD or FrontPage.
>
>
> --
> thanks,
> Stefan



 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Using Bookmarks and User Form within Outlook RPMitchal Microsoft Outlook VBA Programming 3 21st Dec 2009 08:44 PM
VBA help window: Multiple windows/tabs, bookmarks, bookmarks/historypane paul.domaskis@gmail.com Microsoft Outlook VBA Programming 4 19th May 2009 02:09 PM
bookmarks\Form fields Cindy Microsoft Word Document Management 1 26th Feb 2009 06:49 AM
Share your bookmarks - XSD to a Windows Form Jeroen Microsoft C# .NET 1 2nd Nov 2006 10:22 AM
Form Field Bookmarks Wayne Microsoft Word Document Management 1 25th Aug 2004 12:27 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:27 AM.