Click here to Skip to main content
15,913,313 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Checking for .NET before running Pin
Mike Dimmick10-Oct-03 3:05
Mike Dimmick10-Oct-03 3:05 
GeneralRe: Checking for .NET before running Pin
Dave Kreskowiak10-Oct-03 5:03
mveDave Kreskowiak10-Oct-03 5:03 
GeneralRe: Checking for .NET before running Pin
Carl Mercier15-Oct-03 2:35
Carl Mercier15-Oct-03 2:35 
GeneralFormat datagrid Pin
ljCharlie8-Oct-03 10:30
sussljCharlie8-Oct-03 10:30 
GeneralFinding Server Name Pin
winterton8-Oct-03 5:40
winterton8-Oct-03 5:40 
GeneralRe: Finding Server Name Pin
parths8-Oct-03 18:34
parths8-Oct-03 18:34 
GeneralNewb question about controls Pin
PaulStat8-Oct-03 2:12
PaulStat8-Oct-03 2:12 
GeneralRe: Newb question about controls Pin
Jim Taylor10-Oct-03 0:20
Jim Taylor10-Oct-03 0:20 
Presumably the spin box control raises an event such as SpinBox1.PositionChanged or something similar (Check the controls documentation). You need an event handler for this in pseudocode it is something like this:
<br />
    Private Sub SpinBox1_PositionChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SpinBox1.PositionChanged<br />
     'Code to handle event here.<br />
    End Sub<br />

The event handler should pass data back in the Event args that you can use to set the attribute of the ScrollableControl or you could use the SpinBox controls property to set the value:
<br />
    Private Sub SpinBox1_PositionChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SpinBox1.PositionChanged<br />
     ScrollableControl.MyAttribute = e.Position<br />
     'Or<br />
     ScrollableControl.MyAttribute = SpinBox1.Position<br />
    End Sub<br />

If you are using VS.Net intellisense should point you in the right direction.

What are the controls that you are using and what are the properties, events and methods that you wish to change on them?

Jim
GeneralVB.NET CHECKEDLISTBOX AND TEXTBOX TOGETHER Pin
Jayeshp8-Oct-03 0:42
Jayeshp8-Oct-03 0:42 
GeneralManaging Menus Pin
Member 6244147-Oct-03 22:47
Member 6244147-Oct-03 22:47 
GeneralRe: Managing Menus Pin
Zlosk8-Oct-03 12:02
Zlosk8-Oct-03 12:02 
GeneralRetrieving ColorSpace from an image Pin
Andy Leeds7-Oct-03 9:11
Andy Leeds7-Oct-03 9:11 
GeneralGetting Printer Information Via Network Pin
fun_jay7-Oct-03 8:58
fun_jay7-Oct-03 8:58 
GeneralRe: Getting Printer Information Via Network Pin
Dave Kreskowiak7-Oct-03 18:26
mveDave Kreskowiak7-Oct-03 18:26 
GeneralRe: Getting Printer Information Via Network Pin
Anonymous7-Oct-03 22:41
Anonymous7-Oct-03 22:41 
GeneralRe: Getting Printer Information Via Network Pin
Anonymous9-Oct-03 10:40
Anonymous9-Oct-03 10:40 
GeneralRe: Getting Printer Information Via Network Pin
Duncan Edwards Jones10-Oct-03 2:59
professionalDuncan Edwards Jones10-Oct-03 2:59 
GeneralRe: Getting Printer Information Via Network Pin
Dave Kreskowiak10-Oct-03 4:53
mveDave Kreskowiak10-Oct-03 4:53 
GeneralFile still in use after winzip Pin
ProffK7-Oct-03 4:33
ProffK7-Oct-03 4:33 
GeneralComputer Locked Pin
Dave Compton7-Oct-03 2:14
Dave Compton7-Oct-03 2:14 
Generalimpl. context sensitive help Pin
Member 2317106-Oct-03 23:36
Member 2317106-Oct-03 23:36 
Generalconnecting textbox with databasefield Pin
shubha rahul aasuri6-Oct-03 19:46
shubha rahul aasuri6-Oct-03 19:46 
Generalword automation, autodate Pin
pnpfriend6-Oct-03 3:07
pnpfriend6-Oct-03 3:07 
QuestionHow do I pick a colour on PictureBox and make it transparent Pin
Jim Taylor5-Oct-03 8:19
Jim Taylor5-Oct-03 8:19 
AnswerRe: How do I pick a colour on PictureBox and make it transparent Pin
J. Dunlap5-Oct-03 8:38
J. Dunlap5-Oct-03 8:38 

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.