SlideShare a Scribd company logo
Writing  Simple  OCLC Connexion Client Macros  Mini-tutorial Before you begin, decide which repetitive task you will be automating with your macro. Then, follow the steps below to create your macro.  Step 1:            next   Select Tools, Macros, Manage                                                                               Step 2:            prev             next   Click the New Book button                                                Step 3:            prev             next   Type a name for your new macro book.                                                Step 4:            prev             next   With the new macro book name highlighted, click on the Record button.                                                Step 5:            prev             next   Type a name and a description for your new macro. You can skip entering a description, but you must enter a name. (Keep the name short, no spaces or punctuation.)                                                          Step 6:            prev             next   Go through all the steps you would normally go through in the repetitive task. You can even begin by logging in and searching for a record.  When you have completed the steps in the repetitive task, click the red macro Stop button.                              Step 7:            prev             next   To see the syntax of your new macro, select Tools, Macros, Manage again.                                                                               Then, with your macro name highlighted, click Edit                                               You will see how your macro is constructed. The lines shown here are the only lines you always need in a macro.                                                                         You will also see other lines which the macro recorded and which will tell the computer what you want it to do when you run your macro. Step 8:            prev             next   To run your macro:  Select Tools, Macros, Manage                                                                               Then, with your macro name highlighted, click Run.                                               Step 9:            prev   You can make running your macros easier by assigning them to keys. You can assign macros to keys two different ways.  One way is to assign macros to keys using the Tools, Options method. If you use this method, the assigned keys will remain assigned unless you change them. To see steps for assigning your macros to keys this way  click here .  OR ... you can create a logon macro and add the following line of code for each macro you want to assign to a key.  Sub Main         dim CS as object         set CS = CreateObject("Connex.Client")         CS.Logon "", "", ""          CS.AssignMacroToKey "F3", "YourMacroBook.mbk!YourMacroName", True End Sub  If you use this method, you must run your logon macro to assign the macros to the keys. The word "True" in the line above causes your macro key assignment to override the default assignment for the key.  Wasn't that simple?  Of course, you can do more. For instance, you can create variables  the simple way  ...  If you want to see more,  click here
Writing  Simple  OCLC Connexion Client Macros  Mini-tutorial Before you begin, decide which repetitive task you will be automating with your macro. Then, follow the steps below to create your macro.  Step 1:            next   Select Tools, Macros, Manage                                                                               Step 2:            prev             next   Click the New Book button                                                Step 3:            prev             next   Type a name for your new macro book.                                                Step 4:            prev             next   With the new macro book name highlighted, click on the Record button.                                                Step 5:            prev             next   Type a name and a description for your new macro. You can skip entering a description, but you must enter a name. (Keep the name short, no spaces or punctuation.)                                                          Step 6:            prev             next   Go through all the steps you would normally go through in the repetitive task. You can even begin by logging in and searching for a record.  When you have completed the steps in the repetitive task, click the red macro Stop button.                              Step 7:            prev             next   To see the syntax of your new macro, select Tools, Macros, Manage again.                                                                               Then, with your macro name highlighted, click Edit                                               You will see how your macro is constructed. The lines shown here are the only lines you always need in a macro.                                                                         You will also see other lines which the macro recorded and which will tell the computer what you want it to do when you run your macro. Step 8:            prev             next   To run your macro:  Select Tools, Macros, Manage                                                                               Then, with your macro name highlighted, click Run.                                               Step 9:            prev   You can make running your macros easier by assigning them to keys. You can assign macros to keys two different ways.  One way is to assign macros to keys using the Tools, Options method. If you use this method, the assigned keys will remain assigned unless you change them. To see steps for assigning your macros to keys this way  click here .  OR ... you can create a logon macro and add the following line of code for each macro you want to assign to a key.  Sub Main         dim CS as object         set CS = CreateObject("Connex.Client")         CS.Logon "", "", ""          CS.AssignMacroToKey "F3", "YourMacroBook.mbk!YourMacroName", True End Sub  If you use this method, you must run your logon macro to assign the macros to the keys. The word "True" in the line above causes your macro key assignment to override the default assignment for the key.  Wasn't that simple?  Of course, you can do more. For instance, you can create variables  the simple way  ...  If you want to see more,  click here
Writing  Simple  OCLC Connexion Client Macros  Mini-tutorial Before you begin, decide which repetitive task you will be automating with your macro. Then, follow the steps below to create your macro.  Step 1:            next   Select Tools, Macros, Manage                                                                               Step 2:            prev             next   Click the New Book button                                                Step 3:            prev             next   Type a name for your new macro book.                                                Step 4:            prev             next   With the new macro book name highlighted, click on the Record button.                                                Step 5:            prev             next   Type a name and a description for your new macro. You can skip entering a description, but you must enter a name. (Keep the name short, no spaces or punctuation.)                                                          Step 6:            prev             next   Go through all the steps you would normally go through in the repetitive task. You can even begin by logging in and searching for a record.  When you have completed the steps in the repetitive task, click the red macro Stop button.                              Step 7:            prev             next   To see the syntax of your new macro, select Tools, Macros, Manage again.                                                                               Then, with your macro name highlighted, click Edit                                               You will see how your macro is constructed. The lines shown here are the only lines you always need in a macro.                                                                         You will also see other lines which the macro recorded and which will tell the computer what you want it to do when you run your macro. Step 8:            prev             next   To run your macro:  Select Tools, Macros, Manage                                                                               Then, with your macro name highlighted, click Run.                                               Step 9:            prev   You can make running your macros easier by assigning them to keys. You can assign macros to keys two different ways.  One way is to assign macros to keys using the Tools, Options method. If you use this method, the assigned keys will remain assigned unless you change them. To see steps for assigning your macros to keys this way  click here .  OR ... you can create a logon macro and add the following line of code for each macro you want to assign to a key.  Sub Main         dim CS as object         set CS = CreateObject("Connex.Client")         CS.Logon "", "", ""          CS.AssignMacroToKey "F3", "YourMacroBook.mbk!YourMacroName", True End Sub  If you use this method, you must run your logon macro to assign the macros to the keys. The word "True" in the line above causes your macro key assignment to override the default assignment for the key.  Wasn't that simple?  Of course, you can do more. For instance, you can create variables  the simple way  ...  If you want to see more,  click here
Writing Microsoft Excel Macros  the simple way! In most cases, short, simple macros can instruct Microsoft Excel to perform the same complex operations that long, complex macros do. Simple macros tell Excel to do only what you want it to do and  nothing more . But, if you are a macro-writing beginner, you will soon discover that finding  simple  Excel macro samples to study is not easy.  The macro example below appears in several online Excel macro-writing tutorials. It inserts a worksheet and names it "NewName".  Sub AddSheetsTutorialExample()  Dim newSheetName As String  newSheetName = "NewName"  Sheets.Add Type:="Worksheet"        With ActiveSheet             .Move after:=Worksheets(Worksheets.Count)             .Name = newSheetName        End With  End Sub  But even this relatively short macro has unnecessary lines. My, shorter, simpler version works equally well!  Sub AddSheetsTutorialExampleRevised()        With ActiveSheet             .Move after:=Worksheets(Worksheets.Count)             .Name = "NewName"       End With  End Sub  My macro-writing motto is: If you don't need it, DELETE it!  Short, simple macros save macro error-checking time, a few bytes of computer space, and a couple of nanoseconds of macro runtime.  But, even more important is the fact that learning to write  simple  macros is much easier, and much more fun! Why boggle your mind if you don't have to?
[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]

More Related Content

Viewers also liked

Bequeathing Sutra
Bequeathing SutraBequeathing Sutra
Bequeathing Sutralala guy
 
Hci Presentation - PETIproject 0.1
Hci Presentation - PETIproject 0.1Hci Presentation - PETIproject 0.1
Hci Presentation - PETIproject 0.1
Emanuela Boroș
 
Sup (Semantic User Profiling)
Sup (Semantic User Profiling)Sup (Semantic User Profiling)
Sup (Semantic User Profiling)Emanuela Boroș
 
Bandung Presentation
Bandung PresentationBandung Presentation
Bandung Presentationerikmobrand
 
NUS PS1101E Lecture 1
NUS PS1101E Lecture 1NUS PS1101E Lecture 1
NUS PS1101E Lecture 1
erikmobrand
 
NUS PS1101E lecture 2
NUS PS1101E lecture 2NUS PS1101E lecture 2
NUS PS1101E lecture 2erikmobrand
 
Sutra In 42 Sections Spoken By The Buddha
Sutra In 42 Sections Spoken By The BuddhaSutra In 42 Sections Spoken By The Buddha
Sutra In 42 Sections Spoken By The Buddhalala guy
 
Software Security - Vulnerability&Attack
Software Security - Vulnerability&AttackSoftware Security - Vulnerability&Attack
Software Security - Vulnerability&AttackEmanuela Boroș
 
Conversational Hypnosis Mirroring And Pacing To Build Rapport
Conversational Hypnosis   Mirroring And Pacing To Build RapportConversational Hypnosis   Mirroring And Pacing To Build Rapport
Conversational Hypnosis Mirroring And Pacing To Build Rapport
CovertHypnosis
 
RN 2008 Moodle Société GRICS
RN 2008 Moodle Société GRICSRN 2008 Moodle Société GRICS
RN 2008 Moodle Société GRICS
Geoffroi Garon
 
Facebook et les osbl les meilleures pratiques
Facebook et les osbl les meilleures pratiquesFacebook et les osbl les meilleures pratiques
Facebook et les osbl les meilleures pratiquestacticdirect
 
Créer un site internet efficace aujourd'hui !
Créer un site internet efficace aujourd'hui !Créer un site internet efficace aujourd'hui !
Créer un site internet efficace aujourd'hui !
Odomia
 

Viewers also liked (16)

Soccer academy 2013 1
Soccer academy 2013 1Soccer academy 2013 1
Soccer academy 2013 1
 
Bequeathing Sutra
Bequeathing SutraBequeathing Sutra
Bequeathing Sutra
 
Hci Presentation - PETIproject 0.1
Hci Presentation - PETIproject 0.1Hci Presentation - PETIproject 0.1
Hci Presentation - PETIproject 0.1
 
Les cases del món 1r a
Les  cases del món 1r aLes  cases del món 1r a
Les cases del món 1r a
 
Sup (Semantic User Profiling)
Sup (Semantic User Profiling)Sup (Semantic User Profiling)
Sup (Semantic User Profiling)
 
Bandung Presentation
Bandung PresentationBandung Presentation
Bandung Presentation
 
Les abelles
Les abellesLes abelles
Les abelles
 
NUS PS1101E Lecture 1
NUS PS1101E Lecture 1NUS PS1101E Lecture 1
NUS PS1101E Lecture 1
 
NUS PS1101E lecture 2
NUS PS1101E lecture 2NUS PS1101E lecture 2
NUS PS1101E lecture 2
 
Sutra In 42 Sections Spoken By The Buddha
Sutra In 42 Sections Spoken By The BuddhaSutra In 42 Sections Spoken By The Buddha
Sutra In 42 Sections Spoken By The Buddha
 
Software Security - Vulnerability&Attack
Software Security - Vulnerability&AttackSoftware Security - Vulnerability&Attack
Software Security - Vulnerability&Attack
 
Network Security Tools
Network Security ToolsNetwork Security Tools
Network Security Tools
 
Conversational Hypnosis Mirroring And Pacing To Build Rapport
Conversational Hypnosis   Mirroring And Pacing To Build RapportConversational Hypnosis   Mirroring And Pacing To Build Rapport
Conversational Hypnosis Mirroring And Pacing To Build Rapport
 
RN 2008 Moodle Société GRICS
RN 2008 Moodle Société GRICSRN 2008 Moodle Société GRICS
RN 2008 Moodle Société GRICS
 
Facebook et les osbl les meilleures pratiques
Facebook et les osbl les meilleures pratiquesFacebook et les osbl les meilleures pratiques
Facebook et les osbl les meilleures pratiques
 
Créer un site internet efficace aujourd'hui !
Créer un site internet efficace aujourd'hui !Créer un site internet efficace aujourd'hui !
Créer un site internet efficace aujourd'hui !
 

Similar to Mac2

0403-excel-macros-made-easy.pdf
0403-excel-macros-made-easy.pdf0403-excel-macros-made-easy.pdf
0403-excel-macros-made-easy.pdf
ABHISHEK MALIK
 
MS Access Macros
MS Access MacrosMS Access Macros
MS Access Macros
Paul Barnett
 
VBA Tips
VBA TipsVBA Tips
VBA Tips
Ike Onwubuya
 
Recordingandrunningmacrosintheofficeapplication3
Recordingandrunningmacrosintheofficeapplication3Recordingandrunningmacrosintheofficeapplication3
Recordingandrunningmacrosintheofficeapplication3
Astrid yolanda
 
Programming Environment in Matlab
Programming Environment in MatlabProgramming Environment in Matlab
Programming Environment in Matlab
DataminingTools Inc
 
Matlab: Programming Environment
Matlab: Programming EnvironmentMatlab: Programming Environment
Matlab: Programming Environment
matlab Content
 
Excel Vba Basic Tutorial 1
Excel Vba Basic Tutorial 1Excel Vba Basic Tutorial 1
Excel Vba Basic Tutorial 1
rupeshkanu
 
Recording and running macros in the office application
Recording and running macros in the office applicationRecording and running macros in the office application
Recording and running macros in the office application
putiadetiara
 
Using macros in microsoft excel part 2
Using macros in microsoft excel   part 2Using macros in microsoft excel   part 2
Using macros in microsoft excel part 2
Er. Nawaraj Bhandari
 
10.USING THE ECLIPSE DEBUGGERupdated 8618This t.docx
10.USING THE ECLIPSE DEBUGGERupdated 8618This t.docx10.USING THE ECLIPSE DEBUGGERupdated 8618This t.docx
10.USING THE ECLIPSE DEBUGGERupdated 8618This t.docx
paynetawnya
 
A Quick Simple MS Excel Macro
A Quick Simple MS Excel MacroA Quick Simple MS Excel Macro
A Quick Simple MS Excel Macro
Pranav Ghode
 
An introduction to vba and macros
An introduction to vba and macrosAn introduction to vba and macros
An introduction to vba and macros
Er. Nawaraj Bhandari
 
Microsoft Excel - Macros
Microsoft Excel - MacrosMicrosoft Excel - Macros
Microsoft Excel - Macros
Eladio Jose Abquina
 
Creating a Microsoft Excel Macro
Creating a Microsoft Excel MacroCreating a Microsoft Excel Macro
Creating a Microsoft Excel Macro
Lauraly DuBois
 

Similar to Mac2 (20)

0403-excel-macros-made-easy.pdf
0403-excel-macros-made-easy.pdf0403-excel-macros-made-easy.pdf
0403-excel-macros-made-easy.pdf
 
VBA
VBAVBA
VBA
 
Working with Excel Macros
Working with Excel MacrosWorking with Excel Macros
Working with Excel Macros
 
MS Access Macros
MS Access MacrosMS Access Macros
MS Access Macros
 
VBA Tips
VBA TipsVBA Tips
VBA Tips
 
Recordingandrunningmacrosintheofficeapplication3
Recordingandrunningmacrosintheofficeapplication3Recordingandrunningmacrosintheofficeapplication3
Recordingandrunningmacrosintheofficeapplication3
 
Programming Environment in Matlab
Programming Environment in MatlabProgramming Environment in Matlab
Programming Environment in Matlab
 
Matlab: Programming Environment
Matlab: Programming EnvironmentMatlab: Programming Environment
Matlab: Programming Environment
 
Excel Vba Basic Tutorial 1
Excel Vba Basic Tutorial 1Excel Vba Basic Tutorial 1
Excel Vba Basic Tutorial 1
 
Advance sas useful tricks
Advance sas useful tricksAdvance sas useful tricks
Advance sas useful tricks
 
Recording and running macros in the office application
Recording and running macros in the office applicationRecording and running macros in the office application
Recording and running macros in the office application
 
Using macros in microsoft excel part 2
Using macros in microsoft excel   part 2Using macros in microsoft excel   part 2
Using macros in microsoft excel part 2
 
10.USING THE ECLIPSE DEBUGGERupdated 8618This t.docx
10.USING THE ECLIPSE DEBUGGERupdated 8618This t.docx10.USING THE ECLIPSE DEBUGGERupdated 8618This t.docx
10.USING THE ECLIPSE DEBUGGERupdated 8618This t.docx
 
A Quick Simple MS Excel Macro
A Quick Simple MS Excel MacroA Quick Simple MS Excel Macro
A Quick Simple MS Excel Macro
 
An introduction to vba and macros
An introduction to vba and macrosAn introduction to vba and macros
An introduction to vba and macros
 
AcroButtonsTutorial
AcroButtonsTutorialAcroButtonsTutorial
AcroButtonsTutorial
 
AcroButtonsTutorial
AcroButtonsTutorialAcroButtonsTutorial
AcroButtonsTutorial
 
Microsoft Excel - Macros
Microsoft Excel - MacrosMicrosoft Excel - Macros
Microsoft Excel - Macros
 
VBA
VBAVBA
VBA
 
Creating a Microsoft Excel Macro
Creating a Microsoft Excel MacroCreating a Microsoft Excel Macro
Creating a Microsoft Excel Macro
 

Recently uploaded

Investors Data Sample containing data.csv.pdf
Investors Data Sample containing data.csv.pdfInvestors Data Sample containing data.csv.pdf
Investors Data Sample containing data.csv.pdf
danielses2
 
The Last Polymath: Muntadher Saleh‎‎‎‎‎‎‎‎‎‎‎‎
The Last Polymath: Muntadher Saleh‎‎‎‎‎‎‎‎‎‎‎‎The Last Polymath: Muntadher Saleh‎‎‎‎‎‎‎‎‎‎‎‎
The Last Polymath: Muntadher Saleh‎‎‎‎‎‎‎‎‎‎‎‎
iraqartsandculture
 
一比一原版(qut毕业证)昆士兰科技大学毕业证如何办理
一比一原版(qut毕业证)昆士兰科技大学毕业证如何办理一比一原版(qut毕业证)昆士兰科技大学毕业证如何办理
一比一原版(qut毕业证)昆士兰科技大学毕业证如何办理
taqyed
 
Fashionista Chic Couture Mazes and Coloring AdventureA
Fashionista Chic Couture Mazes and Coloring AdventureAFashionista Chic Couture Mazes and Coloring AdventureA
Fashionista Chic Couture Mazes and Coloring AdventureA
julierjefferies8888
 
一比一原版(QUT毕业证)昆士兰科技大学毕业证成绩单如何办理
一比一原版(QUT毕业证)昆士兰科技大学毕业证成绩单如何办理一比一原版(QUT毕业证)昆士兰科技大学毕业证成绩单如何办理
一比一原版(QUT毕业证)昆士兰科技大学毕业证成绩单如何办理
zeyhe
 
Cream and Brown Illustrative Food Journal Presentation.pptx
Cream and Brown Illustrative Food Journal Presentation.pptxCream and Brown Illustrative Food Journal Presentation.pptx
Cream and Brown Illustrative Food Journal Presentation.pptx
cndywjya001
 
Memory Rental Store - The Chase (Storyboard)
Memory Rental Store - The Chase (Storyboard)Memory Rental Store - The Chase (Storyboard)
Memory Rental Store - The Chase (Storyboard)
SuryaKalyan3
 
Caffeinated Pitch Bible- developed by Claire Wilson
Caffeinated Pitch Bible- developed by Claire WilsonCaffeinated Pitch Bible- developed by Claire Wilson
Caffeinated Pitch Bible- developed by Claire Wilson
ClaireWilson398082
 
A Brief Introduction About Hadj Ounis
A Brief  Introduction  About  Hadj OunisA Brief  Introduction  About  Hadj Ounis
A Brief Introduction About Hadj Ounis
Hadj Ounis
 
Codes n Conventionss copy (2).pptx new new
Codes n Conventionss copy (2).pptx new newCodes n Conventionss copy (2).pptx new new
Codes n Conventionss copy (2).pptx new new
ZackSpencer3
 
Memory Rental Store - The Ending(Storyboard)
Memory Rental Store - The Ending(Storyboard)Memory Rental Store - The Ending(Storyboard)
Memory Rental Store - The Ending(Storyboard)
SuryaKalyan3
 
一比一原版(UniSA毕业证)南澳大学毕业证成绩单如何办理
一比一原版(UniSA毕业证)南澳大学毕业证成绩单如何办理一比一原版(UniSA毕业证)南澳大学毕业证成绩单如何办理
一比一原版(UniSA毕业证)南澳大学毕业证成绩单如何办理
zeyhe
 
Rishikesh @ℂall @Girls ꧁❤Book❤꧂@ℂall @Girls Service Vip Top Model Safe
Rishikesh  @ℂall @Girls ꧁❤Book❤꧂@ℂall @Girls Service Vip Top Model SafeRishikesh  @ℂall @Girls ꧁❤Book❤꧂@ℂall @Girls Service Vip Top Model Safe
Rishikesh @ℂall @Girls ꧁❤Book❤꧂@ℂall @Girls Service Vip Top Model Safe
hilij84961
 
Fed by curiosity and beauty - Remembering Myrsine Zorba
Fed by curiosity and beauty - Remembering Myrsine ZorbaFed by curiosity and beauty - Remembering Myrsine Zorba
Fed by curiosity and beauty - Remembering Myrsine Zorba
mariavlachoupt
 
Complete Lab 123456789123456789123456789
Complete Lab 123456789123456789123456789Complete Lab 123456789123456789123456789
Complete Lab 123456789123456789123456789
vickyvikas51556
 
WEEK 11 PART 1- SOULMAKING (ARTMAKING) (1).pdf
WEEK 11 PART 1- SOULMAKING (ARTMAKING) (1).pdfWEEK 11 PART 1- SOULMAKING (ARTMAKING) (1).pdf
WEEK 11 PART 1- SOULMAKING (ARTMAKING) (1).pdf
AntonetteLaurio1
 
This is a certificate template for Daily Vacation Bible School Awards Can edi...
This is a certificate template for Daily Vacation Bible School Awards Can edi...This is a certificate template for Daily Vacation Bible School Awards Can edi...
This is a certificate template for Daily Vacation Bible School Awards Can edi...
RodilynColampit
 
HOW TO USE PINTEREST_by: Clarissa Credito
HOW TO USE PINTEREST_by: Clarissa CreditoHOW TO USE PINTEREST_by: Clarissa Credito
HOW TO USE PINTEREST_by: Clarissa Credito
ClarissaAlanoCredito
 

Recently uploaded (18)

Investors Data Sample containing data.csv.pdf
Investors Data Sample containing data.csv.pdfInvestors Data Sample containing data.csv.pdf
Investors Data Sample containing data.csv.pdf
 
The Last Polymath: Muntadher Saleh‎‎‎‎‎‎‎‎‎‎‎‎
The Last Polymath: Muntadher Saleh‎‎‎‎‎‎‎‎‎‎‎‎The Last Polymath: Muntadher Saleh‎‎‎‎‎‎‎‎‎‎‎‎
The Last Polymath: Muntadher Saleh‎‎‎‎‎‎‎‎‎‎‎‎
 
一比一原版(qut毕业证)昆士兰科技大学毕业证如何办理
一比一原版(qut毕业证)昆士兰科技大学毕业证如何办理一比一原版(qut毕业证)昆士兰科技大学毕业证如何办理
一比一原版(qut毕业证)昆士兰科技大学毕业证如何办理
 
Fashionista Chic Couture Mazes and Coloring AdventureA
Fashionista Chic Couture Mazes and Coloring AdventureAFashionista Chic Couture Mazes and Coloring AdventureA
Fashionista Chic Couture Mazes and Coloring AdventureA
 
一比一原版(QUT毕业证)昆士兰科技大学毕业证成绩单如何办理
一比一原版(QUT毕业证)昆士兰科技大学毕业证成绩单如何办理一比一原版(QUT毕业证)昆士兰科技大学毕业证成绩单如何办理
一比一原版(QUT毕业证)昆士兰科技大学毕业证成绩单如何办理
 
Cream and Brown Illustrative Food Journal Presentation.pptx
Cream and Brown Illustrative Food Journal Presentation.pptxCream and Brown Illustrative Food Journal Presentation.pptx
Cream and Brown Illustrative Food Journal Presentation.pptx
 
Memory Rental Store - The Chase (Storyboard)
Memory Rental Store - The Chase (Storyboard)Memory Rental Store - The Chase (Storyboard)
Memory Rental Store - The Chase (Storyboard)
 
Caffeinated Pitch Bible- developed by Claire Wilson
Caffeinated Pitch Bible- developed by Claire WilsonCaffeinated Pitch Bible- developed by Claire Wilson
Caffeinated Pitch Bible- developed by Claire Wilson
 
A Brief Introduction About Hadj Ounis
A Brief  Introduction  About  Hadj OunisA Brief  Introduction  About  Hadj Ounis
A Brief Introduction About Hadj Ounis
 
Codes n Conventionss copy (2).pptx new new
Codes n Conventionss copy (2).pptx new newCodes n Conventionss copy (2).pptx new new
Codes n Conventionss copy (2).pptx new new
 
Memory Rental Store - The Ending(Storyboard)
Memory Rental Store - The Ending(Storyboard)Memory Rental Store - The Ending(Storyboard)
Memory Rental Store - The Ending(Storyboard)
 
一比一原版(UniSA毕业证)南澳大学毕业证成绩单如何办理
一比一原版(UniSA毕业证)南澳大学毕业证成绩单如何办理一比一原版(UniSA毕业证)南澳大学毕业证成绩单如何办理
一比一原版(UniSA毕业证)南澳大学毕业证成绩单如何办理
 
Rishikesh @ℂall @Girls ꧁❤Book❤꧂@ℂall @Girls Service Vip Top Model Safe
Rishikesh  @ℂall @Girls ꧁❤Book❤꧂@ℂall @Girls Service Vip Top Model SafeRishikesh  @ℂall @Girls ꧁❤Book❤꧂@ℂall @Girls Service Vip Top Model Safe
Rishikesh @ℂall @Girls ꧁❤Book❤꧂@ℂall @Girls Service Vip Top Model Safe
 
Fed by curiosity and beauty - Remembering Myrsine Zorba
Fed by curiosity and beauty - Remembering Myrsine ZorbaFed by curiosity and beauty - Remembering Myrsine Zorba
Fed by curiosity and beauty - Remembering Myrsine Zorba
 
Complete Lab 123456789123456789123456789
Complete Lab 123456789123456789123456789Complete Lab 123456789123456789123456789
Complete Lab 123456789123456789123456789
 
WEEK 11 PART 1- SOULMAKING (ARTMAKING) (1).pdf
WEEK 11 PART 1- SOULMAKING (ARTMAKING) (1).pdfWEEK 11 PART 1- SOULMAKING (ARTMAKING) (1).pdf
WEEK 11 PART 1- SOULMAKING (ARTMAKING) (1).pdf
 
This is a certificate template for Daily Vacation Bible School Awards Can edi...
This is a certificate template for Daily Vacation Bible School Awards Can edi...This is a certificate template for Daily Vacation Bible School Awards Can edi...
This is a certificate template for Daily Vacation Bible School Awards Can edi...
 
HOW TO USE PINTEREST_by: Clarissa Credito
HOW TO USE PINTEREST_by: Clarissa CreditoHOW TO USE PINTEREST_by: Clarissa Credito
HOW TO USE PINTEREST_by: Clarissa Credito
 

Mac2

  • 1. Writing Simple OCLC Connexion Client Macros Mini-tutorial Before you begin, decide which repetitive task you will be automating with your macro. Then, follow the steps below to create your macro. Step 1:           next Select Tools, Macros, Manage                                                                              Step 2:           prev           next Click the New Book button                                               Step 3:           prev           next Type a name for your new macro book.                                               Step 4:           prev           next With the new macro book name highlighted, click on the Record button.                                               Step 5:           prev           next Type a name and a description for your new macro. You can skip entering a description, but you must enter a name. (Keep the name short, no spaces or punctuation.)                                                          Step 6:           prev           next Go through all the steps you would normally go through in the repetitive task. You can even begin by logging in and searching for a record. When you have completed the steps in the repetitive task, click the red macro Stop button.                              Step 7:           prev           next To see the syntax of your new macro, select Tools, Macros, Manage again.                                                                              Then, with your macro name highlighted, click Edit                                               You will see how your macro is constructed. The lines shown here are the only lines you always need in a macro.                                                                        You will also see other lines which the macro recorded and which will tell the computer what you want it to do when you run your macro. Step 8:           prev           next To run your macro: Select Tools, Macros, Manage                                                                              Then, with your macro name highlighted, click Run.                                               Step 9:           prev You can make running your macros easier by assigning them to keys. You can assign macros to keys two different ways. One way is to assign macros to keys using the Tools, Options method. If you use this method, the assigned keys will remain assigned unless you change them. To see steps for assigning your macros to keys this way click here . OR ... you can create a logon macro and add the following line of code for each macro you want to assign to a key. Sub Main         dim CS as object         set CS = CreateObject("Connex.Client")         CS.Logon "", "", ""         CS.AssignMacroToKey "F3", "YourMacroBook.mbk!YourMacroName", True End Sub If you use this method, you must run your logon macro to assign the macros to the keys. The word "True" in the line above causes your macro key assignment to override the default assignment for the key. Wasn't that simple? Of course, you can do more. For instance, you can create variables the simple way ... If you want to see more, click here
  • 2. Writing Simple OCLC Connexion Client Macros Mini-tutorial Before you begin, decide which repetitive task you will be automating with your macro. Then, follow the steps below to create your macro. Step 1:           next Select Tools, Macros, Manage                                                                              Step 2:           prev           next Click the New Book button                                               Step 3:           prev           next Type a name for your new macro book.                                               Step 4:           prev           next With the new macro book name highlighted, click on the Record button.                                               Step 5:           prev           next Type a name and a description for your new macro. You can skip entering a description, but you must enter a name. (Keep the name short, no spaces or punctuation.)                                                          Step 6:           prev           next Go through all the steps you would normally go through in the repetitive task. You can even begin by logging in and searching for a record. When you have completed the steps in the repetitive task, click the red macro Stop button.                              Step 7:           prev           next To see the syntax of your new macro, select Tools, Macros, Manage again.                                                                              Then, with your macro name highlighted, click Edit                                               You will see how your macro is constructed. The lines shown here are the only lines you always need in a macro.                                                                        You will also see other lines which the macro recorded and which will tell the computer what you want it to do when you run your macro. Step 8:           prev           next To run your macro: Select Tools, Macros, Manage                                                                              Then, with your macro name highlighted, click Run.                                               Step 9:           prev You can make running your macros easier by assigning them to keys. You can assign macros to keys two different ways. One way is to assign macros to keys using the Tools, Options method. If you use this method, the assigned keys will remain assigned unless you change them. To see steps for assigning your macros to keys this way click here . OR ... you can create a logon macro and add the following line of code for each macro you want to assign to a key. Sub Main         dim CS as object         set CS = CreateObject("Connex.Client")         CS.Logon "", "", ""         CS.AssignMacroToKey "F3", "YourMacroBook.mbk!YourMacroName", True End Sub If you use this method, you must run your logon macro to assign the macros to the keys. The word "True" in the line above causes your macro key assignment to override the default assignment for the key. Wasn't that simple? Of course, you can do more. For instance, you can create variables the simple way ... If you want to see more, click here
  • 3. Writing Simple OCLC Connexion Client Macros Mini-tutorial Before you begin, decide which repetitive task you will be automating with your macro. Then, follow the steps below to create your macro. Step 1:           next Select Tools, Macros, Manage                                                                              Step 2:           prev           next Click the New Book button                                               Step 3:           prev           next Type a name for your new macro book.                                               Step 4:           prev           next With the new macro book name highlighted, click on the Record button.                                               Step 5:           prev           next Type a name and a description for your new macro. You can skip entering a description, but you must enter a name. (Keep the name short, no spaces or punctuation.)                                                          Step 6:           prev           next Go through all the steps you would normally go through in the repetitive task. You can even begin by logging in and searching for a record. When you have completed the steps in the repetitive task, click the red macro Stop button.                              Step 7:           prev           next To see the syntax of your new macro, select Tools, Macros, Manage again.                                                                              Then, with your macro name highlighted, click Edit                                               You will see how your macro is constructed. The lines shown here are the only lines you always need in a macro.                                                                        You will also see other lines which the macro recorded and which will tell the computer what you want it to do when you run your macro. Step 8:           prev           next To run your macro: Select Tools, Macros, Manage                                                                              Then, with your macro name highlighted, click Run.                                               Step 9:           prev You can make running your macros easier by assigning them to keys. You can assign macros to keys two different ways. One way is to assign macros to keys using the Tools, Options method. If you use this method, the assigned keys will remain assigned unless you change them. To see steps for assigning your macros to keys this way click here . OR ... you can create a logon macro and add the following line of code for each macro you want to assign to a key. Sub Main         dim CS as object         set CS = CreateObject("Connex.Client")         CS.Logon "", "", ""         CS.AssignMacroToKey "F3", "YourMacroBook.mbk!YourMacroName", True End Sub If you use this method, you must run your logon macro to assign the macros to the keys. The word "True" in the line above causes your macro key assignment to override the default assignment for the key. Wasn't that simple? Of course, you can do more. For instance, you can create variables the simple way ... If you want to see more, click here
  • 4. Writing Microsoft Excel Macros the simple way! In most cases, short, simple macros can instruct Microsoft Excel to perform the same complex operations that long, complex macros do. Simple macros tell Excel to do only what you want it to do and nothing more . But, if you are a macro-writing beginner, you will soon discover that finding simple Excel macro samples to study is not easy. The macro example below appears in several online Excel macro-writing tutorials. It inserts a worksheet and names it "NewName". Sub AddSheetsTutorialExample() Dim newSheetName As String newSheetName = "NewName" Sheets.Add Type:="Worksheet"       With ActiveSheet            .Move after:=Worksheets(Worksheets.Count)            .Name = newSheetName       End With End Sub But even this relatively short macro has unnecessary lines. My, shorter, simpler version works equally well! Sub AddSheetsTutorialExampleRevised()       With ActiveSheet            .Move after:=Worksheets(Worksheets.Count)            .Name = "NewName"      End With End Sub My macro-writing motto is: If you don't need it, DELETE it! Short, simple macros save macro error-checking time, a few bytes of computer space, and a couple of nanoseconds of macro runtime. But, even more important is the fact that learning to write simple macros is much easier, and much more fun! Why boggle your mind if you don't have to?
  • 5.