標題: 有關贏再表安裝問題 win 10+office 365
JOSEPEPE
同學




UID 71148
精華 0
積分 0
帖子 3
閱讀權限 99
註冊 2017-12-8
用戶註冊天數 2303
用戶失蹤天數 1796

163.29.187.57
分享 
發表於 2017-12-11 14:52  資料 私人訊息 
有關贏再表安裝問題 win 10+office 365
大家好
有一個安裝的問題請教
我是用 macbook pro的雙系統 pareallels 13 裡面的系統是 windows10+ Office 365 (Exel 2016)
安裝贏再表後 輸入要查詢的代碼 出現這個對話框 是亂碼 但有看到 9 這個數字
我有查詢之前的文章提到語言系統時間等改文臺灣
但還是沒有解決問題
無法正常執行贏再表
請問有同學知道如何解決嗎?
感謝大家
圖片如下
頂部
JOSEPEPE
同學




UID 71148
精華 0
積分 0
帖子 3
閱讀權限 99
註冊 2017-12-8
用戶註冊天數 2303
用戶失蹤天數 1796

1.161.30.49
發表於 2017-12-11 22:30  資料 私人訊息 
找到英文版的說明原因

大家好剛剛我找到以下的英文 似乎是說明了我的問題但仍不知道該如何解決 才可以順利跑贏在表呢?
我的WIN10是英文版 EXEL2016是office365
用PARALLELS DESKTOP13 在蘋果電腦上用WINDOWS




You receive a "Subscript out of range" error message when you use HPageBreaks or VPageBreaks.Location in Excel                                                                                


                                                                                                             Symptoms                    
                                        When you use the Location property or Location.Address of vertical or horizontal page breaks in a Microsoft Visual Basic for Applications macro, you may receive the following error message:
Run-time error '9':
Subscript out of range



            
        
   


                     Cause                    
                                        This problem may occur if the following conditions are true:

  • The active cell is above the horizontal page break or to the left of the vertical page break that is referred to by the HPageBreaks or VPageBreaks index.
  • The vertical or horizontal page break location is off the screen to the right of the visible window or below the visible window of the workbook.
  • You use a Visual Basic for Applications macro in Microsoft Excel  similar to the following code:
    Sub TestHorizontal()
        ActiveSheet.Range("CZ1000").Value = 1
        MsgBox ActiveSheet.HPageBreaks.Count
        MsgBox ActiveSheet.HPageBreaks(1).Location.Address
        MsgBox ActiveSheet.HPageBreaks(2).Location.Address
    End Sub

    Sub TestVertical()
        ActiveSheet.Range("CZ1000").Value = 1
        MsgBox ActiveSheet.VPageBreaks.Count
        MsgBox ActiveSheet.VPageBreaks(1).Location.Address
        MsgBox ActiveSheet.VPageBreaks(2).Location.Address
        MsgBox ActiveSheet.VPageBreaks(3).Location.Address
    End Sub



            
        
   


                     Workaround                    
                                        Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
To prevent this problem, add code to select the last cell used in the worksheet before the code uses the Location property of horizontal or vertical page breaks. For example, use the following code to select the end cell, use the Location property, and then reselect the original active cell:

Sub CheckPageBreaks()

    'Set object "currcell" equal to active cell.
    Set currcell = ActiveCell
   
    'Select the last cell on the worksheet that has data.
    Range("IV65536").Select
   
    'Include code with Location property here.
    x = ActiveSheet.HPageBreaks(2).Location.Address
    MsgBox x
    'Example sets x equal to address of second horizontal page break.
    'Then message box displays the address of the page break.
   
    'Select original active cell.
    currcell.Select

End Sub


After the Location property is calculated, you may again select the original active cell. If you use code to scroll between the first and last cell, or select the last cell and immediately reselect the starting cell, the error may still occur. The screen must redraw and the Location property be calculated for the workaround to be effective. If you use the above code with

Application.ScreenUpdating = False

to prevent screen redraw, the problem still occurs.


            
        
   


                     Status                    
                                        Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

            
        
   


                     More Information                    
                                        If you use the Count method with the VPageBreaks or HPageBreaks property, you may receive a result of zero. This occurs under the conditions listed in the "Cause" section. If a page break is visible, the Count method may give the correct answer. The Count method for vertical or horizontal page breaks may give the expected result if a page break is near the visible part of the workbook window. The workaround given earlier can be used to obtain the expected count.

Page breaks that are to the right of the workbook window or below the workbook window may enable the Count method to work and that page break to be located, if the distance from the window to the page break is less than one-half the distance between page breaks.




            
   


                     References                    
                                        For more information about how to trap errors in a macro, click the following article number to view the article in the Microsoft Knowledge Base:

213637 How to use "On Error" to handle errors in a macro

頂部
mikeon88
管理員
Rank: 9Rank: 9Rank: 9


UID 1
精華 0
積分 0
帖子 15453
閱讀權限 255
註冊 2007-1-14
用戶註冊天數 6284
用戶失蹤天數 0

42.77.103.153
發表於 2017-12-11 22:32  資料 主頁 文集 私人訊息 
漢文繁體版才可
頂部
JOSEPEPE
同學




UID 71148
精華 0
積分 0
帖子 3
閱讀權限 99
註冊 2017-12-8
用戶註冊天數 2303
用戶失蹤天數 1796

1.161.30.49
發表於 2017-12-12 22:12  資料 私人訊息 
感謝回覆已經處理好了
重新灌了windows 繁體中文版+office 365中文版 就可以了
謝謝
頂部
Grace2
同學




UID 1752
精華 0
積分 0
帖子 14
閱讀權限 99
註冊 2012-6-13
用戶註冊天數 4306
用戶失蹤天數 1150

108.172.73.219
發表於 2018-3-6 04:10  資料 私人訊息 
請問購買時就必須是 "office 365 繁體中文版" 嗎?
還一定要用PARALLELS DESKTOP13 在蘋果電腦上用WINDOWS 嗎 ?
能用 office 365; 在 iOS 下操作嗎?

謝謝協助
頂部
Joe
同學




UID 2
精華 0
積分 0
帖子 2090
閱讀權限 99
註冊 2011-3-16
用戶註冊天數 4762
用戶失蹤天數 1942

114.72.38.187
發表於 2018-3-6 07:31  資料 私人訊息 
Mac不行,要灌 Win 系統才可以跑
頂部
mikeon88
管理員
Rank: 9Rank: 9Rank: 9


UID 1
精華 0
積分 0
帖子 15453
閱讀權限 255
註冊 2007-1-14
用戶註冊天數 6284
用戶失蹤天數 0

223.140.26.1
發表於 2018-3-6 07:36  資料 主頁 文集 私人訊息 
Mac要灌雙系統,MS Office
頂部
Grace2
同學




UID 1752
精華 0
積分 0
帖子 14
閱讀權限 99
註冊 2012-6-13
用戶註冊天數 4306
用戶失蹤天數 1150

108.172.73.219
發表於 2018-3-6 09:10  資料 私人訊息 
感謝二位的協助, 我的 mac 是灌了雙系統, 當時就是為跑盈在表, "舊"版可以.
但我的 Office 365 在加買的, 應該就是問題所在.
幸好, 我還有 sony 可用.
感謝感謝.
頂部
mikeon88
管理員
Rank: 9Rank: 9Rank: 9


UID 1
精華 0
積分 0
帖子 15453
閱讀權限 255
註冊 2007-1-14
用戶註冊天數 6284
用戶失蹤天數 0

118.169.164.106
發表於 2018-3-6 09:13  資料 主頁 文集 私人訊息 
Win和 MS Office 皆要漢文繁體版
頂部
Grace2
同學




UID 1752
精華 0
積分 0
帖子 14
閱讀權限 99
註冊 2012-6-13
用戶註冊天數 4306
用戶失蹤天數 1150

108.172.73.219
發表於 2018-3-6 09:58  資料 私人訊息 
明白了. 好在不用常跑盈在表, 用兩台也不是太麻煩.
謝謝.
頂部