H
- How to add an Macro to the toolbar in Outlook?
Adding a macro toolbar in Outlook:Make sure that your toolbar is visible:View, Toolbars and select your toolbarThen:Tools, CustomizeSelect Tab: CommandsSelect Categorie: "Macros"Click "Rearrange Commands"Select option ... - Hoe verander ik de "Page Transition Effects"
ActiveBoard: Page Transition EffectsWordt niet gesaved in de flipchart.Is in te stellen bij:File, Settings, Flipchart, Page Turn effects ... - Hoe kan ik een macro in Excel "digitally signen"
Een macro in Excel digitally signenGa in Excel naar het VBA project (ALT-F11)Tools, Digital SignatureVoor meer info:http://office.microsoft.com/en-us/excel-help/digitally-sign-a-macro-project-HA001231781.aspxEvt wel eerst een certificaat aanmaken met selfcert.exeTe ... - Handy Commands for Matlab
Matlab & Simulink Some handy commands: - clc : clear command window - ver : To see which versions and toolboxes are installed. - zpk ... - Hoe vereenvoudig ik een vergelijking door polen en nulpunten tegen elkaar weg te strepen?
De functie minreal in matlab vereenvoudigt je overdrachtsfunctie door waar mogelijk termen in de teller en de noemer tegen elkaar weg te strepen. De functie: zpk(overdracht) factoriseert je ... - Hoe neem ik een stukje screenshot over in mijn flipchart?
Ga naar desktop tools. Shortcut F6 Je krijgt nu een rondje te zien. Selecteer hierin de camera en vervolgens 1 van de camera opties: ... - Hoe log ik automatisch in op een telefoon met een open laptop?
INloggen op telefoon met mac adres: Opbouw url: http://cucm01.nhl.nl:80/emapp/EMAppServlet?device=SEP&userid=&seq= MacAdress is aan de onderkant in het midden afleesbaar ================================== with tool wget ... - Hoe maak ik een referentie naar een website of boek in een verslag of rapport?
Hier voor zijn zogenaamde APA regels. Het komt er op neer dat je zo mogelijk de titel, de auteur, het jaartal en uiteraard de URL ... - Hoe kopieer ik een deel van een schema als een plaatje naar bijvoorbeeld Word?
Selecteer dat deel van het schema dat je kopieren wil. Kies CTRL+C Ga naar Word en doe daar CTRL+V. Doe dit bij voorkeur in een drawing canvas. Dan ... - Hoe maak een figuur meer transparant in WORD?
Click the picture that you want to create transparent areas in. Under Picture Tools, on the Format tab, in the Adjust group, click Recolor. Click Set Transparent ... - Hoe voorkom ik de mededeling:
"Kan de uitgever niet bevestigen.
Weet u zeker dat u deze software wilt uitvoeren?"
>Kan de uitgever niet bevestigen. >Weet u zeker dat u deze software wilt uitvoeren? Om deze melding uit te schakelen geeft u de locatie van de server ... - Hoe krijg ik een email als er een assignment is ingeleverd op BB?
Voor aanzetten van notificatie via email zie filmpje ... - Hoeveel spanning en stroom leveren de zonnepaneeltjes binnen. (type Conrad 9 Volt 100 mA code=191334)
Binnen doen ze ongeveer 0,5mA@5 Volt. Buiten ongeveer 10 mA@9 Volt. ... - Hoe voorkom ik dat formules gemaakt in Word Equation Editor automatisch worden omgezet naar MathType? (En dan niet meer te wijzigen zijn met de standaard editor)
MathType en Microsoft Equation Editor los koppelen Ga naar start menu:<start> <Programs> <MathType 6> <Equation Conversion Manager> verplaats Microsoft Equation Editor naar het ... - Hoe maak ik een inleveropdracht gekoppeld aan het gradecenter?
Zie filmpje ... - How can I add a comment line in Maple TA?
Sometimes it is handy to put comments in the algortihm section to explain and later remember how the algorithm works. You can enter comments by ... - How can I change the AutoRepublish settings of an Excel file?
AutoRepublish is used to save a copy of a part of the Excel file to a webpage everytime you save the file. What if ... - How can I make a link that downloads a Google Sheet in Excel format?
If you want to create a link which enables you to download a Google Sheet as an Excel file you have at least two options. ... - How can I make a link that opens a certain sheet or tab within a Google Sheet?
Use the 'gid' key in the link.For example: https://docs.google.com/spreadsheets/d/12E54t8oj9K9MDNILOXTwo5CkQiOlaozFP43lCObgB8k/edit?pref=2&pli=1#gid=1526123940 The used key is a random one used for an example. This is also true for the 'gid' ... - How to make a different view of rough data from for example a Google Form responses sheet?
Use a combination of the function IMPORTRANGE which output is the input for the QUERY function. Because of this combination you will have to use ... - How do I create a link to a html file on the Google Drive?
Step 1: Make the document or folder it is in Public. Select, Share, Advanced, Change, "On - Public on Web" Step 2: find the ... - How can I view all classes in a Maple TA server?
The following works in Maple TA version 10 1) Click on the logo Maple TA 2) "Class Manager", "Class Search" 3) Click on "Tree View" on th e ... - Hoe een ontvangen email te bewerken in outlook 2010
- Open het bericht - Bewerk bij de opties het lint en/of werkbalk snelle toegang - Kies uit 'alle opdrachten' bericht bewerken en voeg deze toe Gebruik de ... - Hoe kan ik vragen importeren?
Importeren van een vragenbank en/of modules kan op twee manieren:1) Voor manifest.xml files opgenomen in een <name>.zip file:- Ga naar de class waar je wilt ... - Hoe weet ik welke Architecture gebruikt wordt voor een Entity?
Gebruik de "Tools > Browser" Die architecture beschrijving met een letter (D) er in is degene die gebruikt wordt in de simulatie als default ... - How can I make the output graph of Simulink smoother?
You can change the default settings of the simulator.Within Simulink go to menu: Simulation => Model Configuration Parameters It can take a while before the window ... - How can I dock a figure in a m-script?
Add the set command below to your figure declaration to get it into Docked mode. h=figure(1); set(h,'WindowStyle','docked') Source:https://nl.mathworks.com/matlabcentral/answers/171447-how-in-a-program-to-dock-figures-side-by-side ... - How can I calculate the phase margin and/or the gain margin in a Matlab m-script?
% Phase and gain margin can be read from the bode plot.%%% For demonstration purpose we first define an arbitrary open loop process=tf('s');Hopen=2/((s+1)*(s+2)*(s+3));% create a ...