Thanks for all help.
My friend have a little problem with a text file.
as follows
Monday
Thuesday
Wednesday
Thursday
Friday
Saturday
Sunday
He have it to load
as folows
Dim namneng As String, Fnumeng As Long, strLeneng As Long ' för England
Dim iDag As String
Fnumeng = FreeFile
iDag = Format$(Date, "dddd") ', "d")
'Text1.BackColor = RGB(255, 248, 217)
Open App.Path & "\Days.txt" For Input As #Fnumeng
Do Until EOF(Fnumeng)
Line Input #Fnumeng, namneng
If Left$(namneng, 1) = iDag Then
strLen = Len(namneng)
'Text2GR.Text =
' namneng = ConvToStr(Right$(dd, 1))
' Label3eng.Caption = "Idag " '& Left$(iDag, 2) & " " & ConvToStr(Right$(iDag, 2))'''Grekland'
' Label2.Caption = Right$(namngr, strLen - 6)
Label1eng.Caption = Right$(namneng, strLen - 1) '& ConvToStr(Right$(iDageng, 2))
' Label1eng.Caption = namneng
' Label2.Caption = iDag
know he has the problem to link the txt file with idag = format$(Date, "dddd")
IDAG = The day of the date in greece language
he will that the text file should read correct name.
and will be readabeld in a label
Hope some one can help him.