home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1994 February
/
CHIP0294.ISO
/
digital
/
praxis
/
tips10
/
tips10.lst
< prev
Wrap
File List
|
1994-09-30
|
3KB
|
131 lines
((Listing: Ami Pro Playmakro))
FUNCTION PLAYMAKR1()
FileName=GetDocInfo$(DDFilename)
FilePath=GetDocInfo$(DDPath)
FileName=strcat$(FilePath, ,"\",FileName)
IF FileName=GetRunningMacroFile$()
Message("Kann mich nicht selbst aufrufen!",
"PlayMakro-Meldung")
EXIT FUNCTION
ENDIF
Save()
Calli FileName ()
END FUNCTION
((Listing Ende))
((Listing Winword: Clipart auf einen Blick))
Sub MAIN
FormatSpalten .Spalten = "2", .GleicherSpaltenabstand = 1
AnsichtNormal
DateiManager .Suchpfad = "G:\SYSPROGS.II\WINWORD6\CLIPART", .Name = "*.wmf"
Menge = ZählenGefundeneDateien() - 1
If Menge >= 0 Then
Dim Dokumente$(Menge)
For Bild_Nr = 0 To Menge
Dokumente$(Bild_Nr) = GefundenDateiName$(Bild_Nr + 1)
Clipart$ = Dokumente$(Bild_Nr)
EinfügenGrafik .Name = Clipart$, .DateiVerknüpfen = "0"
EinfügenAbsatz
Einfügen Clipart$
EinfügenAbsatz
EinfügenAbsatz
Next
End If
AnsichtLayout
End Sub
((Listing ENDE))
((Listing QBasic/DOS: BINDEN.BAT))
@rem binden.bat
@rem Autor: Ralf Wachinger
@echo off
cls
if "%1"=="" goto fehlt
if not exist %1 goto nichtda
if "%2"=="" goto fehlt
for %%i in (%2 %3 %4 %5 %6 %7 %8 %9) do if not exist %%i goto nichtda
for %%i in (%2 %3 %4 %5 %6 %7 %8 %9) do call binden__ %1 %%i
goto ende
:fehlt
echo Binden muss mindestens 2 Parameter haben!
goto ende
:nichtda
echo Eine oder mehrere angegebene Dateien echo konnten nicht gefunden werden!
:ende
@echo on
((Listing ENDE))
((Linsting QBasic/DOS: BINDEN__.BAT))
@rem binden__.bat
@rem Autor: Ralf Wachinger
@echo off
copy %2 + %1 binden__.tmp
del %1
rename binden__.tmp %1
@echo on
((Listing ENDE))
((Listing Novell DOS 7.0: Menu.bat))
@echo off
:start
cls
echo 1 - Textverarbeitung
echo ---------------------
echo 2 - Datenbank
echo ---------------------
echo 3 - Windows
echo ---------------------
echo 4 - PLZ Programm
echo -----------------------------
choice /C:1234E Menüpunkt auswählen oder mit E beenden
if errorlevel 5 goto ende
if errorlevel 4 goto plz
if errorlevel 3 goto win
if errorlevel 2 goto bank
if errorlevel 1 goto text
:text
cls
if not exist c:\text\text.com goto fehler
call TEXT.exe
goto start
:bank
cls
call Datenbank.exe
goto start
:win
cls
WIN
goto start
:plz
cls
call PLZ.bat
goto start
:fehler
cls
echo ESC 22;28 Nicht installiert. Taste..
pause>nul
goto start
:ende
cls
((Listing ENDE))
{DATEINAME |TIPS1.DOT}
{SEITE|1}