ArcPad Scripting Object Model
PlaySound Method
See Also  Send comments on this topic.
Sound
Required. A String contains the filepath of the .WAV file.
Flags
Application Object : PlaySound Method

Glossary Item Box

Description

Plays the specified .WAV file.

Syntax

object.PlaySound ( Sound )

Parameters

Sound
Required. A String contains the filepath of the .WAV file.
Flags

Remarks

PlayStartupSound plays a particular .WAV file when ArcPad starts. This subroutine would be called when the OnStartUp event is fired by the Application object.


Sub PlayStartupSound
  Dim strMySound
  strMySound = "C:\sounds\Startup.WAV"
  Application.PlaySound(strMySound)
End Sub

See Also

© 2012 All Rights Reserved.