84. How can I change the tooltip's border using your EBN files with a different color
exscrollbar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exToolTipAppearance,0x100ffa0);
exscrollbar1.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" +
"";
exscrollbar1.Value = 43;

83. Can I change the color for the control's border
exscrollbar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exscrollbar1.Appearance = (exontrol.EXSCROLLBARLib.AppearanceEnum)0x10000f8 | exontrol.EXSCROLLBARLib.AppearanceEnum.Flat | exontrol.EXSCROLLBARLib.AppearanceEnum.Sunken | exontrol.EXSCROLLBARLib.AppearanceEnum.Etched;

82. How do I change the control's border, using your EBN files
exscrollbar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exscrollbar1.Appearance = (exontrol.EXSCROLLBARLib.AppearanceEnum)0x1000000;

81. How can I change the visual appearance of the right button usign your EBN files
exscrollbar1.Mode = exontrol.EXSCROLLBARLib.ModeEnum.exHorizontal;
exscrollbar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exscrollbar1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
exscrollbar1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn");
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exHSRight,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exHSRightP,0x2000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exHSRightD,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exHSRightH,0x3000000);

80. How can I change the visual appearance of the thumb usign your EBN files
exscrollbar1.Mode = exontrol.EXSCROLLBARLib.ModeEnum.exHorizontal;
exscrollbar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exscrollbar1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
exscrollbar1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn");
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exHSThumb,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exHSThumbP,0x2000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exHSThumbD,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exHSThumbH,0x3000000);

79. How can I change the visual appearance of the left button usign your EBN files
exscrollbar1.Mode = exontrol.EXSCROLLBARLib.ModeEnum.exHorizontal;
exscrollbar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exscrollbar1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
exscrollbar1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn");
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exHSLeft,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exHSLeftP,0x2000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exHSLeftD,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exHSLeftH,0x3000000);

78. How can I change the visual appearance for all buttons usign your EBN files
exscrollbar1.Mode = exontrol.EXSCROLLBARLib.ModeEnum.exHorizontal;
exscrollbar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exscrollbar1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
exscrollbar1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn");
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exSBtn,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exSBtnP,0x2000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exSBtnD,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exSBtnH,0x3000000);

77. How can I change the visual appearance of the down button usign your EBN files
exscrollbar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exscrollbar1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
exscrollbar1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn");
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exVSDown,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exVSDownP,0x2000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exVSDownD,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exVSDownH,0x3000000);

76. How can I change the visual appearance of the thumb usign your EBN files
exscrollbar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exscrollbar1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
exscrollbar1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn");
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exVSThumb,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exVSThumbP,0x2000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exVSThumbD,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exVSThumbH,0x3000000);

75. How can I change the visual appearance of the up button usign your EBN files
exscrollbar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exscrollbar1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
exscrollbar1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn");
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exVSUp,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exVSUpP,0x2000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exVSUpD,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exVSUpH,0x3000000);

74. How can I change the visual appearance for all buttons usign your EBN files
exscrollbar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exscrollbar1.VisualAppearance.Add(2,"c:\\exontrol\\images\\pushed.ebn");
exscrollbar1.VisualAppearance.Add(3,"c:\\exontrol\\images\\hot.ebn");
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exSBtn,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exSBtnP,0x2000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exSBtnD,0x1000000);
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exSBtnH,0x3000000);

73. Can I indent the caption in the button or part
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>0</img>thumb indented by 20 pixels and moved up by 5 pixels");
exscrollbar1.set_CaptionAlignment(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,exontrol.EXSCROLLBARLib.AlignmentEnum.LeftAlignment);
exscrollbar1.set_CaptionIndentX(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,20);
exscrollbar1.set_CaptionIndentY(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,-5);

72. Can I indent the caption in the button or part
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>0</img>thumb indented by 20 pixels");
exscrollbar1.set_CaptionAlignment(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,exontrol.EXSCROLLBARLib.AlignmentEnum.LeftAlignment);
exscrollbar1.set_CaptionIndentX(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,20);

71. Can i specify to ignore the large change value when getting the maximum value
exscrollbar1.IgnoreLargeChange = true;

70. Is there any way to specify the order of the buttons/parts
exscrollbar1.OrderParts = "l,r,t";
exscrollbar1.Value = 15;

69. Does your control support owner draw feature
exscrollbar1.set_OwnerDrawPart(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,true);

68. Can I assing any extra data to a button or part of the control
exscrollbar1.set_UserData(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"This is just some extra data assigned to the control's thumb");

67. How can I specify the size of the thumb
exscrollbar1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif");
exscrollbar1.set_HTMLPicture("p2","c:\\exontrol\\images\\auction.gif");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>p1</img> thumb <img>p2</img>");
exscrollbar1.ThumbSize = 48;

66. Is there any property to disable the up or down button, as a disable when there is no scroll
exscrollbar1.DisableNoScroll = true;

65. Is there any property to disable the up or down button, so user can't click it
exscrollbar1.set_EnablePart(exontrol.EXSCROLLBARLib.PartEnum.exRightBPart,false);

64. Is there any property to disable the up or down button, so user can't click it
exscrollbar1.DisableNoScroll = true;

63. Can I change the tooltip's border using your EBN files
exscrollbar1.VisualAppearance.Add(1,"c:\\exontrol\\images\\normal.ebn");
exscrollbar1.set_Background32(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exToolTipAppearance,0x1000000);
exscrollbar1.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" +
"";
exscrollbar1.Value = 43;

62. Can I change the tooltip's background color
exscrollbar1.ToolTipText = "This is <bgcolor=FF0000>just a text</bgcolor> that's displayed when the user clicks and drags t" +
"he thumb to a new position";
exscrollbar1.Value = 43;

61. Can I change the tooltip's background color
exscrollbar1.set_Background(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exToolTipBackColor,Color.FromArgb(0,0,0));
exscrollbar1.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" +
"";
exscrollbar1.Value = 43;

60. Can I change the tooltip's foreground color
exscrollbar1.ToolTipText = "This is <fgcolor=FF0000>just a text</fgcolor> that's displayed when the user clicks and drags t" +
"he thumb to a new position";
exscrollbar1.Value = 43;

59. Can I change the tooltip's foreground color
exscrollbar1.set_Background(exontrol.EXSCROLLBARLib.BackgroundPartEnum.exToolTipForeColor,Color.FromArgb(0,0,0));
exscrollbar1.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" +
"";
exscrollbar1.Value = 43;

58. Can I change the tooltip's width
exscrollbar1.BeginUpdate();
exscrollbar1.ToolTipWidth = 256;
exscrollbar1.ToolTipText = "This is <font Tahoma;12>just a text with a different font</font> that's displayed when the user" +
" clicks and drags the thumb to a new position";
exscrollbar1.Value = 43;
exscrollbar1.EndUpdate();

57. Can I change the tooltip's font
exscrollbar1.BeginUpdate();
exscrollbar1.ToolTipTitle = "Title";
exscrollbar1.ToolTipText = "This is <font Tahoma;12>just a text with a different font</font> that's displayed when the user" +
" clicks and drags the thumb to a new position";
exscrollbar1.Value = 43;
exscrollbar1.EndUpdate();

56. Can I change the tooltip's font
exscrollbar1.BeginUpdate();
stdole.IFontDisp f = new stdole.StdFont();
	f.Name = "Tahoma";
	f.Size = 12;
exscrollbar1.ToolTipFont = (f as stdole.IFontDisp);
exscrollbar1.ToolTipTitle = "Title";
exscrollbar1.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" +
"";
exscrollbar1.Value = 43;
exscrollbar1.EndUpdate();

55. Can I display a tooltip when user clicks the thumb and drags it to a new position
exscrollbar1.ToolTipTitle = "Title";
exscrollbar1.ToolTipText = "This is just a text that's displayed when the user clicks and drags the thumb to a new position" +
"";
exscrollbar1.Value = 43;

54. Is there any function to specify the size/width of the buttons
exscrollbar1.Mode = exontrol.EXSCROLLBARLib.ModeEnum.exHorizontal;
exscrollbar1.BtnWidth = 32;

53. Is there any function to specify the size/height of the buttons
exscrollbar1.BtnHeight = 32;

52. How do scroll to a specified position
exscrollbar1.Value = 10;

51. How do scroll to a specified position
exscrollbar1.Scroll(exontrol.EXSCROLLBARLib.ScrollEnum.exScrollToPosition,10);

50. How do simulate clicking the down button
exscrollbar1.Scroll(exontrol.EXSCROLLBARLib.ScrollEnum.exScrollRight,0);

49. I am using your control in a C++ application, and I would preffer handle messages instead events
exscrollbar1.SendMessage = true;

48. How can I get the value from the cursor
int var_ValueFromPoint = exscrollbar1.get_ValueFromPoint(-1,-1);

47. Is there any function to identify the part from the cursor
exontrol.EXSCROLLBARLib.PartEnum var_PartFromPoint = exscrollbar1.get_PartFromPoint(-1,-1);

46. Is there any option to specify the value to be added or subtracted when user presses the contro's background
exscrollbar1.LargeChange = 20;

45. Is there any option to specify the value to be added or subtracted when user presses the up or down button
exscrollbar1.SmallChange = 5;

44. How do I specify the maxmimum value in the control
exscrollbar1.Maximum = 95;
exscrollbar1.Value = 90;

43. How do I specify the minimum value in the control
exscrollbar1.Minimum = 5;
exscrollbar1.Value = 7;

42. How do I change control's position
exscrollbar1.Value = 43;

41. How do I change the position of the thumb
exscrollbar1.Value = 43;

40. How do I enable or disable a button or a part of the control
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exLeftB1Part,true);
exscrollbar1.set_EnablePart(exontrol.EXSCROLLBARLib.PartEnum.exLeftB1Part,false);
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exLeftB1Part,"<img>0</img><fgcolor=808080>extra button</fgcolor>");

39. How do show or hide buttons in the control
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exLeftB1Part,true);
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exLeftB1Part,"<img>0</img>extra button");
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exRightB6Part,true);
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exRightB6Part,"<img>0</img>extra button");
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exRightB5Part,true);
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exRightB5Part,"<img>0</img>extra button");

38. How do I arrange the control horizontally
exscrollbar1.Mode = exontrol.EXSCROLLBARLib.ModeEnum.exHorizontal;

37. How do I prevent painting the control when I perform several changes
exscrollbar1.BeginUpdate();
exscrollbar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" +
"/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" +
"/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" +
"x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exscrollbar1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif");
exscrollbar1.set_HTMLPicture("p2","c:\\exontrol\\images\\auction.gif");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>p1</img> thumb <img>p2</img> ... <img>1</img> icon");
exscrollbar1.ThumbSize = 48;
exscrollbar1.EndUpdate();

36. How do I add icons
exscrollbar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" +
"/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" +
"/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" +
"x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>1</img>thumb");

35. How do I change the caption for the extra button I added
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exLeftB1Part,true);
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exLeftB1Part,"<img>0</img>extra button");

34. How can I align the caption to the right
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>0</img>thumb right");
exscrollbar1.set_CaptionAlignment(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,exontrol.EXSCROLLBARLib.AlignmentEnum.RightAlignment);

33. How can I align the caption to the left
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>0</img> thumb left");
exscrollbar1.set_CaptionAlignment(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,exontrol.EXSCROLLBARLib.AlignmentEnum.LeftAlignment);

32. How can show the caption using a different font
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exLowerBackPart,"<img>0</img><font Tahoma;12>upper</font> part");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exUpperBackPart,"<img>0</img><font ;4>lower</font> part");
exscrollbar1.Value = 45;

31. Is there any option to display icons or pictures in the parts of the control
exscrollbar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" +
"/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" +
"/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" +
"x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exscrollbar1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif");
exscrollbar1.set_HTMLPicture("p2","c:\\exontrol\\images\\auction.gif");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>p1</img> thumb <img>p2</img> ... <img>1</img> icon");
exscrollbar1.ThumbSize = 48;

30. Is there any option to display icons or pictures in the parts of the control
exscrollbar1.set_HTMLPicture("p1","c:\\exontrol\\images\\zipdisk.gif");
exscrollbar1.set_HTMLPicture("p2","c:\\exontrol\\images\\auction.gif");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>p1</img> thumb <img>p2</img>");
exscrollbar1.ThumbSize = 48;

29. Is there any option to display icons or pictures in the parts of the control
exscrollbar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" +
"/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" +
"/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" +
"x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>1</img> thumb <img>2</img>");

28. Is there any option to display icons or pictures in the parts of the control
exscrollbar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" +
"/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" +
"/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" +
"x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>1:4</img><img>1:4</img><img>1:4</img><img>1</img>thumb");

27. Is there any option to display icons or pictures in the parts of the control
exscrollbar1.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0" +
"/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1" +
"/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qO" +
"x3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" +
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>1</img>thumb");

26. How can paint the caption using multiple lines
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>0</img>line1<br>line2");

25. How can change the background color for a portion of text
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exLowerBackPart,"<img>0</img><bgcolor=FF0000><fgcolor=0000FF>upper</fgcolor></bgcolor> part");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exUpperBackPart,"<img>0</img><bgcolor=0000FF><fgcolor=FF0000>upper</fgcolor></bgcolor> part");
exscrollbar1.Value = 45;

24. How can change the foreground color for a portion of text
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exLowerBackPart,"<img>0</img><fgcolor=FF0000>upper</fgcolor> part");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exUpperBackPart,"<img>0</img><fgcolor=0000FF>upper</fgcolor> part");
exscrollbar1.Value = 45;

23. How can show the caption as strikeout
stdole.IFontDisp f = new stdole.StdFont();
	f.Name = "Tahoma";
	f.Size = 12;
exscrollbar1.Font = (f as stdole.IFontDisp);
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exLowerBackPart,"<img>0</img><s>upper</s> part");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exUpperBackPart,"<img>0</img><s>lower</s> part");
exscrollbar1.Value = 45;

22. How can underline a portion of the caption
stdole.IFontDisp f = new stdole.StdFont();
	f.Name = "Tahoma";
	f.Size = 12;
exscrollbar1.Font = (f as stdole.IFontDisp);
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exLowerBackPart,"<img>0</img><u>upper</u> part");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exUpperBackPart,"<img>0</img><u>lower</u> part");
exscrollbar1.Value = 45;

21. How can I draw in italic a portion of the caption
stdole.IFontDisp f = new stdole.StdFont();
	f.Name = "Tahoma";
	f.Size = 12;
exscrollbar1.Font = (f as stdole.IFontDisp);
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exLowerBackPart,"<img>0</img><i>upper</i> part");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exUpperBackPart,"<img>0</img><i>lower</i> part");
exscrollbar1.Value = 45;

20. How can I draw in bold a portion of the caption
stdole.IFontDisp f = new stdole.StdFont();
	f.Name = "Tahoma";
	f.Size = 12;
exscrollbar1.Font = (f as stdole.IFontDisp);
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exLowerBackPart,"<img>0</img><b>upper</b> part");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exUpperBackPart,"<img>0</img><b>lower</b> part");
exscrollbar1.Value = 45;

19. How can I put a text on the background part in the lower or upper , horizontally
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exLowerBackPart,"<img>0</img>upper");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exUpperBackPart,"<img>0</img>lower");
exscrollbar1.Value = 45;

18. How can I put a text on the background part in the lower or upper side
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exLowerBackPart,"upper");
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exUpperBackPart,"lower");
exscrollbar1.Value = 45;

17. How can I put a text on the background part, horizontally
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,"<img>0</img>background");

16. How can I put a text on the background part
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,"background");

15. How can I put a text on the thumb, horizontally
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>0</img>thumb");

14. How can I put a text on the thumb
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"thumb");

13. How can I disable the control
exscrollbar1.Enabled = false;

12. How do I put a picture on the center of the control
exscrollbar1.Picture = (exscrollbar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exscrollbar1.PictureDisplay = exontrol.EXSCROLLBARLib.PictureDisplayEnum.MiddleCenter;
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,false);
exscrollbar1.BackColor32 = 0x80000004;

11. How do I resize/stretch a picture on the control's background
exscrollbar1.Picture = (exscrollbar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exscrollbar1.PictureDisplay = exontrol.EXSCROLLBARLib.PictureDisplayEnum.Stretch;
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,false);
exscrollbar1.BackColor32 = 0x80000004;

10. How do I put a picture on the control's center right bottom side
exscrollbar1.Picture = (exscrollbar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exscrollbar1.PictureDisplay = exontrol.EXSCROLLBARLib.PictureDisplayEnum.LowerRight;
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,false);
exscrollbar1.BackColor32 = 0x80000004;

9. How do I put a picture on the control's center left bottom side
exscrollbar1.Picture = (exscrollbar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exscrollbar1.PictureDisplay = exontrol.EXSCROLLBARLib.PictureDisplayEnum.LowerLeft;
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,false);
exscrollbar1.BackColor32 = 0x80000004;

8. How do I put a picture on the control's center top side
exscrollbar1.Picture = (exscrollbar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exscrollbar1.PictureDisplay = exontrol.EXSCROLLBARLib.PictureDisplayEnum.UpperCenter;
exscrollbar1.Value = 50;
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,false);
exscrollbar1.BackColor32 = 0x80000004;

7. How do I put a picture on the control's right top corner
exscrollbar1.Picture = (exscrollbar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exscrollbar1.PictureDisplay = exontrol.EXSCROLLBARLib.PictureDisplayEnum.UpperRight;
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,false);
exscrollbar1.BackColor32 = 0x80000004;
exscrollbar1.Value = 50;

6. How do I put a picture on the control's left top corner
exscrollbar1.Picture = (exscrollbar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exscrollbar1.PictureDisplay = exontrol.EXSCROLLBARLib.PictureDisplayEnum.UpperLeft;
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,false);
exscrollbar1.BackColor32 = 0x80000004;
exscrollbar1.Value = 50;

5. How do I put a picture on the control's background
exscrollbar1.Picture = (exscrollbar1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)") as stdole.IPictureDisp);
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,false);
exscrollbar1.BackColor32 = 0x80000004;

4. How can I change the size of control's font
exscrollbar1.Font.Size = 12;
exscrollbar1.ForeColor = Color.FromArgb(255,0,0);
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>0</img>thumb");

3. How do I change the control's font
exscrollbar1.Font.Name = "Tahoma";
exscrollbar1.ForeColor = Color.FromArgb(255,0,0);
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>0</img>thumb");

2. How can I change the control's foreground color
exscrollbar1.ForeColor = Color.FromArgb(255,0,0);
exscrollbar1.set_Caption(exontrol.EXSCROLLBARLib.PartEnum.exThumbPart,"<img>0</img>thumb");

1. How can I change the control's background color
exscrollbar1.BackColor = Color.FromArgb(0,255,0);
exscrollbar1.set_VisiblePart(exontrol.EXSCROLLBARLib.PartEnum.exBackgroundPart,false);