Click here to Skip to main content
15,885,216 members
Home / Discussions / C#
   

C#

 
QuestionBrowser content not to visible to user intially for sometime? Pin
svt gdwl7-May-09 22:30
svt gdwl7-May-09 22:30 
QuestionHow to lock the msi setup for a specific period? Pin
svt gdwl7-May-09 22:20
svt gdwl7-May-09 22:20 
QuestionGPS/GSM application Pin
Nanyoe7-May-09 22:09
Nanyoe7-May-09 22:09 
Questionusing printer driver in vb,net Pin
tauras817-May-09 21:06
tauras817-May-09 21:06 
AnswerRe: using printer driver in vb,net Pin
Mycroft Holmes7-May-09 21:39
professionalMycroft Holmes7-May-09 21:39 
Questionc# Trackbar Arrowkeys bug Pin
VoNa197-May-09 20:32
VoNa197-May-09 20:32 
AnswerRe: c# Trackbar Arrowkeys bug Pin
Dave Kreskowiak8-May-09 1:11
mveDave Kreskowiak8-May-09 1:11 
GeneralRe: c# Trackbar Arrowkeys bug Pin
VoNa198-May-09 1:56
VoNa198-May-09 1:56 
Hi, thanks for the answer,
i've created my own class, but if the code is running, nothing happens, because
if i press arrow up or down, this.value will correct set, but the control self set's
the value too (so he made the opposite and the control value is allways the sameConfused | :confused: ) !!
Why ? i didnt call the base.OnKeyDown.


public class myTrackbar : TrackBar
{
protected override void OnKeyDown(KeyEventArgs e)
{
if(e.KeyCode == Keys.Up)
{
int delta = this.SmallChange;
this.Value += delta;
}
else if (e.KeyCode == Keys.Down)
{
int delta = this.SmallChange;
this.Value -= delta;
}
}
}
QuestionHow to get Data labels In charts using C# Pin
amitabha20077-May-09 20:11
amitabha20077-May-09 20:11 
QuestionVOIP Pin
imranliaqat7-May-09 20:10
imranliaqat7-May-09 20:10 
AnswerRe: VOIP Pin
Mycroft Holmes7-May-09 21:36
professionalMycroft Holmes7-May-09 21:36 
QuestionQuery to get number of tables Pin
arun_pk7-May-09 19:39
arun_pk7-May-09 19:39 
AnswerRe: Query to get number of tables Pin
Spunky Coder7-May-09 20:51
Spunky Coder7-May-09 20:51 
Questionpop up progress bar Pin
S K Y7-May-09 19:39
S K Y7-May-09 19:39 
AnswerRe: pop up progress bar Pin
N a v a n e e t h7-May-09 19:41
N a v a n e e t h7-May-09 19:41 
GeneralRe: pop up progress bar Pin
S K Y7-May-09 19:52
S K Y7-May-09 19:52 
GeneralRe: pop up progress bar Pin
Dave Kreskowiak8-May-09 1:00
mveDave Kreskowiak8-May-09 1:00 
Questionneed a print monitor component Pin
vijayatbics7-May-09 19:31
vijayatbics7-May-09 19:31 
AnswerRe: need a print monitor component Pin
OriginalGriff7-May-09 22:02
mveOriginalGriff7-May-09 22:02 
Questionlisten to a network printer? Pin
vijayatbics7-May-09 19:18
vijayatbics7-May-09 19:18 
AnswerRe: listen to a network printer? Pin
Spunky Coder7-May-09 20:53
Spunky Coder7-May-09 20:53 
AnswerRe: listen to a network printer? Pin
Dave Kreskowiak8-May-09 0:49
mveDave Kreskowiak8-May-09 0:49 
QuestionDirectoryInfo.GetDirectories() search patterns Pin
dybs7-May-09 18:22
dybs7-May-09 18:22 
AnswerRe: DirectoryInfo.GetDirectories() search patterns Pin
Dave Kreskowiak8-May-09 0:48
mveDave Kreskowiak8-May-09 0:48 
GeneralRe: DirectoryInfo.GetDirectories() search patterns Pin
dybs8-May-09 3:00
dybs8-May-09 3:00 

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.