Click here to Skip to main content
15,917,329 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Strip out invalid characters from xml files Pin
Guffa17-Aug-06 22:19
Guffa17-Aug-06 22:19 
AnswerRe: Strip out invalid characters from xml files Pin
Icharus18-Aug-06 8:05
Icharus18-Aug-06 8:05 
QuestionProgress Bar & ForeColor Pin
John Waclawski17-Aug-06 16:42
John Waclawski17-Aug-06 16:42 
AnswerRe: Progress Bar & ForeColor Pin
NGENEAR1118-Aug-06 16:32
NGENEAR1118-Aug-06 16:32 
AnswerRe: Progress Bar & ForeColor Pin
John Waclawski19-Aug-06 20:05
John Waclawski19-Aug-06 20:05 
QuestionProblem passing field from parent, to child form Pin
penguin500017-Aug-06 16:26
penguin500017-Aug-06 16:26 
AnswerRe: Problem passing field from parent, to child form Pin
Robotovich18-Aug-06 9:24
Robotovich18-Aug-06 9:24 
AnswerRe: Problem passing field from parent, to child form Pin
Scott Serl18-Aug-06 9:54
Scott Serl18-Aug-06 9:54 
Why not just pass in the value to the constructor of the form:
Me.frmCustomerContacts = New CustomerContacts(Me.CustomerID.Text)

On the chidl form, have a read-only property:
Private _customerID As String
Public ReadOnly Property CustomerID as String
Get
Return _customerID
End Get
End Property

Modify the constructor of the child form:
Public Sub New(ByVal CustomerID As String)
MyBase.New()

'This call is required by the Windows Form Designer.
InitializeComponent()

'Add any initialization after the InitializeComponent() call
_customerID = CustomerID
End Sub

QuestionGoogle search trouhh my app Pin
FeRtoll17-Aug-06 13:25
FeRtoll17-Aug-06 13:25 
AnswerRe: Google search trouhh my app Pin
Christian Graus17-Aug-06 14:08
protectorChristian Graus17-Aug-06 14:08 
GeneralRe: Google search trouhh my app Pin
FeRtoll17-Aug-06 14:23
FeRtoll17-Aug-06 14:23 
GeneralRe: Google search trouhh my app Pin
_mubashir17-Aug-06 21:10
_mubashir17-Aug-06 21:10 
GeneralRe: Google search trouhh my app Pin
FeRtoll18-Aug-06 13:41
FeRtoll18-Aug-06 13:41 
AnswerRe: Google search trouhh my app Pin
Coding C#18-Aug-06 2:05
Coding C#18-Aug-06 2:05 
GeneralRe: Google search trouhh my app Pin
FeRtoll18-Aug-06 13:40
FeRtoll18-Aug-06 13:40 
QuestionUsing the progress bar control to track database activities Pin
Robotovich17-Aug-06 6:42
Robotovich17-Aug-06 6:42 
AnswerRe: Using the progress bar control to track database activities Pin
Stephen McGuire17-Aug-06 8:50
Stephen McGuire17-Aug-06 8:50 
GeneralRe: Using the progress bar control to track database activities Pin
Robotovich18-Aug-06 9:19
Robotovich18-Aug-06 9:19 
GeneralRe: Using the progress bar control to track database activities [modified] Pin
Stephen McGuire18-Aug-06 9:42
Stephen McGuire18-Aug-06 9:42 
AnswerRe: Using the progress bar control to track database activities Pin
Christian Graus17-Aug-06 12:51
protectorChristian Graus17-Aug-06 12:51 
GeneralRe: Using the progress bar control to track database activities Pin
Robotovich18-Aug-06 9:20
Robotovich18-Aug-06 9:20 
QuestionWhat the theck am I missing: Filling tables Pin
cstrader23217-Aug-06 5:39
cstrader23217-Aug-06 5:39 
AnswerRe: What the theck am I missing: Filling tables Pin
Stephen McGuire17-Aug-06 8:52
Stephen McGuire17-Aug-06 8:52 
GeneralRe: What the theck am I missing: Filling tables Pin
cstrader23217-Aug-06 6:40
cstrader23217-Aug-06 6:40 
GeneralRe: What the theck am I missing: Filling tables Pin
eatwork17-Aug-06 10:47
eatwork17-Aug-06 10:47 

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.