From 02bda0e7a4948df90594f536854e3fc11216a96b Mon Sep 17 00:00:00 2001 From: JPAUL <142168122+Jack-Pots@users.noreply.github.com> Date: Fri, 29 Nov 2024 02:23:46 +0900 Subject: [PATCH] BCA: CS: Answer upto Q13 --- NEP2020/2024/BCA/3rdsem/cs/important/ImpIA2.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NEP2020/2024/BCA/3rdsem/cs/important/ImpIA2.md b/NEP2020/2024/BCA/3rdsem/cs/important/ImpIA2.md index ebf49d2..70b9d3b 100644 --- a/NEP2020/2024/BCA/3rdsem/cs/important/ImpIA2.md +++ b/NEP2020/2024/BCA/3rdsem/cs/important/ImpIA2.md @@ -309,8 +309,12 @@ ADO.NET has two main components that are used for accessing and manipulating dat - Already Answered ### Q13. What is docking and undocking in visual studio? +Docking and undocking in Visual Studio for Windows Forms refers to the ability to arrange controls within a form. Docking allows a control to attach itself to one of the edges of its parent container, automatically resizing to fill the available space. This is useful for creating layouts that adapt to different form sizes and orientations. Undocking, on the other hand, allows a control to be separated from its parent container, enabling it to float freely or be moved to another location, such as a different monitor. [[1](https://learn.microsoft.com/en-us/dotnet/desktop/winforms/controls/how-to-dock-and-anchor?view=netdesktop-9.0)] ### Q14. Explain Task bar and Progress bar controls of VB.NET +- **Progress Bar** - It represents a Windows progress bar control. It is used to provide visual feedback to your users about the status of some task. It shows a bar that fills in from left to right as the operation progresses. Similar to what we all seen when downloading or sharing any content. + +- **Taskbar** - TODO ### Q15. Explain the steps to create a simple form using VB.NET ### Q16. Explain VB.NET Conditional and looping statements with a suitable example ### Q17. Explain Exception Handling in C# with example syntax