博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
How To PLAY_SOUND in Oracle Forms
阅读量:6692 次
发布时间:2019-06-25

本文共 627 字,大约阅读时间需要 2 分钟。

Play_sound is used to play audio files in Oracle Forms, Play_Sound plays the sound object in the specified sound item.

PLAY_SOUND examples
The following plsql block you can write in when-button-pressed trigger for a push button item, when button clicked  read a sound object from the file system and play it. Note: since an item must have focus in order to play a sound, the trigger code includes a call to  the built-in procedure GO_ITEM:

BEGIN
IF :clerks.last_name = ’BARNES’ THEN
GO_ITEM(’orders.filled_by’);
READ_SOUND_FILE(’t:\orders\clerk\barnes.wav’,’wave’,’orders.filled_by’);
PLAY_SOUND(’orders.filled_by’);
END IF;
END;


 

转载地址:http://hqcoo.baihongyu.com/

你可能感兴趣的文章
反思~~~~~~思绪有点乱
查看>>
android-------非常好的图片加载框架和缓存库(Picasso)
查看>>
Titanium, PhoneGap, Sencha Touch, jQuery Mobile – Clearing up confusion
查看>>
eclipse如何部署Web工程到tomcat中
查看>>
在CentOS7上安装JDK1.8
查看>>
搜索和网页排名的数学原理
查看>>
Xcode项目中同一个名称不同位置 简单修改
查看>>
java设计模式-建造者模式
查看>>
oracle笔记
查看>>
ContentProvider数据更新
查看>>
一些常用RPM Repository(RPM软件仓库)地址
查看>>
Xcode常用插件
查看>>
实体 map 属性
查看>>
php设计模式--适配器模式
查看>>
java中的枚举类 enum使用与分析
查看>>
JAVA 四大域对象总结
查看>>
GIT 常用命令
查看>>
企业级落地容器与DevOps,选用K8S都有哪些“姿势”
查看>>
Android平台播放语音时支持听筒、喇叭之间切换
查看>>
RPC的实现
查看>>