Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to copy and read audio files to the clipboard by VB.NET

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

Editor to share with you how VB.NET copies and reads audio files to the clipboard. I hope you will get something after reading this article. Let's discuss it together.

Sample code

Public Class Form1 'VB.Net copy reads the audio file and copies it to the clipboard Private Sub Button1_Click (ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Try Dim MyData As Byte () MyMyData = My.Computer.FileSystem.ReadAllBytes ("WindowsXP.wav") My.Computer.Clipboard.SetAudio (MyData) MessageBox.Show ("audio data VB.Net has been successfully copied to the clipboard!" , "51cto prompt", MessageBoxButtons.OK, MessageBoxIcon.Information) Catch ex As Exception MessageBox.Show ("error copying audio data to the clipboard, please check if the audio file already exists?" , "51cto prompt", MessageBoxButtons.OK, MessageBoxIcon.Error) End Try End Sub 'paste clipboard audio data and play Private Sub Button2_Click (ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Try Dim MyData As Object MyMyData = My.Computer.Clipboard.GetData (DataFormats.WaveAudio) My.Computer.Audio.Play (MyData, AudioPlayMode.Background) Catch ex As Exception MessageBox.Show ("the specified audio data does not exist on the clipboard!" , "51cto hint", MessageBoxButtons.OK, MessageBoxIcon.Error) End Try End Sub 'clear the audio data on the clipboard Private Sub Button3_Click (ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click My.Computer.Clipboard.Clear () End Sub End Class has finished reading this article, I believe you have some understanding of "how VB.NET copies and reads audio files to the clipboard", if you want to know more about it Welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report