227 Aufrufe
Gefragt in Tabellenkalkulation von
excel 2003 ohne Arbeitsmappe öffnen

2 Antworten

0 Punkte
Beantwortet von
Hi Didi1b

Versuchs mal damit

in einem Modul (zB.: Modul1)

Sub Auto_Open()
 Application.Visible = False
 UserForm1.Show
End Sub


in DieseArbeitsmappe

Private Sub Workbook_Open()
 Auto_Open
End Sub


und in der UserForm1

Private Sub UserForm_Terminate()
 Application.Visible = True
End Sub

Ich hofe dass ich dir damit etwas geholfen habe.
gruss Eddie
0 Punkte
Beantwortet von m-o Profi (22.8k Punkte)
Hallo,

starte Excel mit mit dem Parameter /e; schau mal dazu hier nach: [url=https://www.excel-inside.de/funktionen-a-tipps/176-alle-excel-startparameter.html]Excel Startparamter[/url]

Gruß

M.O.
...