Re: Music Notation
- From: Salad <oil@xxxxxxxxxxx>
- Date: Wed, 23 Jan 2008 07:37:54 -0800
Dominic Vella wrote:
Ok, I know, I know, Access is not normally the right tool for this job, but I've built a catalogue of music books, with the song in each book, and associated midi filenames, for a musician, blah blah blah.I would probably create a hyperlink in the table, scan the song to a file, and then create the hyperlink
Now, I want to up the ante a bit.
I know VB has Circle() and Line() commands, and other nice graphical commands.
I know you can do some of this in a report (supposedly) but is there any way at all I can draw lines and dots on a Form?
Maybe I can use CreateControl to make more lines, and maybe copy images of circles using CreateControl too?
Thanks
Dominic
Dim strNotes as String
Dim strMP3 As String
strNotes = "Song1#C:\Music\Song1.Tif"
strMP3 = = "Song1 MP3#C:\MP3\Song1.MP3"
Me.HyperLinkNotes = strNotes
Me.HyperLinkMP3 = strMP3
You could then view the notes file and listen to the song.
To get the filename, consider
http://www.mvps.org/access/api/api0001.htm
To open the file, consider
http://www.mvps.org/access/api/api0018.htm
To get the filename, check out HyperlinkPart in Help.
I usually split the display text from the file name using HyperlinkPart, set the color to blue underline for the display text and use the dbl-click event to present the file.
Bright Future
http://www.youtube.com/watch?v=wvIAyxpjEuc
.
- Follow-Ups:
- Re: Music Notation
- From: Dominic Vella
- Re: Music Notation
- References:
- Music Notation
- From: Dominic Vella
- Music Notation
- Prev by Date: Getting no records in Rst object
- Next by Date: Re: runtime error 2501 ApplyFilter action was cancelled
- Previous by thread: Music Notation
- Next by thread: Re: Music Notation
- Index(es):
Relevant Pages
|