Click here to Skip to main content
15,899,937 members
Home / Discussions / Windows Forms
   

Windows Forms

 
QuestionHow to Mute Audio while Recording Video Pin
balaji_vbr5-Sep-08 0:58
balaji_vbr5-Sep-08 0:58 
Questionusercontrol is not working correctly in the application Pin
gtag5-Sep-08 0:07
gtag5-Sep-08 0:07 
AnswerRe: usercontrol is not working correctly in the application Pin
N a v a n e e t h6-Sep-08 0:28
N a v a n e e t h6-Sep-08 0:28 
QuestionRe: usercontrol is not working correctly in the application [modified] Pin
gtag7-Sep-08 20:31
gtag7-Sep-08 20:31 
AnswerRe: usercontrol is not working correctly in the application Pin
gtag8-Sep-08 19:11
gtag8-Sep-08 19:11 
QuestionHow do you hide parts of a usercontrol from the toolbar. Pin
frappydan4-Sep-08 17:43
frappydan4-Sep-08 17:43 
AnswerRe: How do you hide parts of a usercontrol from the toolbar. Pin
Frank Horn5-Sep-08 3:02
Frank Horn5-Sep-08 3:02 
QuestionHow do you add a control to a usercontrol during design time? [modified] Pin
frappydan4-Sep-08 17:39
frappydan4-Sep-08 17:39 
AnswerRe: How do you add a control to a usercontrol during design time? Pin
Frank Horn5-Sep-08 3:13
Frank Horn5-Sep-08 3:13 
AnswerRe: How do you add a control to a usercontrol during design time? Pin
Frank Horn5-Sep-08 4:04
Frank Horn5-Sep-08 4:04 
Questionlong disposing of a WinForm component ressources Pin
kekranx4-Sep-08 2:27
kekranx4-Sep-08 2:27 
QuestionMaking FileDialogs as Child Windows Pin
TyrionTheImp4-Sep-08 2:23
TyrionTheImp4-Sep-08 2:23 
AnswerRe: Making FileDialogs as Child Windows Pin
JoeSharp4-Sep-08 2:51
JoeSharp4-Sep-08 2:51 
GeneralRe: Making FileDialogs as Child Windows Pin
TyrionTheImp4-Sep-08 3:31
TyrionTheImp4-Sep-08 3:31 
GeneralRe: Making FileDialogs as Child Windows Pin
JoeSharp4-Sep-08 3:55
JoeSharp4-Sep-08 3:55 
QuestionMute & Voume Functionality Using Mixers in Windows Form ( C#.NET) Pin
balaji_vbr3-Sep-08 23:32
balaji_vbr3-Sep-08 23:32 
Dear Sir,


I am developping one windows Application, In that i am working on Adio Mute & TrackBar Controls
I am using Check bOx for MUte functionality, TrackBar for Increase or Decrease the volume. For this Iam using Mixer Object. I Added the WaveLib.AudioMixer; Library to my project.

My Reqirement:

1. when i Check the Mute Checck Box then Audio should not be recorded while recording,
2. when i Uncheck the check box then Default volume will set. ( tracker bar volume).


right now i am using this Code but it is not working.

Mixers mix = new Mixers();

if (Settings.Default.Mute == true)// here i have setting page by default the mute is set to False.

{

//Mixer mix = new Mixer(MixerType.Recording);

mix.Recording.Lines.GetMixerFirstLineByComponentType(MIXERLINE_COMPONENTTYPE.SRC_MICROPHONE).Mute = true;

}
else
{



if (mix.Recording.Lines.GetMixerFirstLineByComponentType(MIXERLINE_COMPONENTTYPE.SRC_MICROPHONE).Mute)
{
mix.Recording.Lines.GetMixerFirstLineByComponentType(MIXERLINE_COMPONENTTYPE.SRC_MICROPHONE).Mute = false;
}
mix.Recording.Lines.GetMixerFirstLineByComponentType(MIXERLINE_COMPONENTTYPE.SRC_MICROPHONE).Volume
=CurrentUser.Mute);

//Encoder.set_RecordingMute(0, true);
}


please currect my code.
AnswerRe: Mute & Voume Functionality Using Mixers in Windows Form ( C#.NET) Pin
John_Adams7-Sep-08 21:34
John_Adams7-Sep-08 21:34 
Question64-bit Progress Bar Maximum? Pin
dybs3-Sep-08 3:12
dybs3-Sep-08 3:12 
AnswerRe: 64-bit Progress Bar Maximum? Pin
Frank Horn3-Sep-08 4:17
Frank Horn3-Sep-08 4:17 
GeneralRe: 64-bit Progress Bar Maximum? Pin
dybs3-Sep-08 4:24
dybs3-Sep-08 4:24 
QuestionTo Fill Datasource of my ComBobox with Paper Orientattion Enumeration Pin
mikobi2-Sep-08 19:49
mikobi2-Sep-08 19:49 
QuestionControl outside the bounds of a form Pin
landon832-Sep-08 14:44
landon832-Sep-08 14:44 
AnswerRe: Control outside the bounds of a form Pin
Wendelius3-Sep-08 6:52
mentorWendelius3-Sep-08 6:52 
GeneralRe: Control outside the bounds of a form Pin
landon833-Sep-08 12:19
landon833-Sep-08 12:19 
GeneralRe: Control outside the bounds of a form Pin
Wendelius4-Sep-08 8:09
mentorWendelius4-Sep-08 8:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.