replace . for :

Status
Niet open voor verdere reacties.

ruudboy

Gebruiker
Lid geworden
7 okt 2008
Berichten
9
hello,

I have the follow code in LotusScript:

Code:
Dim workspace As New NotesUIWorkspace
ServerName$= ""
DatabaseName$= "Fonotheek.nsf"
Set tcollection = workspace.PickListCollection( 3, False,ServerName$, DatabaseName$, "Nummers","Kies een Nummer" , "Kies nummer")
If tcollection.count=0 Then Exit Sub
Set tdoc = tcollection.GetFirstDocument
Set ndoc = workspace.currentdocument

Set artiest=tdoc.getfirstitem("Artiest")
If Not artiest Is Nothing Then
artiest = artiest.Text
Else
artiest=""
End If
Call ndoc.FieldSetText( "txtArtiest",artiest )

Set Nummer=tdoc.getfirstitem("Titel")
If Not Nummer Is Nothing Then
Nummer=Nummer.Text
Else
Nummer=""
End If 
Call ndoc.FieldSetText("txtNummer",Nummer)

Set code=tdoc.getfirstitem("Code")
If Not code Is Nothing Then 
code=code.Text
Else
code=""
End If 
Call ndoc.FieldSetText("txtCode",code)

Set kant=tdoc.getfirstitem("Kant")
If Not kant Is Nothing Then 
kant=kant.Text
Else
kant=""
End If 
Call ndoc.FieldSetText("txtKant",kant)

Set speeltijd=tdoc.getfirstitem("Tijd")


my problem is i want to search the variable "speeltijd" for "," and replace it with ":" but i dont know how.
 
Beste "ruudboy",

Aangezien dit een nederlands forum is, wordt er ook van je verwacht dat je je vraag in het nederlands stelt.
 
hehe sorry
ik had de vraag ook gesteld op de ibm website en gewoon copy paste en neit bij nagedacht:o
 
Status
Niet open voor verdere reacties.
Terug
Bovenaan Onderaan