论坛


2009年11月10日 星期二

操作 Wave 文件(9): 使用 waveOut... 函数播放 wav 文件

万一| 万一的 Delphi 博客 |18:18:00

  阅读: 56 评论: 0 作者:万一发表于 2009-11-10 18:18原文链接下面是使用低级音频函数播放 wav 的两个方法, 对这个感兴趣的人恐怕很少, 免注释了.使用窗口接受音频输出设备的消息:unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes...

Smart Clients with Delphi and RemObjects

CodeGear| CodeGear-CDN Delphi |17:00:00

操作 Wave 文件(8): 使用 TMediaPlayer 录制 wav 文件

万一| 万一的 Delphi 博客 |13:48:00

  阅读: 28 评论: 1 作者:万一发表于 2009-11-10 13:48原文链接TMediaPlayer 录音是基于一个已存在的 wav 文件, 上次建立空白 wav 的函数可派上用场了.TMediaPlayer 的功能是基于 MCI 的, 都是该淘汰的东西了, 只是简单了解下.接下来还要学习用 waveIn...系列函数?..

Challenge Results: UnCamelCaseThisString Delphi Algoritm

About.com| About.com Delphi Programming |06:48:15

inDelphi Challenges:: The "UnCamelCase" challenge was a simple one, therefore I'm giving 5 points of fame and glory to all who participated :))Some entries are faster some are slower, some use chars, some strings, some even use ASM...Read thefull ...

Atlanta, Miami, Austin and Dallas added to RAD Studio 2010 North America Tour

CodeGear| CodeGear-CDN Delphi |06:02:42

Free TcyComponents v2.4 (with patch for D2009 TDBgrid)

CodeGear| CodeGear-CodeCentral Delphi |04:54:32

Added TcySplitter: Advanced splitter that can be used for resize TCategoryPanels on a TCategoryPanelGroup. Just put a TcySplitter component aligned to bottom on each TCategoryPanel and set ResizeSide property to rmParent.There's a demo program wit...

Habari ActiveMQ Client 2.0 - for Apache ActiveMQ message broker

CodeGear| CodeGear-CodeCentral Delphi |00:51:49

Habari ActiveMQ Client is a library for Delphi(tm) and Free Pascal which provides easy access to Apache ActiveMQ, the most popular and powerful open source Message Broker. With Habari ActiveMQ Client, Delphi developers can build integrated solutio...

Habari OpenMQ Client 1.2 - for Open Message Queue / GlassFish™

CodeGear| CodeGear-CodeCentral Delphi |00:48:10

Habari OpenMQ Client is a library which provides easy access to the Open Message Queue Message Broker. It supports Delphi 6 to 2010 and Free Pascal and follows the JMS API specification for Message Oriented Middleware. Now your applications can ex...

操作 Wave 文件(7): 建立一个空的 Wave 文件(三种方法)

万一| 万一的 Delphi 博客 |00:17:00

  阅读: 57 评论: 0 作者:万一发表于 2009-11-10 00:17原文链接unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TForm1 = class(TForm) procedure FormCreate(Sender: TObjec...