Click here to Skip to main content
15,905,776 members
Home / Discussions / C#
   

C#

 
GeneralRe: Visual C# question Pin
leppie7-Jun-03 13:02
leppie7-Jun-03 13:02 
GeneralRe: Visual C# question Pin
dratti7-Jun-03 22:21
dratti7-Jun-03 22:21 
GeneralRe: Visual C# question Pin
Iulian Serban7-Jun-03 22:22
Iulian Serban7-Jun-03 22:22 
GeneralRe: .NET Framework Initialization Error Pin
James T. Johnson7-Jun-03 15:07
James T. Johnson7-Jun-03 15:07 
GeneralRe: .NET Framework Initialization Error Pin
shaunAustin9-Jun-03 0:48
shaunAustin9-Jun-03 0:48 
GeneralRe: .NET Framework Initialization Error Pin
shaunAustin9-Jun-03 9:10
shaunAustin9-Jun-03 9:10 
GeneralScrollBar.LargeChange Pin
Iulian Serban7-Jun-03 3:04
Iulian Serban7-Jun-03 3:04 
GeneralRe: ScrollBar.LargeChange Pin
James T. Johnson7-Jun-03 15:15
James T. Johnson7-Jun-03 15:15 
Iulian Serban wrote:
(CilentRectangle.Width/WholeWidth)

This is likely to yield 0 unless the WholeWidth is less than ClientRectangle.Width because you are performing integer division. The correct way is to convert the three values to floats, then convert back to an int to assign to the LargeChange property.

hScrollBar.LargeChange = (int) ((float) hScrollbar.Maximum) * (
  ((float) ClientRectangle.Width) / ((float) WholeWidth) 
);
HTH,

James

"I despise the city and much prefer being where a traffic jam means a line-up at McDonald's"
Me when telling a friend why I wouldn't want to live with him

GeneralRe: ScrollBar.LargeChange Pin
Iulian Serban7-Jun-03 22:12
Iulian Serban7-Jun-03 22:12 
GeneralRe: ScrollBar.LargeChange Pin
James T. Johnson8-Jun-03 4:16
James T. Johnson8-Jun-03 4:16 
GeneralRe: ScrollBar.LargeChange Pin
Iulian Serban8-Jun-03 4:34
Iulian Serban8-Jun-03 4:34 
QuestionMulti line in Label?? Pin
Weiye Chen7-Jun-03 2:56
Weiye Chen7-Jun-03 2:56 
AnswerRe: Multi line in Label?? Pin
Jim Stewart7-Jun-03 7:41
Jim Stewart7-Jun-03 7:41 
GeneralRe: Multi line in Label?? Pin
dynamic7-Jun-03 12:52
dynamic7-Jun-03 12:52 
GeneralRe: Multi line in Label?? Pin
Jim Stewart7-Jun-03 14:36
Jim Stewart7-Jun-03 14:36 
GeneralRe: Multi line in Label?? Pin
Weiye Chen7-Jun-03 18:21
Weiye Chen7-Jun-03 18:21 
General32byte Char[] Unicode array conversion Pin
stonee747-Jun-03 1:00
stonee747-Jun-03 1:00 
GeneralRe: 32byte Char[] Unicode array conversion Pin
leppie7-Jun-03 2:49
leppie7-Jun-03 2:49 
GeneralRe: 32byte Char[] Unicode array conversion Pin
Laimis7-Jun-03 9:31
Laimis7-Jun-03 9:31 
GeneralRe: 32byte Char[] Unicode array conversion Pin
stonee747-Jun-03 22:53
stonee747-Jun-03 22:53 
GeneralTricky One.. Pin
Rocky Moore7-Jun-03 0:53
Rocky Moore7-Jun-03 0:53 
GeneralRe: Tricky One.. Pin
A.Wegierski7-Jun-03 5:27
A.Wegierski7-Jun-03 5:27 
GeneralRe: Tricky One.. Pin
Rocky Moore7-Jun-03 13:37
Rocky Moore7-Jun-03 13:37 
GeneralRe: Tricky One.. Pin
jspano7-Jun-03 17:04
jspano7-Jun-03 17:04 
GeneralHelp Creation software Pin
Andrew Torrance6-Jun-03 23:15
Andrew Torrance6-Jun-03 23:15 

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.