|
|
|
รบกวนผู้เชี่ยวชาญ Win CE ช่วยผมเรื่อง Beep หน่อยครับ |
|
|
|
|
|
|
|
Code (C#)
[DllImport("CoreDll.dll")]
public static extern void MessageBeep(int code);
public static void MessageBeep() {
MessageBeep(-1); // Default beep code is -1
}
เพิ่มเติม MessageBeep
|
|
|
|
|
Date :
2013-12-10 19:23:36 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณนะครับ วิธีนี้ผมลอง ตั้งแต่แรกแล้วอะครับ มันไม่ error นะครับ แต่ว่ามันไม่มีเสียงอะไรเลย
มีวิธีอื่นอีกไหมครับ
|
|
|
|
|
Date :
2013-12-12 08:54:16 |
By :
poomberry |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พอดีทำได้เเล้วคับเลยเอามาบอกต่อ เป็น การ playsound เลือกไฟล .wav มาใส่ตามใจชอบเลยคับ
Code (C#)
using System.Runtime.InteropServices;
[DllImport("coredll.dll", EntryPoint = "PlaySoundW", SetLastError = true)]
private extern static bool PlaySound(string lpszName, IntPtr hModule, int
dwFlags);
วิธีเรียกใช้
กำหนด path กันตามใจชอบครับ
private void button1_Click(object sender, EventArgs e)
{
PlaySound(@"./ProgramStore/DATA/beep-1.wav", IntPtr.Zero, 0x20000);
}
|
|
|
|
|
Date :
2013-12-20 14:44:56 |
By :
poomberry |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|