Hvis det kun skal gøres een gang, vil jeg godt forsvare denne som er afprøvet og fungerer:
Private Sub Kommandoknap3_Click() Set rs = CurrentDb.OpenRecordset("TABELNAVN") Do Until Me.NewRecord = True FELTNAVN = Replace(FELTNAVN, " ", "") DoCmd.GoToRecord acForm, "FORMULARNAVN", acNext, 1 Loop rs.Close Set rs = Nothing End Sub
Idet du ændrer TABELNAVN til navnet åp din aktuelle tabel. FELTNAVN er navnet på det felt der indeholder dine telefonnumrer og FORMULARNAVN er navnet på din formular.
Yes it seems that its available directly in VBA but not as a function in queries. Silly! So your function should do the trick. Although you better place an answer if you have any chance at all in getting any points :o)
Function FjernBlanke(str As String) As String FjernBlanke= Replace(str, " ", "") End Function
First thing, place this line at the top of each module (form etc.) It makes usre your variables are declared so that you dont get unexpected errors.
Option Explicit
Private Sub cmdOK_Click() Dim ObjW As Object
On Error Resume Next SetFocus Set ObjW = GetObject(, "Word.Application") If Err = 429 Then 'Not running Set ObjW = CreateObject("Word.Application") End If With ObjW
Select Case True Case Option1.Value '.Visible = True .Documents.Add ("D:\flc_Menu\flc-standard.dot"), False 'Unload HovedMenu '.Activate Case Option2.Value .Visible = True .Documents.Add ("D:\flc_Menu\FLC-Faxskrivelse.dot"), False Unload HovedMenu .Activate Case Option3.Value .Visible = True .Documents.Add ("D:\flc_Menu\FLC-Flgskrivelse.dot"), False Unload HovedMenu .Activate Case Option4.Value .Visible = True .Documents.Add ("D:\flc_Menu\FLC-Nord BrugerData.dot"), False Unload HovedMenu .Activate End Select .Activate .Visible = True .UserControl = True
Jeg er ked af at det har taget mig så lang tid at melde tilbage på de gode svar og komentare til dette spørgsmål. Af en eller anden grund har jeg ikke fået en mail når noget har lavet et indlæg.
Jeg beklager!!
Jeg har bruget terry's svar med at lavet en UPDATE query det virkede perfekt i min Access XP
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.