G
Guest
Hi
I need to debug a call to a function and so put a breakpoint there:
Client.UPDATE_Client( _
errMsg, _
CInt(lblClientID.Text), _
txtInitials.Text, _
txtSurname.Text, _
Title, _
txtFirstName.Text, _
cmbTelHomeCode.Text, _
txtTelHomeNo.Text, _
cmbTelBusCode.Text, _
txtTelBusNo.Text, _
cmbFaxCode.Text, _
txtFaxNo.Text, _
cmbCellCode.Text, _
txtCellNo.Text, _
Language, _
txtEmail.Text, _
txtIDNo.Text, _
txtPassportNo.Text, _
DOB, _
cmbGender.Text, _
cmbMarital.Text, _
txtPhysAdrBuilding.Text, _
txtPhysAdrStreet.Text, _
txtPhysAdrSuburb.Text, _
txtPhysAdrTown.Text, _
cmbPhysAdrCode.Text, _
txtPostAdrBuilding.Text, _
txtPostAdrStreetBox.Text, _
txtPostAdrSuburb.Text, _
txtPostAdrTown.Text, _
cmbPostAdrCode.Text, _
cbxIsStaff.Checked, _
cbxIsVIP.Checked, _
Occupation, _
txtEmployer.Text, _
txtCompanyNo.Text, _
txtVATNo.Text _
)
Hovering the cursor over the variables such as 'Title' and 'Language' shows
the value of the variable. However, when i hover over something like
'txtInitials.Text' I simply get 'Public overridable property Text as string'
- not too helpful!
When i put '? txtInitials.text' into the Immediate window i get the response:
"Expression cannot be evaluated at this time."
Also not terribly helpful. Now i've heard that the .net debugger is much
better than in VB6, but what am i doing wrong???
How do i see the values of these properties???
thanks
Suzie
I need to debug a call to a function and so put a breakpoint there:
Client.UPDATE_Client( _
errMsg, _
CInt(lblClientID.Text), _
txtInitials.Text, _
txtSurname.Text, _
Title, _
txtFirstName.Text, _
cmbTelHomeCode.Text, _
txtTelHomeNo.Text, _
cmbTelBusCode.Text, _
txtTelBusNo.Text, _
cmbFaxCode.Text, _
txtFaxNo.Text, _
cmbCellCode.Text, _
txtCellNo.Text, _
Language, _
txtEmail.Text, _
txtIDNo.Text, _
txtPassportNo.Text, _
DOB, _
cmbGender.Text, _
cmbMarital.Text, _
txtPhysAdrBuilding.Text, _
txtPhysAdrStreet.Text, _
txtPhysAdrSuburb.Text, _
txtPhysAdrTown.Text, _
cmbPhysAdrCode.Text, _
txtPostAdrBuilding.Text, _
txtPostAdrStreetBox.Text, _
txtPostAdrSuburb.Text, _
txtPostAdrTown.Text, _
cmbPostAdrCode.Text, _
cbxIsStaff.Checked, _
cbxIsVIP.Checked, _
Occupation, _
txtEmployer.Text, _
txtCompanyNo.Text, _
txtVATNo.Text _
)
Hovering the cursor over the variables such as 'Title' and 'Language' shows
the value of the variable. However, when i hover over something like
'txtInitials.Text' I simply get 'Public overridable property Text as string'
- not too helpful!
When i put '? txtInitials.text' into the Immediate window i get the response:
"Expression cannot be evaluated at this time."
Also not terribly helpful. Now i've heard that the .net debugger is much
better than in VB6, but what am i doing wrong???
How do i see the values of these properties???
thanks
Suzie