Posts

Showing posts from October, 2022

Keyboard Shortcuts in Power Apps most Developer Don't know

Image
Keyboard Shortcuts in Power Apps most Developer Don't know Keyboard Shortcuts In Power Platform Keyboard shortcuts for canvas apps 1. File Shortcut Action Ctrl+O (or Alt+F) Open a file Ctrl+Shift+S (or Alt+P) Save the app with a different name Ctrl+S Save the app with the same name or for the first time Ctrl+Shift+P Save the app and activate the publish dialog F12 Download the app file (.msapp) Alt+F Open the  File  menu File Shortcuts 2. Ribbon NO. Shortcut Action 1 Alt+I select the insert tab 2 Enter Run the selected command 3 Tab Move between commands on the selected tab and then to the next tab 3. Editing  NO. Shortcut Action 1 Ctrl+A Select all 2 Ctrl+X Cut 3 Ctrl+C Copy 4 Ctrl+V Paste 5 Ctrl+Z Undo command 6 Ctrl+Y Redo command 7 Ctrl+M Add a screen 8 Ctrl+= or Ctrl+Shift+= Zoom in 9 Ctrl+- or Ctrl+Shift+- Zoom out 10 Ctrl+0 Fit canvas to page 11 Shift+Enter Break a line in a formula 4. Preview NO. Shortcut Action 1 F5 Open Preview mode 2 Esc Close Preview mode, a dialog box,

Every Power Apps Developer Must No ( Naming Conventions )

Image
 Naming Conventions In Power Apps Why Naming Is Important? 1.  Helping Us To Differentiate The Things. 2. Provide Meaning Full Information. 3. Help The Other To Understand. 1. Screen Names A screen name should clearly describe its purpose in 2-3 words ending with the word “Screen.”  Use proper-case.   A screen reader will speak the screen name to visually-impaired users when the screen loads. NO. Good Example Bad Example Bad Resone 1 Home Screen home Missing Word Home 2 View Screen Viewscreen Not Friendly To Screen Reader 3 Edit Screen EditScr Not Provide Meaningful Information To Reader 2. Control Names A control name should showthe control-type, the purpose and the screen.  Use camel-case and underscores for spacing.For example, the controlnamedtxt_OrderForm_FirstNameis a text input that capturesfirst nameon the app’s Order Form Screen.   NO. Good Example Bad Example Bad Resone 1 btn_Submit buttonsubmit NO SPACING 2 txt_FristName_edit txt_edit_fristName Wrong Order 3 Btn_Edit_informa