Grumble..... 
I have a multiple select list in which I select a line that includes a telephonenumber. This telephone number is displayed okay here, like 06######## (# is a digit)
Dim As String = telephoneNumber
telephoneNumber = Me.List0.Column(1, varItm)
later on I write this to a temporary table:
tmpTable("telephoneNr").Value = telephoneNumber
tmpTable.Update
From this tmpTable I make an export to xls. But in my xls my telephone is displayes as
6########
without the preceding zero
I tried
Dim As String = telephoneNumber
telephoneNumber = "0" + Me.List0.Column(1, varItm)
But this gives a debug error
I looked at the Format() function but it didn't brought me anywhere....
Anyone willing to help me pleaz ?
I have a multiple select list in which I select a line that includes a telephonenumber. This telephone number is displayed okay here, like 06######## (# is a digit)
Dim As String = telephoneNumber
telephoneNumber = Me.List0.Column(1, varItm)
later on I write this to a temporary table:
tmpTable("telephoneNr").Value = telephoneNumber
tmpTable.Update
From this tmpTable I make an export to xls. But in my xls my telephone is displayes as
6########
without the preceding zero
I tried
Dim As String = telephoneNumber
telephoneNumber = "0" + Me.List0.Column(1, varItm)
But this gives a debug error
I looked at the Format() function but it didn't brought me anywhere....
Anyone willing to help me pleaz ?