Resources  
  • Custom Controls in C# Windows FormsJul 08, 2024. Creating custom controls in C# Windows Forms enhances user experience by providing tailored functionalities. This guide covers deriving controls, combining multiple controls into composite ones, and implementing owner-drawn controls.
  • PowerApps Rating Control Total and Average Ratings ValidationsJul 05, 2024. Rating is one of the most common features in the social sites and for any of the interactive requirements by users. While I was developing rating, I realized, there are lots of validation required in order to capture correct ratings.
  • Implementing Periodic API Calls and Error Handling in C# Windows Forms ApplicationJul 04, 2024. The Form1 constructor initializes a form and starts a timer. When the timer elapses (t_Elapsed), it fetches data from APIs configured in WebConfigurationManager.AppSettings. The demoGet method handles API interactions, data processing, and posting using PostDataJSON.
  • How To Create Sorting And Paging In ASP.NET Web Forms GridView Jul 04, 2024. Learn how to enable sorting and paging in an ASP.NET GridView by configuring properties, handling events, and binding data using C# code examples and best practices for efficient data display.
  • Custom Annotations and Validation in Spring BootJul 04, 2024. Explore how to enhance Spring Boot applications by creating and using custom annotations for validation. Learn to implement robust validation logic using Hibernate Validator and integrate custom validators for precise data validation in forms and REST APIs.
  • AngularJS: Numbers Text Validation and cbTooltip in ASP.NETJul 04, 2024. "In AngularJs applications, custom directives like allowOnlyNumber and allowOnlyText ensure input validation for numeric and text data, enhancing user interaction. Implementing cbTooltip with Bootstrap enriches UX by providing tooltips.
  • Showing Restricted or Role-based Users in PowerApps Form DropdownJul 04, 2024. Security of their app or data or functionality everyone demands. Most of requirements require approval process and if we have limited approvers listed what could be asked for more.
  • How to Add Duration to Your Microsoft Forms QuizzesJul 03, 2024. Learn how to add a duration to your Microsoft Forms quizzes with this comprehensive guide. Discover step-by-step instructions to set a time limit, ensuring a more controlled and fair assessment environment.
  • Building a Basic Login Form with Angular and HttpClientJul 01, 2024. Learn to build a secure login form in Angular using HttpClient for HTTP requests. This tutorial covers creating a TypeScript component, handling HTTP POST requests to a backend API, and integrating with an HTML template.
  • Creating Dynamic Dropdown Lists in ASP.NET MVCJun 28, 2024. Dropdown lists, or <select> elements, are essential in web forms, enabling users to choose from a predefined list of options. They enhance user experience by simplifying input selection and ensuring data consistency.
  • Microsoft Forms: New Features in 2024Jun 26, 2024. Microsoft Forms has introduced powerful updates in 2024, including real-time data sync with Excel, a Practice Mode for learning reinforcement, a new Forms app for easy survey creation, and the ability to disable question numbers.
  • How to use Formik in React Js?Jun 11, 2024. Formik is a popular form management library for React applications. It simplifies the process of building and handling forms by abstracting away much of the boilerplate code associated with form handling, validation, and submission.
  • Creating a Multi-Step Form in ReactMay 20, 2024. Multi-step forms are a common requirement in web applications, allowing users to fill out complex forms in smaller, more manageable sections. This guide will walk you through the process of creating a multi-step form in React, from setting up the project to managing state and navigation between steps.
  • Power Apps Tabbed Form Using Tab List Modern ControlMay 17, 2024. Learn to enhance your Power Apps with a sleek tabbed form using the Tab List modern control. Elevate user experience by organizing data into tabs, enabling seamless navigation and customization.
  • Exploring Text-to-Speech Packages for Xamarin.FormsMay 13, 2024. Discover the top text-to-speech packages for Xamarin.Forms apps and learn how to seamlessly integrate them into your projects. Explore Xamarin.Essentials, Plugin.TextToSpeech, and Android.Speech.Tts, empowering developers to enhance accessibility and user engagement.
  • Xamarin Forms to Maui MigrationMay 10, 2024. Discover how to migrate your Xamarin.Forms apps to .NET MAUI (Multi-platform App UI) seamlessly. Learn about leveraging code reusability, adapting XAML interfaces, and utilizing new .NET 6 features. Ensure compatibility and modernize your UI with this comprehensive migration guide.
  • A Journey from ASP.NET Framework to ASP.NET CoreApr 18, 2024. Explore the journey of .NET web development from ASP.NET Framework to ASP.NET Core, encompassing technologies like Windows Forms, WPF, and Web Forms. Witness the transition to structured MVC architecture and the integration of Angular for dynamic user interfaces. Delve into the version history of .NET Framework and .NET Core.
  • Form Controls and Create Basic Form in Blazor Component Apr 18, 2024. Learn to build interactive forms in Blazor components using form controls like input fields, dropdowns, and buttons. Explore data binding techniques to connect form elements to your component's data model.
  • Rename the "Related" entities in Dynamics 365Apr 06, 2024. Rename the "Related connections" entity to "Account-Connections" in CRM, follow steps Login, navigate to Advanced settings, open solution, access Account entity forms, edit "Connections" label, save, publish. Verify the change in an account record.
  • Multilingual Application with single Resx file - Forms Validation StringsApr 01, 2024. Learn how to create multilingual applications using ASP.NET 8 in this third part of our series. Explore efficient techniques for managing form validation strings using a single Resx file, ensuring seamless user experience across different languages.
  • Explain StackLayout in .NET MAUIMar 31, 2024. StackLayout in .NET MAUI provides flexible layout management for UI development, allowing easy arrangement of controls in a stack, either horizontally or vertically. Compatible with Xamarin.Forms, and streamlines cross-platform development, offering a familiar environment for building responsive user interfaces.
  • Power Apps: Combo Box Control & Dynamic SharePoint Data BindingMar 28, 2024. Learn to harness the power of Combo box Control in Power Apps to dynamically bind data from SharePoint. Elevate your app development skills with seamless integration and efficient data management, enhancing user experience and productivity.
  • Mastering the Display Form Control in Power AppsMar 20, 2024. Mastering the Display Form Control in Power Apps enables efficient data presentation and user interaction. Learn customization, validation, and integration for optimal user experience and streamlined data management.
  • Explain Floating Labels Animation in BootstrapMar 20, 2024. In this article, we will cover how we can implement Floating Labels Animation in Bootstrap 5. Bootstrap 5 introduces form-floating labels, enhancing form design by providing dynamic floating labels above input fields, improving usability, and saving space.
  • Mastering Form Creation in Power Apps: Integration with SharePoint Mar 11, 2024. Discover how to create powerful forms in Power Apps and seamlessly integrate them with SharePoint. Master the art of designing intuitive interfaces, implementing advanced functionalities, and automating workflows.
  • User Authentication with Forms Authentication in ASP.NET MVCMar 10, 2024. Forms Authentication is a widely-used mechanism in ASP.NET for managing user authentication within web applications. It allows developers to authenticate users based on credentials stored in a database or another user store. Implementation of Forms Authentication in an ASP.NET web application.
  • Trigger a Plugin When Contact Removed form Marketing List EntityMar 04, 2024. This content provides guidance on removing a contact from a marketing list in Dynamics 365 using a plugin. It outlines the steps to create, register, implement the logic, deploy, and test the plugin. Additionally, it includes the necessary plugin code and a unit test code snippet.
  • Reactive Forms In Angular with Practical Example Mar 01, 2024. Angular is a popular framework for building dynamic web applications, and one of its key features is its powerful Forms module. Angular offers two types of forms: template-driven forms and reactive forms. In this article, we'll delve into reactive forms in Angular, exploring their benefits, how to create them, and how to work with them effectively.
  • Angular URL/Site Validation using Regular Expression and Bootstrap with Reactive FormsFeb 26, 2024. Steps to add validation for URL using the regex pattern in the angular application. I will explain steps to create a form with text input using the reactive forms in angular. This input field will only accept the URL.
  • Create Elegant Form Controls for PowerApps with React-BootstrapFeb 20, 2024. This article provides a comprehensive guide on how to create elegant form controls for your PowerApps using React-Bootstrap. It covers the basics of React-Bootstrap, its advantages, and how it can be used to enhance the aesthetics and functionality of your PowerApps forms.
  • Mobile Number Validation Using Angular and BootstrapFeb 19, 2024. This article illustrates the implementation steps for 10-digit mobile number validation in an Angular app using reactive forms and Angular's phone number validation pattern. It guides us through setting up the reactive forms module
  • Enhance Customer Service Case Forms with Case Summary CopilotFeb 15, 2024. Seamlessly integrated into the Customer Services case form, this feature enhances efficiency by automating data entry and providing a concise summary of cases.
  • JavaScript Removed When Publishing Form in Customer Insights journeyFeb 12, 2024. When editing the HTML of a Marketing form to embed any custom JavaScript code, upon saving and publishing the form, the custom JS is being removed from HTML by the dynamics.
  • Using XML Key-Value Pairs in C# as a DictionaryJan 30, 2024. To represent key-value pairs in XML, you typically use elements and attributes. how to represent key-value pairs in XML using C#. It covers XML file creation, interface and enum implementation, and methods for getting and setting values in an XML file. The example includes a WPF application for interaction.
  • What is Form Handling in Vue.jsJan 25, 2024. Forms are an essential part of web applications, enabling users to interact with and input data into an application. Vue.js simplifies the process of handling forms by introducing the powerful v-model directive, providing a seamless two-way binding between input elements and Vue instances.
  • Create Xamarin Android Custom Loader with LoaderEase NuGet PackageJan 19, 2024. The fundamental objective of a wait window is to furnish users with feedback, mitigating any perception of unresponsiveness or ambiguity during tasks that may consume considerable time. Leveraging the NuGet package " Xamarin.Custom.LoaderEase" enables users to effortlessly fashion a personalized loader aligned with the visual theme of their application.
  • Handling HTTP Put Method in AngularJS and C#Jan 12, 2024. Learn how to implement an HTTP PUT method in an AngularJS frontend and C# backend. The AngularJS HTML frontend features a form for resource updates, while the C# backend uses a Web API controller. Follow this tutorial for a step-by-step guide on seamless communication between the frontend and backend using the PUT.
  • Side Pane with Entity Form in Dynamics 365Jan 04, 2024. In Dynamics 365, the "Side Pane" typically refers to a section or area within an entity form where related or additional information is displayed. This section might contain related records, quick views, I frames, or web resources.
  • Trigger Power Automate Flow Utilizing Ultimate Forms Nov 30, 2023. How a Power Automate Flow be started in response to a particular SharePoint form update?
  • Building dynamic forms with SurveyJs and Blazor WebAssembly Nov 20, 2023. In this article, we will learn about integrating the surveyJs with blazor web assembly to compose a dynamic form. we'll learn how to integrate SurveyJs into a .NET Core 6.0 Blazor WebAssembly application for creating dynamic forms.
  • How to Have Multiple Attachments in Power Apps?Oct 30, 2023. In this article i am describing a process for creating a form in SharePoint and managing attachments within the form. However, the instructions provided appear to be specific and may require prior knowledge of SharePoint and its functionalities. If you need assistance with a specific part of the process or have any questions regarding the implementation, please feel free to ask. I'll do my best to provide guidance and support.
  • Transferring Ownership of Forms in Microsoft FormsOct 26, 2023. Managing MS forms within an organization is a critical task, especially when an original form owner leaves the organization. In such cases, it's essential to transfer ownership of their forms to ensure smooth operations and access.
  • Copy and Open Your PowerApps Item in Edit FormOct 25, 2023. Learn to set up an ASP.NET project with DevOps Starter Project on Microsoft Azure. Follow a step-by-step guide to configure your project, set up CI/CD pipelines, and manage databases.
  • Creating Pop-Up New/Edit Forms in PowerAppsOct 23, 2023. Learn how to create a popup in PowerApps for data entry using a step-by-step guide. This article covers adding hyperlinks, setting variables, designing the form, and connecting the data source
  • Simplify Dependency Injection In .NET 6 For Windows Forms DevelopmentOct 06, 2023. This article explains how to use dependency injection in .NET 6 Windows Form Application.
  • Delete records from GridView without Page Reload using jQueryOct 03, 2023. In this article, we will use jQuery to delete records from GridView so that their is no page reload. The codes developed here can be copied and used in any of your web application.
  • Simplify Your C# WinForms Development with the ControlHelpers ClassSep 27, 2023. "In this comprehensive tutorial, we explore the ControlHelpers class, a powerful tool for enhancing your C# WinForms application development. Learn how to streamline common tasks and improve the user interface of your WinForms applications effortlessly. We'll dive into the ControlHelpers class, its key features, and provide step-by-step examples on how to implement it effectively in your projects. Whether you're a beginner or an experienced developer, this guide will help you harness the potential of WinForms with ease."
  • File Upload Handling: API Endpoint and multipart/form-dataAug 30, 2023. ASP.NET Core Web API with the multipart/form-data content type. By following the steps outlined above, you can create an endpoint that allows users to upload files to your server.
  • What are forms in Angular?Aug 26, 2023. In this article, we will learn about angular forms.
  • Add Row in Excel using Power AutomateAug 18, 2023. Streamline Excel Data Input: Automate with Power Automate and Microsoft Forms. Learn how to effortlessly add rows to Excel using these tools, enhancing data management and efficiency.
  • How to save Microsoft Forms Responses with Attachments to SharePoint Lists?Aug 09, 2023. In this article, we will explore the process of retrieving a Microsoft Forms response that includes an attachment and saving it directly to a SharePoint list.
  • How to Create Reusable Form Control in PowerAppsAug 03, 2023. This article speaks about how to Create Reusable Form Control in PowerApps
  • Empowering Azure using AI BuilderAug 01, 2023. AI Builder in Microsoft Power Apps and Power Automate offers prebuilt AI models for automation, data analysis, and decision-making without extensive coding.
  • Create a SharePoint List Item using Power Automate Jul 28, 2023. Learn how to collect data from Microsoft Forms and store it in SharePoint Lists using Microsoft Power Automate. Automate workflows easily without coding. Efficient data management for better analysis.
  • Build Forms Validation in Power AppsJul 19, 2023. Learn how to create and validate forms in Power Apps. Follow the instructions to implement form validation and enable auto-calculation, ensuring data accuracy and smooth user experience.
  • Automate Birthday Reminders with Google Forms and CalendarJul 19, 2023. To integrate Google Forms and Google Calendar for collecting birthdates and setting reminders, you can follow these steps:
  • Forms in HTML: A Comprehensive GuideJul 11, 2023. This article is about the forms element in HTML.
  • How to Fix "Form Elements do not have Associated Labels"Jul 07, 2023. When form elements do not have associated labels, it can make it difficult for users to understand the purpose or context of those elements. Adding clear and descriptive labels is important for accessibility and usability. Here's a step-by-step guide on how to solve form elements do not have associated labels issue.
  • Extract information from documents using Azure Form Recognizer on PythonJul 06, 2023. Extract information from invoices, receipts, business cards and identity documents using Azure Form Recognizer
  • Difference Between ViewBag, ViewData, & TempData Jul 05, 2023. In the context of ASP.NET MVC or ASP.NET Core, ViewBag, ViewData, and TempData are mechanisms for passing data between a controller and a view
  • Add HTML Rich Text Editor to PowerApps FormsJun 29, 2023. The problem statement discusses the issue of default text fields appearing instead of rich text fields in PowerApps forms. The approach outlines steps to replace the text field with a rich text editor and save formatted data.
  • Easiest way to Create SharePoint New or Edit Form Using PowerAppsJun 27, 2023. PowerApps Form Creation: Learn how to create new and edit forms in PowerApps. Customize form size, select a data source, add buttons, and set form modes.
  • Understanding HTML Forms and Input ElementsJun 27, 2023. Understanding HTML forms and input elements, Forms are an essential part of web development, allowing users to interact with a website by submitting data or making requests. In HTML, forms are created using the <form> tag, which contains a variety of input elements that allow users to enter data. In this guide, we will explore HTML form and input elements in depth, including their various types, attributes, and best practices.
  • How To Create Form With Validation In Next JS ApplicationJun 10, 2023. In this article, we will learn how to create Next JS project and create a Form with Validation using react-bootstrap.
  • Automating Customer Onboarding with Power AutomateJun 02, 2023. Automating Customer Onboarding with Power Automate
  • Build Form and Connect to Table Data in Power AppsMay 22, 2023.
  • How to Create a Contact Us Form in HTML and CSSMay 18, 2023. If you want to Create a Contact Us Form in HTML and CSS, read this article and get a step-by-step method for designing a contact us page using HTML and CSS.
  • Unleash the Power of Azure:Creating a Form Recognizer in 5 steps.May 16, 2023. Master the Art of Form Recognition: Step-by-Step Guide to Creating a Form Recognizer in Azure
  • Angular Reactive FormMay 08, 2023.
  • Streamlining Data Extraction with Azure Form Recognizer: An OverviewMay 03, 2023. Introduction to Azure Form Recognizer
  • What Are The Basic HTML Form ControlsMay 02, 2023. The HTML is defined form controls to manage the form page, registration page, sign up page, etc. That means those controls are used in the HTML form page, called HTML form controls. Here controls mean handling the HTML form tags should be used for creating a responsive form page.
  • Unleash the Potential of Intelligent Document Processing using Azure Form Recognizer StudioApr 27, 2023. In this article, you can understand the concepts of Azure Form Recognizer Studio, Prebuilt models, Custom models with end to end implementation.
  • Create Form With useState Hook In ReactJSApr 10, 2023. In this article you will learn the following things: ?Controlled Form using Function Component. ?What is the Controlled Component? ?What is the Uncontrolled Component? ?Use of useState hook. ?Display the Form Data on Console Log - (Event Management)
  • Reactive Form Validation In AngularMar 28, 2023. In Angular, you can perform form validation using Reactive Forms. Reactive Forms provide a more programmatic approach to form validation compared to Template-driven Forms. Reactive Forms allow you to define the form controls and their validation rules in the component class.
  • State And Hooks In ReactJSMar 09, 2023. In this article, you will learn about State And Hooks.
  • Customize Modern SharePoint List Forms using JSONMar 09, 2023. Normally we use SPFx or Power Apps to customize the forms in SharePoint online. In this article we will see how you can customize out of box SharePoint list form using JSON. You don’t need to customize the form using SPFx or Power Apps. Some simple JSON can be used to customize header, footer and body of the SharePoint list form. You can create different sections inside the form body as well as apply some validations to show and hide form fields based on the value of other form fields. Advantage of these JSON customized forms are that it is responsive by default. You don’t have to do any work for making these forms responsive. So, you can use same form in desktop and mobile both.
  • Angular Reactive Forms With Validation ExampleFeb 28, 2023. In this article, you will learn about Angular reactive forms with validation example.
  • Consume ChatGPT Open AI API Inside .Net Core Application Using Razor PagesFeb 23, 2023. This article demonstrates how to develop a ChatGPT application utilizing Razor pages and the OpenAI API in an ASP.Net Core web application.
  • How To Save Input From MS Forms Form Into SharePoint ListFeb 21, 2023. In this article, you will learn how to save input from ms forms form into sharepoint list.
  • Pristine Vs Dirty, Touched Vs Untouched, Valid Vs Invalid In AngularFeb 20, 2023. In this article, you will learn about Pristine vs Dirty, Touched vs Untouched, Valid vs Invalid In Angular.
  • A Quick Introduction to Form RecognizerFeb 06, 2023. Form Recognizer is a cloud-based machine learning service offered by Microsoft Azure that allows users to extract text, key-value pairs, and tables from documents.
  • Datasourceinfo Function In Power Apps And Displaying Forms Dynamically Based On User RoleJan 30, 2023. This article talks about the datasourceinfo function of PowerApps and how it can be leveraged to control the accessibility of forms and other controls to the end users in a PowerApps canvas application
  • Customizing SharePoint Online List Form Using PowerAppsDec 26, 2022. This article will focus on customizing the default SharePoint list forms using PowerApps
  • Forms And Basic Validations In ReactDec 21, 2022. In this article, you will learn about Forms and Basic Validations in React.
  • How to Use Multiple Attachments Controls In Power App List FormDec 19, 2022. In this blog, we will learn how to use multiple attachment controls and how to manage attached files with multiple attachment controls.
  • .Net Multi-Platform App UI - Designing Registration FormDec 01, 2022. In this article, you will learn about .Net Multi-Platform App UI - Registration Form.
  • How To Get User Information In Infopath Form Using User Information List With SharePoint OnlineNov 02, 2022. In this article, you will learn how to get user information in infopath form using user information list with sharepoint online.
  • How to Turn Off or Disable Auto Updates On Windows 11Oct 27, 2022. Two easy methods to Turn Off or Disable Auto Updates On Windows 11 OS.
  • How To Add Microsoft Forms In SharePoint Forms Web PartOct 18, 2022. In this article, you will learn how to add microsoft forms in sharepoint forms web part.
  • Replace Multi Select Combobox With Checkbox In Edit FormSep 09, 2022. In this article, we will learn PowerApps edit form customization. We will specifically customize multi select combobox and use multi select checkbox instead.
  • Dynamics 365 - Provision To Implement Sequences On Any FormSep 05, 2022. In this article, you will learn how to share the information about the sequences in Dynamics CRM.
  • Replace Input Text with Combobox In PowerApps Edit FormAug 29, 2022. In this article, we will learn how to use combo box instead of input text in PowerApps edit form control
  • App Shortcuts In Xamarin FormsAug 15, 2022. In this article, you will learn about App Shortcuts in Xamarin Forms.
  • Video Player App In Xamarin.FormsAug 08, 2022. In this article, you will learn about the Video Player App in Xamarin.Forms.
  • JavaScript In Practice - Let's Write Own Form ValidatorAug 08, 2022. In this article, you will learn Javascript in practice.
  • Implement The UI Touch Effects In Xamarin FormsAug 05, 2022. I will explain UI Effects in xamarin forms. We can implement UI Effects for Android and iOS. The plugin will create a custom renderer for each platform, and the effect will help you to animate touches with event handler. We can customize design for all UIs with support command and toucheffect. View with borders, corner radius and clipping to bounds, and view based on content view you can specify child through content property.
  • PowerApps - Form Field ValidationsAug 03, 2022. In this article we will see how to apply validations, like required field, numeric field, etc., in a Power Apps form. Form validation is process where a form checks if the information provided by a user is correct or not. The form will either alert the user that they made a mistake and need to fix something to proceed, or the form will be validated and the user will be able to continue with their form submission process.
  • Implement The Generic Badge View In Xamarin.FormsAug 03, 2022. In this article, I will explain the Generic Badge in xamarin forms. We can implement the badge for Android, iOS and UWP. The plugin creates a custom renderer for each platform and a custom attached property for adding tab bar badges, which can be bound in XF shared code.
  • Creating Dynamic Checkbox Using C# In ASP.NET Web FormsJul 28, 2022. In this article, you will learn how to create Dynamic Checkboxes using C# in ASP.Net Web Forms.
  • Power Automate Approval Requests With Attachments Using Embedded Canvas App In Model Driven App FormJul 26, 2022. In this article, you will learn about Power Automate approval requests with attachments using an embedded canvas app in model driven app form.

About Win-Forms

NA

OUR TRAINING