Click here to Skip to main content
15,887,436 members
Home / Discussions / Windows Forms
   

Windows Forms

 
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 
Questionstart win app in remote machine Pin
balu123451-Sep-08 19:33
balu123451-Sep-08 19:33 
AnswerRe: start win app in remote machine Pin
Dave Kreskowiak2-Sep-08 10:29
mveDave Kreskowiak2-Sep-08 10:29 
GeneralRe: start win app in remote machine Pin
Paul Conrad2-Sep-08 18:48
professionalPaul Conrad2-Sep-08 18:48 
AnswerRe: start win app in remote machine Pin
Bassam Saoud2-Sep-08 10:50
Bassam Saoud2-Sep-08 10:50 
GeneralRe: start win app in remote machine Pin
Dave Kreskowiak2-Sep-08 14:54
mveDave Kreskowiak2-Sep-08 14:54 
AnswerRe: start win app in remote machine Pin
mbams18-Aug-09 23:51
mbams18-Aug-09 23:51 
QuestionHow can i include animations in GUI Pin
AhsanShah2211-Sep-08 17:09
AhsanShah2211-Sep-08 17:09 
AnswerRe: How can i include animations in GUI Pin
curtisk2-Sep-08 3:58
curtisk2-Sep-08 3:58 

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.