Click here to Skip to main content
16,006,378 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: My ComboBox class events do not fire Pin
dptalt11-Oct-06 4:47
dptalt11-Oct-06 4:47 
GeneralRe: My ComboBox class events do not fire Pin
James Foxall11-Oct-06 4:54
James Foxall11-Oct-06 4:54 
QuestionData conversion Pin
Chira Chandra10-Oct-06 3:09
Chira Chandra10-Oct-06 3:09 
Questionregister class name in vb.net Pin
K edar V10-Oct-06 1:02
K edar V10-Oct-06 1:02 
AnswerRe: register class name in vb.net Pin
nlarson1118-Oct-06 9:50
nlarson1118-Oct-06 9:50 
Questiondatabase is installed or not Pin
amaneet10-Oct-06 0:36
amaneet10-Oct-06 0:36 
Questionbyval and byref Pin
amaneet10-Oct-06 0:21
amaneet10-Oct-06 0:21 
AnswerRe: byval and byref Pin
Dave Kreskowiak10-Oct-06 5:23
mveDave Kreskowiak10-Oct-06 5:23 
ByVal passes an argument to a method, well, by Value. It passes the actual value of the argument to the method you're calling by pushing that value on the call stack. When the method gets control, it pops the values off the stack and uses them.

ByRef passes an argument by pointer. Instead of passing the value, it passes an address to the value stored in memory somewhere. The addess is pushed onto the stack and passed to the method, which pops that address off the call stack, and now knows where in memory to find the value.

You can find out more here[^].


Dave Kreskowiak
Microsoft MVP - Visual Basic


QuestionIE popup menu Pin
m_mor10-Oct-06 0:05
m_mor10-Oct-06 0:05 
AnswerRe: IE popup menu Pin
UltraCoder10-Oct-06 8:42
UltraCoder10-Oct-06 8:42 
QuestionComm B/W Layers Pin
ravimorampudi10-Oct-06 0:02
ravimorampudi10-Oct-06 0:02 
AnswerRe: Comm B/W Layers Pin
Dave Kreskowiak10-Oct-06 5:20
mveDave Kreskowiak10-Oct-06 5:20 
QuestionStored Procedure Pin
ravimorampudi9-Oct-06 23:58
ravimorampudi9-Oct-06 23:58 
AnswerRe: Stored Procedure Pin
hrodberaht10-Oct-06 0:23
hrodberaht10-Oct-06 0:23 
GeneralRe: Stored Procedure Pin
ravimorampudi10-Oct-06 0:28
ravimorampudi10-Oct-06 0:28 
GeneralRe: Stored Procedure Pin
hrodberaht10-Oct-06 0:40
hrodberaht10-Oct-06 0:40 
AnswerRe: Stored Procedure Pin
ravimorampudi10-Oct-06 0:24
ravimorampudi10-Oct-06 0:24 
QuestionDetermining Object Types Pin
hrodberaht9-Oct-06 23:52
hrodberaht9-Oct-06 23:52 
AnswerRe: Determining Object Types Pin
Dave Kreskowiak10-Oct-06 5:18
mveDave Kreskowiak10-Oct-06 5:18 
GeneralRe: Determining Object Types Pin
hrodberaht10-Oct-06 5:39
hrodberaht10-Oct-06 5:39 
GeneralRe: Determining Object Types Pin
Dave Kreskowiak10-Oct-06 8:00
mveDave Kreskowiak10-Oct-06 8:00 
GeneralRe: Determining Object Types Pin
hrodberaht10-Oct-06 21:27
hrodberaht10-Oct-06 21:27 
GeneralRe: Determining Object Types Pin
Dave Kreskowiak11-Oct-06 1:54
mveDave Kreskowiak11-Oct-06 1:54 
GeneralRe: Determining Object Types Pin
hrodberaht11-Oct-06 2:09
hrodberaht11-Oct-06 2:09 
Questionhow can imake this functions Pin
nbulut9-Oct-06 22:41
nbulut9-Oct-06 22:41 

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.