Máy tính, Internet > Máy vi tính > Phần mềm văn phòng

Làm sao để chèn file nhanh trong PowerPoint?

Tôi có nhiều file trình diễn, tôi muốn chèn nhiều file này thành một file, có cách nào để làm nhanh hơn là bấm chèn từng Slide không?
Phutho
Khi nhiều file trình diễn, bạn muốn chèn nhiều file này thành một file, để làm nhanh thì bạn cần tạo một Macro trong PowerPoint , cách thức tiến hành như sau: 1. Đưa tất cả các file trình diễn của bạn vào một thư mục, ví dụ: C:\Documents and Settings\Bell\My Documents\ 2. Tạo một file có tên là LIST.TXT chứa tên các file trình diễn mà bạn muốn ghép lại kết thức mỗi tên file bạn cần bấm phím Enter. 3. Mở PowerPoint 4. Bấm ALT-F11 --> cửa sổ MS Visual Basic mở ra 5. Bấm menu Insert --> chọn Module 6. Bạn cắt dán theo nội dung dưới đây vào ô Module Sub InsertFromList() On Error GoTo ErrorHandler Dim sListDir As String Dim sListFileName As String Dim sListFilePath As String Dim iListFileNum As Integer Dim sBuf As String ' EDIT THESE AS NEEDED sListFileName = "LIST.TXT" ' name of file containing files to be inserted sListFilePath = "C:\Documents and Settings\Bell\My Documents\" ' backslash terminated path to filder containing list file ' Do we have a file open already? If Not Presentations.Count > 0 Then Exit Sub End If ' If LIST.TXT file doesn't exist, create it If Not Dir$(sListFilePath & sListFileName) <> "" Then iListFileNum = FreeFile() Open sListFilePath & sListFileName For Output As iListFileNum ' get file names sBuf = Dir$(sListFilePath & "*.PPT") While Not sBuf = "" Print #iListFileNum, sBuf sBuf = Dir Wend Close #iListFileNum End If iListFileNum = FreeFile() Open sListFilePath & sListFileName For Input As iListFileNum ' Process the list While Not EOF(iListFileNum) ' Get a line from the list file Line Input #iListFileNum, sBuf ' Verify that the file named on the line exists If Dir$(sBuf) <> "" Then Call ActivePresentation.Slides.InsertFromFile(sBuf, ActivePresentation.Slides.Count) End If Wend Close #iListFileNum MsgBox "DONE!" NormalExit: Exit Sub ErrorHandler: Call MsgBox("Error:" & vbCrLf & Err.Number & vbCrLf & Err.Description, vbOKOnly, "Error inserting files") Resume NormalExit End Sub 7. Quay trở về PowerPoint 8. Bấm menu Tools --> chọn Macro --> chọn Macros --> chọn InsertFromList --> bấm OK

Hỏi đáp đề xuất

Phần mềm văn phòng

Làm thế nào để chèn ngày tạo ra file trong ngay văn bản Word?}

17 năm
Để chèn ngày tạo ra file trong ngay văn bản Word, bạn làm như sau : 1. Đưa con trỏ tại vị trí bạn muốn chèn . 2. Bấm... Xem thêm
Phần mềm văn phòng

Làm thế nào để copy biểu đồ trong Excel vào PowerPoint ?}

Porsche 17 năm
Để Copy biểu đồ từ Excel sang PowerPoint cách thức tiến hành như sau: 1. Chọn biểu đồ trong Excel --> bấm Ctrl-C ... Xem thêm
Phần mềm văn phòng

In slide trong PowerPoint ?}

luxemate800 17 năm
Trước khi in các slide, bạn cần đánh số trang, đặt tiêu đề cho các slide -Chèn số trang cho slide Bạn bấm menu... Xem thêm
Phần mềm văn phòng

Làm sao để lưu luôn phông chữ vào bài soạn PowerPoint ?}

Nguyễn Trương Đức 17 năm
Bạn hãy áp dụng thủ thuật sau: Bước 1: Sau khi soạn thảo bài giảng xong, bạn nhấp vào File (trên thanh công cụ) >... Xem thêm
Phần mềm văn phòng

Khi mở menu File trong PowerPoint thì đoạn cuối luôn hiện lên tên của những file đã mở !?}

Phuthi 17 năm
Để xoá bạn làm bước sau : 1. Bấm Start --> chọn Run --> gõ Regedit --> bấm OK 2. Bạn tìm theo đường... Xem thêm
Phần mềm văn phòng

Trình chiếu trong Powerpoint}

17 năm
Bạn sử dụng các Effect trong powerpoint để thiết lập cơ chế này. Áp dụng với từng textbox một. Xem thêm
Phần mềm văn phòng

Chèn nhạc vào file PowerPoint 2007 ?}

thuy linh 15 năm
Khi chèn nhạc vào file PowerPoint 2007, bạn cần lưu ý như sau: File nhạc mà bạn định nhúng hẳn vào file PowerPoint... Xem thêm