Notifications
Clear all

Macros no Office do Mac

2 Posts
2 Usuários
0 Reactions
867 Visualizações
(@contartesi)
Posts: 1
New Member
Topic starter
 

Olá Pessoal, tudo bem?
Sou novo por aqui e gostaria de parabenizar pelo Forum, ele é excelente! :D ;)

Vamos lá, eu tenho uma macro montada e ela funciona perfeitamente bem no Office para windows, já para Mac... :roll:
Sei que o Mac nao roda o controle activeX, e eu adicionei um botão de activeX. Essa é uma Macro que achei no google, portanto não sei consertar para rodar no Mac! Alguem pode me ajudar?

Segue o código:

'==========================
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, _
Cancel As Boolean)
Dim str As String
Dim cboTemp As OLEObject
Dim ws As Worksheet
Set ws = ActiveSheet

Set cboTemp = ws.OLEObjects("TempCombo")
On Error Resume Next
With cboTemp
'clear and hide the combo box
.ListFillRange = ""
.LinkedCell = ""
.Visible = False
End With
On Error GoTo errHandler
If Target.Validation.Type = 3 Then
'if the cell contains a data validation list
Cancel = True
Application.EnableEvents = False
'get the data validation formula
str = Target.Validation.Formula1
str = Right(str, Len(str) - 1)
With cboTemp
'show the combobox with the list
.Visible = True
.Left = Target.Left
.Top = Target.Top
.Width = Target.Width + 5
.Height = Target.Height + 5
.ListFillRange = str
.LinkedCell = Target.Address
End With
cboTemp.Activate
'open the drop down list automatically
Me.TempCombo.DropDown

End If

errHandler:
Application.EnableEvents = True
Exit Sub

End Sub
'=========================================
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim str As String
Dim cboTemp As OLEObject
Dim ws As Worksheet
Set ws = ActiveSheet
Application.EnableEvents = False
Application.ScreenUpdating = True

If Application.CutCopyMode Then
'allow copying and pasting on the worksheet
GoTo errHandler
End If

Set cboTemp = ws.OLEObjects("TempCombo")
On Error Resume Next
With cboTemp
.Top = 10
.Left = 10
.Width = 0
.ListFillRange = ""
.LinkedCell = ""
.Visible = False
.Value = ""
End With

errHandler:
Application.EnableEvents = True
Exit Sub

End Sub
'====================================
'Optional code to move to next cell if Tab or Enter are pressed
'from code by Ted Lanham
'***NOTE: if KeyDown causes problems, change to KeyUp

Private Sub TempCombo_KeyDown(ByVal _
KeyCode As MSForms.ReturnInteger, _
ByVal Shift As Integer)
Select Case KeyCode
Case 9 'Tab
ActiveCell.Offset(0, 1).Activate
Case 13 'Enter
ActiveCell.Offset(1, 0).Activate
Case Else
'do nothing
End Select
End Sub
'====================================

Valeu pessoal!!!

 
Postado : 25/05/2014 7:41 pm
Fernando Fernandes
(@fernandofernandes)
Posts: 43750
Illustrious Member
 

contartesi, não possuo o MAC e nunca lidei com este tipo de situação, teria de pesquisar e ler um pouco mais sobre o assunto, apesar que se não me engano na Ajuda do VBA tem algumas informações referente as diferenças e o que é aceito no MAC.

No momento oque posso fazer é passar um link que achei interessante sobre Dicas do Excel 2011 no MAC :
Excel 2011 for the Mac Tips
http://www.rondebruin.nl/mac.htm

Enquanto não aparecer algum colega que tenha um MAC, veja se ajuda em algo por hora.

[]s

Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel

 
Postado : 26/05/2014 8:33 am