Click here to Skip to main content
15,896,417 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Finding the length of the second dimension of an array in Visual Basic 6.0 Pin
Dave Kreskowiak31-May-08 2:48
mveDave Kreskowiak31-May-08 2:48 
QuestionActivex Web Control Pin
Member 426163330-May-08 4:00
Member 426163330-May-08 4:00 
AnswerRe: Activex Web Control Pin
Christian Graus31-May-08 1:24
protectorChristian Graus31-May-08 1:24 
Questiondatagridview combobox column default value PinPopular
Mr Oizo30-May-08 3:50
Mr Oizo30-May-08 3:50 
AnswerRe: datagridview combobox column default value Pin
Mohammad Al Hoss30-May-08 4:30
Mohammad Al Hoss30-May-08 4:30 
QuestionHow could we open customize ribbon in Access 2007 development mode Pin
ayazhoda30-May-08 3:25
ayazhoda30-May-08 3:25 
QuestionProperties with parameters and databinding Pin
Kevin Brydon30-May-08 3:02
Kevin Brydon30-May-08 3:02 
AnswerRe: Properties with parameters and databinding Pin
Steven J Jowett30-May-08 4:15
Steven J Jowett30-May-08 4:15 
Have you tried defining the Property twice? One without a parameter and one with e.g.

Public ReadOnly Property Venues() As BSVenue()
Get
Return Venues(False)
End Get
End Property

Public ReadOnly Property Venues(ByVal forceupdate As Boolean) As BSVenue()
Get
If _venues Is Nothing Or forceupdate Then
_venues = BSVenue.GetVenuesByCourse(CourseID)
End If
Return _venues
End Get
End Property


Steve Jowett
-------------------------
It is offen dangerous to try and see someone else's point of view, without proper training. Douglas Adams (Mostly Harmless)

GeneralRe: Properties with parameters and databinding Pin
Kevin Brydon30-May-08 5:21
Kevin Brydon30-May-08 5:21 
QuestionUpgrade to VS 2005 problems Pin
Mohammad Al Hoss30-May-08 3:02
Mohammad Al Hoss30-May-08 3:02 
AnswerRe: Upgrade to VS 2005 problems Pin
Christian Graus31-May-08 1:25
protectorChristian Graus31-May-08 1:25 
QuestionRetrieve audio track informations Pin
Gaddonis30-May-08 1:45
professionalGaddonis30-May-08 1:45 
AnswerRe: Retrieve audio track informations Pin
jzonthemtn30-May-08 3:33
jzonthemtn30-May-08 3:33 
AnswerRe: Retrieve audio track informations Pin
Gaddonis3-Sep-08 1:55
professionalGaddonis3-Sep-08 1:55 
GeneralRe: Retrieve audio track informations Pin
jzonthemtn3-Sep-08 3:25
jzonthemtn3-Sep-08 3:25 
QuestionAccess Database Information Pin
KBou30-May-08 1:33
KBou30-May-08 1:33 
AnswerRe: Access Database Information Pin
jzonthemtn30-May-08 3:22
jzonthemtn30-May-08 3:22 
QuestionDisable Security Setting in outlook 2003 Add in using vb.net 2005 Pin
~Khatri Mitesh~30-May-08 1:28
~Khatri Mitesh~30-May-08 1:28 
AnswerRe: Disable Security Setting in outlook 2003 Add in using vb.net 2005 Pin
Dave Kreskowiak31-May-08 2:38
mveDave Kreskowiak31-May-08 2:38 
QuestionVB.NET, How to send a message from a Web site to "Cisco IP Phone" device Pin
small_candy29-May-08 22:45
small_candy29-May-08 22:45 
AnswerRe: VB.NET, How to send a message from a Web site to "Cisco IP Phone" device Pin
Steven J Jowett29-May-08 22:47
Steven J Jowett29-May-08 22:47 
GeneralRe: VB.NET, How to send a message from a Web site to "Cisco IP Phone" device Pin
small_candy1-Jun-08 16:45
small_candy1-Jun-08 16:45 
AnswerRe: VB.NET, How to send a message from a Web site to "Cisco IP Phone" device Pin
Vasudevan Deepak Kumar29-May-08 23:51
Vasudevan Deepak Kumar29-May-08 23:51 
GeneralRe: VB.NET, How to send a message from a Web site to "Cisco IP Phone" device Pin
small_candy1-Jun-08 16:48
small_candy1-Jun-08 16:48 
QuestionMessage Box just before creating print preview Pin
BooleanTrue29-May-08 22:17
professionalBooleanTrue29-May-08 22:17 

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.