Click here to Skip to main content
15,891,769 members
Home / Discussions / C#
   

C#

 
GeneralRe: Static constructor Pin
Ashfield30-Jul-09 8:28
Ashfield30-Jul-09 8:28 
AnswerRe: Static constructor PinPopular
DaveyM6930-Jul-09 1:33
professionalDaveyM6930-Jul-09 1:33 
AnswerRe: Static constructor Pin
Daniel Grunwald30-Jul-09 1:49
Daniel Grunwald30-Jul-09 1:49 
GeneralRe: Static constructor Pin
erfgerfgerger30-Jul-09 2:01
erfgerfgerger30-Jul-09 2:01 
GeneralRe: Static constructor Pin
Daniel Grunwald30-Jul-09 2:04
Daniel Grunwald30-Jul-09 2:04 
GeneralRe: Static constructor Pin
erfgerfgerger30-Jul-09 2:07
erfgerfgerger30-Jul-09 2:07 
GeneralRe: Static constructor Pin
PIEBALDconsult30-Jul-09 4:28
mvePIEBALDconsult30-Jul-09 4:28 
QuestionExtreme right click on the scollbar any event? Pin
spalanivel30-Jul-09 0:14
spalanivel30-Jul-09 0:14 
Hi,

Previously from the SCROLL EVENT I checked with the condition like;

bool scrollLeft = false ;
MINVALUE = 0;
MAXVALUE =10;

private void hScrollBar1_Scroll(object sender, System.Windows.Forms.ScrollEventArgs e)
{

scrollLeft = e.Type.ToString ().ToLower () == "largeincrement" ? false : true;

}
private void hScrollBar1_ValueChanged(object sender, System.EventArgs e)
{
MINVALUE = scrollLeft == false ? MINVALUE + 10 : MINVALUE - 10;
MAXVALUE = scrollLeft == false ? MAXVALUE + 10 : MAXVALUE - 10;

}
And in the Paint function I am doing all the logics...

Suppose for <---------------------------------> Horizontal scroll bar if we click extreme right end > then the value should change.. In the value change event i am checking with the scrollLeft variable. it will move always forward not backward...

I am having the panel and plotting graph in the panel and below i am placing horizontal scroll bar...

How todo by clicking the right end of scrollbar any event?

Reg,
Subbu
AnswerRe: Extreme right click on the scollbar any event? Pin
Alan N30-Jul-09 3:15
Alan N30-Jul-09 3:15 
GeneralRe: Extreme right click on the scollbar any event? Pin
spalanivel30-Jul-09 18:52
spalanivel30-Jul-09 18:52 
QuestionChecking file longer than 1 hour Pin
Mninawa29-Jul-09 23:45
Mninawa29-Jul-09 23:45 
AnswerRe: Checking file longer than 1 hour Pin
Moreno Airoldi29-Jul-09 23:52
Moreno Airoldi29-Jul-09 23:52 
AnswerRe: Checking file longer than 1 hour [modified] Pin
Mirko198030-Jul-09 0:04
Mirko198030-Jul-09 0:04 
AnswerRe: Checking file longer than 1 hour Pin
Luc Pattyn30-Jul-09 0:15
sitebuilderLuc Pattyn30-Jul-09 0:15 
Questionrun application without install dotnet Pin
mjawadkhatri29-Jul-09 23:29
mjawadkhatri29-Jul-09 23:29 
AnswerRe: run application without install dotnet Pin
musefan29-Jul-09 23:46
musefan29-Jul-09 23:46 
GeneralRe: run application without install dotnet Pin
mjawadkhatri29-Jul-09 23:52
mjawadkhatri29-Jul-09 23:52 
GeneralRe: run application without install dotnet Pin
Tom Deketelaere30-Jul-09 0:08
professionalTom Deketelaere30-Jul-09 0:08 
GeneralRe: run application without install dotnet Pin
Kevin McFarlane30-Jul-09 0:12
Kevin McFarlane30-Jul-09 0:12 
GeneralRe: run application without install dotnet Pin
Baeltazor30-Jul-09 18:52
Baeltazor30-Jul-09 18:52 
AnswerRe: run application without install dotnet Pin
Henry Minute30-Jul-09 4:01
Henry Minute30-Jul-09 4:01 
QuestionNested DataGridView Pin
Muammar©29-Jul-09 22:52
Muammar©29-Jul-09 22:52 
AnswerRe: Nested DataGridView Pin
Henry Minute30-Jul-09 3:58
Henry Minute30-Jul-09 3:58 
GeneralRe: Nested DataGridView Pin
Muammar©30-Jul-09 7:28
Muammar©30-Jul-09 7:28 
QuestionExcel app to C# winform Pin
Dimitris Nemtsov29-Jul-09 22:47
Dimitris Nemtsov29-Jul-09 22:47 

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.