VB2005 Express Edition help with append

  • Thread starter Thread starter ken
  • Start date Start date
K

ken

Hi,
I'm trying to append these two strings: RC and 14 with the following
a = ((cboRegister.Text) & (cboPinnumber.Text)) I've also tried
a = (cboRegister.Text) & (cboPinnumber.Text). The return I get is RC.
Can someone help me with this? Thanks for any help.
Regards,
Ken
 
This works for me ..

dim a as string
a=cbo1.text & cbo2.text ' or, a=cbo1.text + cbo2.text

Fivel
 
This works for me ..

dim a as string
a=cbo1.text & cbo2.text ' or, a=cbo1.text + cbo2.text

Fivel
It compiles ok but, when you single step though it and hover the mouse
over "a" the value return is RC not RC!4 which is what I would expect.
Ken
 
Back
Top