Paulo, a palavra Multiplay é destacada pelo fato de estarmos fazendo referencia a uma Function que não existe, e no livro é citado para se criar antes.
fernando, na verdade o cara não se equivocou ao fazer referencia a função "Multiply", não sei como está descrito no livro em portugues, mas o original em inglês um dos exercícios é criar esta função e a rotina Display antes de executar rotina que ele citou no Evento que adiciona uma nova planilha :
Writing a Simple Function
The object of this exercise is to create a function to accept two numbers and multiply them together
and return the result. The function will have the name Multiply. The following table cites the four
main mathematical operators that you will use when writing functions and subroutines in VBA.
'The code for this function is as follows:
Function Multiply(a, b)
Multiply = a * b
End Function
E quanto a "Sub Display" tambem está no capitulo :
Writing a Simple Subroutine
A subroutine is different from a function in that it does not return anything directly and so cannot be
used directly in the spreadsheet the way a function can. A subroutine . . .
'Click back to Module1 and add the following code:
Sub Display(target)
MsgBox target
End Sub
O livro em questão em ingles está no link abaixo se quiserem dar uma olhada:
Excel VBA Macro Programming
by Richard Shepherd ISBN:0072231440
McGraw-Hill/Osborne © 2004 (319 pages)
This unique book presents sample code for more than twenty practical, high-powered Excel
VBA macro applications. You get all the essentials of VBA, then explore ways to power Excel
with VBA.
http://dbmanagement.info/Microsoft/1507 ... l_2016.pdf
Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
Postado : 04/04/2016 7:32 pm