Open the App

Subjects

Learn Problem Solving with Computers: Chapters 1-4 Overview

4

0

G

Geronimo Restrepo

12/10/2025

Computer Science / Programming

IS 246, Computers and Problem Solving ch 1-4

107

Dec 10, 2025

44 pages

Learn Problem Solving with Computers: Chapters 1-4 Overview

G

Geronimo Restrepo

@geronimorestrepo_hdwi

Visual Basic programming is all about turning problems into step-by-step... Show more

Page 1
Page 2
Page 3
Page 4
Page 5
Page 6
Page 7
Page 8
Page 9
Page 10
1 / 10
Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Introduction to Computing and Problem Solving

Every computer program follows the same basic pattern: Input → Process → Output. Programs take data from sources like keyboards or files, manipulate it according to instructions, and produce results on screens or in files.

Visual Basic uses zero-based numbering, meaning counting starts at 0 instead of 1—an important concept to remember when programming. When developing a program (also called an application, project, or solution), you'll follow the Program Development Cycle.

💡 Remember that computers only do exactly what they're told! If your program doesn't work correctly, it's because the instructions need refinement, not because the computer misunderstood.

The key to successful programming is breaking down complex problems into smaller, manageable tasks that can be expressed in programming language. Your job as a programmer is to create these clear instructions.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Program Development Cycle

Creating a successful program means following a structured approach. The Program Development Cycle has six essential steps:

  1. Analyze: Define the problem clearly, identifying what you need to accomplish
  2. Design: Plan your solution by determining output, identifying required input, and mapping the process
  3. Choose the Interface: Select appropriate objects like text boxes and buttons
  4. Code: Translate your algorithm into programming language
  5. Test and debug: Find and fix errors in your program
  6. Document: Organize all materials that describe the program

Good programmers don't jump straight to coding. Instead, they use planning tools like flowcharts, pseudocode, and hierarchy charts to visualize solutions before writing any code.

When planning your algorithm, always work backward: first determine the desired output, then identify what input you need, and finally figure out the steps to transform that input into output.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Programming Tools

Flowcharts use standardized symbols to visually map program logic. Each symbol has a specific meaning:

  • Flowlines (arrows) connect symbols and show logic flow
  • Terminals (rounded rectangles) mark start/end points
  • Input/Output symbols (trapezoids) represent data being read or displayed
  • Processing symbols (rectangles) show calculations or data manipulation
  • Decision symbols (diamonds) represent yes/no choices with two exit paths
  • Connectors (circles) join flowlines

Hierarchy charts alsocalledstructurechartsortopdownchartsalso called structure charts or top-down charts show how different parts of a program relate to each other, creating a visual roadmap of program organization.

🔑 The beauty of planning tools like flowcharts and pseudocode is that they're language-independent—you can use them to plan your solution regardless of what programming language you'll ultimately use.

These visual tools help you think through your solution before writing a single line of code, making the actual coding process much smoother.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Using Planning Tools

When working with a flowchart, you trace it by starting at the beginning symbol and following the flow lines to the end, just as a computer would execute your program.

Let's look at a sample flowchart for a postage-stamp program:

  1. Start by obtaining the number of sheets
  2. Calculate stamps needed by dividing sheets by 5
  3. Round up to the nearest whole number if necessary
  4. Display the number of stamps needed

Flowcharts, pseudocode, and hierarchy charts are language-independent tools—they help you plan your logic regardless of what programming language you'll use to implement the solution.

These planning tools might seem like extra work at first, but they save tremendous time later by helping you catch logical errors before you start coding. The clearer your plan, the smoother your coding process will be.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Introduction to Visual Basic

Visual Basic is a powerful language for creating Windows applications with a Graphical User Interface (GUI). What makes Visual Basic special is that it's event-driven—the program responds to user actions like clicking buttons or typing text.

Developing a Visual Basic program follows three main steps:

  1. Design the user interface with controls
  2. Determine which events the controls should recognize
  3. Write event procedures to handle those events

Visual Basic offers several important controls for building interfaces:

  • Text box controls for input and output
  • Button controls that users click to trigger actions
  • Label controls to identify other interface elements
  • List box controls to display multiple items

💡 Think of your program interface as a conversation with the user. Each control is a way for users to communicate with your program or for your program to communicate back.

The interface design is crucial—a well-designed interface makes your program intuitive and easy to use, regardless of how complex the underlying code might be.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Visual Basic Screen and Controls

The Visual Basic development environment contains several key parts:

  • Form Designer where you visually create your interface
  • Toolbox containing controls you can add to your form
  • Properties window for customizing controls
  • Solution Explorer to manage project files

You can place controls on your form in four different ways:

  1. Double-clicking the control in the toolbox
  2. Dragging and dropping from the toolbox
  3. Clicking the control and then clicking on the form
  4. Clicking the control and then dragging on the form

Text Box controls are versatile elements used for both input and output. When using text boxes for output only, set the ReadOnly property to True to prevent users from changing the displayed information.

Controls can be adjusted using the sizing handles that appear when you select them. These small squares let you resize controls precisely to fit your interface design needs.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Working with Control Properties

Every control in Visual Basic has properties that determine its appearance and behavior. The Properties window displays all available properties for the currently selected control.

For text boxes, important properties include:

  • ReadOnly: Determines if users can modify the content
  • ScrollBars: Adds scrolling capability for large text
  • TabIndex: Sets the order controls are selected when pressing Tab
  • Text: The content displayed in the text box
  • TextAlign: Controls how text is aligned (left, center, right)

The Properties window is divided into two columns—the left shows property names, and the right displays their current values. The description pane at the bottom provides helpful information about the selected property.

When a control is selected, sizing handles appear around it, allowing you to resize it by dragging. The Tasks button provides quick access to common operations for the selected control.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Setting Control Properties

Every control has properties that determine how it looks and behaves. Some of the most commonly adjusted properties include:

  • Text: The text displayed on or in the control
  • AutoSize: Whether the control automatically resizes to fit its content
  • Font.Name and Font.Size: The typeface and size of text
  • ForeColor: The color of text
  • BackColor: The background color of the control
  • ReadOnly: For text boxes, prevents user editing

To change a property:

  1. Select the control
  2. Find the property in the Properties window
  3. Enter a new value or select from available options

🔧 Mastering the Properties window is crucial for efficient development. Learning keyboard shortcuts for common property adjustments can significantly speed up your workflow.

The Font property requires special handling—click on the ellipsis (...) button to open the Font dialog where you can select the font family, style, and size all at once.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

More Essential Controls

Button controls are the workhorses of Visual Basic applications. The button's Text property sets its caption, which should clearly indicate what happens when clicked. For example, a button that calculates totals might be labeled "Calculate" or "Compute Total."

Label controls help users understand your interface by identifying what other controls are for. Some important label properties:

  • The Text property sets what the label displays
  • By default, the AutoSize property is True, making labels resize automatically
  • Setting AutoSize to False lets you manually resize labels for multi-line text

The Font dialog gives you complete control over text appearance:

  • Select font families from the left list
  • Choose styles (Regular, Bold, Italic) from the middle list
  • Set the size from the right list
  • Preview your selections in the sample box

After making your font selections, click OK to apply them to your control. A well-chosen font enhances both readability and the professional appearance of your application.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Advanced Controls and Naming Conventions

List Box controls display multiple items, making them perfect for showing several results at once. Users can select items from the list, making it interactive.

The Name property is crucial for programming—it's how you'll refer to controls in your code:

  • Always use the three-character prefix convention (btn, lbl, txt, lst)
  • Follow the prefix with a descriptive name (btnCompute, txtAddress)
  • Good naming makes your code more readable and maintainable

When designing your interface, consider font choices carefully:

  • Proportional fonts like Microsoft Sans Serif use different widths for different characters
  • Fixed-width fonts like Courier New use the same width for every character
  • Use fixed-width fonts when creating tables or when alignment matters

💡 The Auto Hide feature helps manage screen space by automatically collapsing windows like the Toolbox when not in use. Look for the push pin icon—horizontal means Auto Hide is enabled, vertical means it's disabled.

Remember that a well-designed interface with consistent naming conventions makes your program easier to use and your code easier to maintain.



We thought you’d never ask...

What is the Knowunity AI companion?

Our AI companion is specifically built for the needs of students. Based on the millions of content pieces we have on the platform we can provide truly meaningful and relevant answers to students. But its not only about answers, the companion is even more about guiding students through their daily learning challenges, with personalised study plans, quizzes or content pieces in the chat and 100% personalisation based on the students skills and developments.

Where can I download the Knowunity app?

You can download the app in the Google Play Store and in the Apple App Store.

Is Knowunity really free of charge?

That's right! Enjoy free access to study content, connect with fellow students, and get instant help – all at your fingertips.

Can't find what you're looking for? Explore other subjects.

Students love us — and so will you.

4.9/5

App Store

4.8/5

Google Play

The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.

Stefan S

iOS user

This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.

Samantha Klich

Android user

Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.

Anna

iOS user

I think it’s very much worth it and you’ll end up using it a lot once you get the hang of it and even after looking at others notes you can still ask your Artificial intelligence buddy the question and ask to simplify it if you still don’t get it!!! In the end I think it’s worth it 😊👍 ⚠️Also DID I MENTION ITS FREEE YOU DON’T HAVE TO PAY FOR ANYTHING AND STILL GET YOUR GRADES IN PERFECTLY❗️❗️⚠️

Thomas R

iOS user

Knowunity is the BEST app I’ve used in a minute. This is not an ai review or anything this is genuinely coming from a 7th grade student (I know 2011 im young) but dude this app is a 10/10 i have maintained a 3.8 gpa and have plenty of time for gaming. I love it and my mom is just happy I got good grades

Brad T

Android user

Not only did it help me find the answer but it also showed me alternative ways to solve it. I was horrible in math and science but now I have an a in both subjects. Thanks for the help🤍🤍

David K

iOS user

The app's just great! All I have to do is enter the topic in the search bar and I get the response real fast. I don't have to watch 10 YouTube videos to understand something, so I'm saving my time. Highly recommended!

Sudenaz Ocak

Android user

In school I was really bad at maths but thanks to the app, I am doing better now. I am so grateful that you made the app.

Greenlight Bonnie

Android user

I found this app a couple years ago and it has only gotten better since then. I really love it because it can help with written questions and photo questions. Also, it can find study guides that other people have made as well as flashcard sets and practice tests. The free version is also amazing for students who might not be able to afford it. Would 100% recommend

Aubrey

iOS user

Best app if you're in Highschool or Junior high. I have been using this app for 2 school years and it's the best, it's good if you don't have anyone to help you with school work.😋🩷🎀

Marco B

iOS user

THE QUIZES AND FLASHCARDS ARE SO USEFUL AND I LOVE THE SCHOOLGPT. IT ALSO IS LITREALLY LIKE CHATGPT BUT SMARTER!! HELPED ME WITH MY MASCARA PROBLEMS TOO!! AS WELL AS MY REAL SUBJECTS ! DUHHH 😍😁😲🤑💗✨🎀😮

Elisha

iOS user

This app is phenomenal down to the correct info and the various topics you can study! I greatly recommend it for people who struggle with procrastination and those who need homework help. It has been perfectly accurate for world 1 history as far as I’ve seen! Geometry too!

Paul T

iOS user

The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.

Stefan S

iOS user

This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.

Samantha Klich

Android user

Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.

Anna

iOS user

I think it’s very much worth it and you’ll end up using it a lot once you get the hang of it and even after looking at others notes you can still ask your Artificial intelligence buddy the question and ask to simplify it if you still don’t get it!!! In the end I think it’s worth it 😊👍 ⚠️Also DID I MENTION ITS FREEE YOU DON’T HAVE TO PAY FOR ANYTHING AND STILL GET YOUR GRADES IN PERFECTLY❗️❗️⚠️

Thomas R

iOS user

Knowunity is the BEST app I’ve used in a minute. This is not an ai review or anything this is genuinely coming from a 7th grade student (I know 2011 im young) but dude this app is a 10/10 i have maintained a 3.8 gpa and have plenty of time for gaming. I love it and my mom is just happy I got good grades

Brad T

Android user

Not only did it help me find the answer but it also showed me alternative ways to solve it. I was horrible in math and science but now I have an a in both subjects. Thanks for the help🤍🤍

David K

iOS user

The app's just great! All I have to do is enter the topic in the search bar and I get the response real fast. I don't have to watch 10 YouTube videos to understand something, so I'm saving my time. Highly recommended!

Sudenaz Ocak

Android user

In school I was really bad at maths but thanks to the app, I am doing better now. I am so grateful that you made the app.

Greenlight Bonnie

Android user

I found this app a couple years ago and it has only gotten better since then. I really love it because it can help with written questions and photo questions. Also, it can find study guides that other people have made as well as flashcard sets and practice tests. The free version is also amazing for students who might not be able to afford it. Would 100% recommend

Aubrey

iOS user

Best app if you're in Highschool or Junior high. I have been using this app for 2 school years and it's the best, it's good if you don't have anyone to help you with school work.😋🩷🎀

Marco B

iOS user

THE QUIZES AND FLASHCARDS ARE SO USEFUL AND I LOVE THE SCHOOLGPT. IT ALSO IS LITREALLY LIKE CHATGPT BUT SMARTER!! HELPED ME WITH MY MASCARA PROBLEMS TOO!! AS WELL AS MY REAL SUBJECTS ! DUHHH 😍😁😲🤑💗✨🎀😮

Elisha

iOS user

This app is phenomenal down to the correct info and the various topics you can study! I greatly recommend it for people who struggle with procrastination and those who need homework help. It has been perfectly accurate for world 1 history as far as I’ve seen! Geometry too!

Paul T

iOS user

 

Computer Science / Programming

107

Dec 10, 2025

44 pages

Learn Problem Solving with Computers: Chapters 1-4 Overview

G

Geronimo Restrepo

@geronimorestrepo_hdwi

Visual Basic programming is all about turning problems into step-by-step solutions a computer can understand. This guide explores how to develop programs through planning tools like flowcharts, the basics of Visual Basic's interface, and how to use controls to create... Show more

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Sign up to see the contentIt's free!

Access to all documents

Improve your grades

Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Introduction to Computing and Problem Solving

Every computer program follows the same basic pattern: Input → Process → Output. Programs take data from sources like keyboards or files, manipulate it according to instructions, and produce results on screens or in files.

Visual Basic uses zero-based numbering, meaning counting starts at 0 instead of 1—an important concept to remember when programming. When developing a program (also called an application, project, or solution), you'll follow the Program Development Cycle.

💡 Remember that computers only do exactly what they're told! If your program doesn't work correctly, it's because the instructions need refinement, not because the computer misunderstood.

The key to successful programming is breaking down complex problems into smaller, manageable tasks that can be expressed in programming language. Your job as a programmer is to create these clear instructions.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Sign up to see the contentIt's free!

Access to all documents

Improve your grades

Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Program Development Cycle

Creating a successful program means following a structured approach. The Program Development Cycle has six essential steps:

  1. Analyze: Define the problem clearly, identifying what you need to accomplish
  2. Design: Plan your solution by determining output, identifying required input, and mapping the process
  3. Choose the Interface: Select appropriate objects like text boxes and buttons
  4. Code: Translate your algorithm into programming language
  5. Test and debug: Find and fix errors in your program
  6. Document: Organize all materials that describe the program

Good programmers don't jump straight to coding. Instead, they use planning tools like flowcharts, pseudocode, and hierarchy charts to visualize solutions before writing any code.

When planning your algorithm, always work backward: first determine the desired output, then identify what input you need, and finally figure out the steps to transform that input into output.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Sign up to see the contentIt's free!

Access to all documents

Improve your grades

Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Programming Tools

Flowcharts use standardized symbols to visually map program logic. Each symbol has a specific meaning:

  • Flowlines (arrows) connect symbols and show logic flow
  • Terminals (rounded rectangles) mark start/end points
  • Input/Output symbols (trapezoids) represent data being read or displayed
  • Processing symbols (rectangles) show calculations or data manipulation
  • Decision symbols (diamonds) represent yes/no choices with two exit paths
  • Connectors (circles) join flowlines

Hierarchy charts alsocalledstructurechartsortopdownchartsalso called structure charts or top-down charts show how different parts of a program relate to each other, creating a visual roadmap of program organization.

🔑 The beauty of planning tools like flowcharts and pseudocode is that they're language-independent—you can use them to plan your solution regardless of what programming language you'll ultimately use.

These visual tools help you think through your solution before writing a single line of code, making the actual coding process much smoother.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Sign up to see the contentIt's free!

Access to all documents

Improve your grades

Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Using Planning Tools

When working with a flowchart, you trace it by starting at the beginning symbol and following the flow lines to the end, just as a computer would execute your program.

Let's look at a sample flowchart for a postage-stamp program:

  1. Start by obtaining the number of sheets
  2. Calculate stamps needed by dividing sheets by 5
  3. Round up to the nearest whole number if necessary
  4. Display the number of stamps needed

Flowcharts, pseudocode, and hierarchy charts are language-independent tools—they help you plan your logic regardless of what programming language you'll use to implement the solution.

These planning tools might seem like extra work at first, but they save tremendous time later by helping you catch logical errors before you start coding. The clearer your plan, the smoother your coding process will be.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Sign up to see the contentIt's free!

Access to all documents

Improve your grades

Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Introduction to Visual Basic

Visual Basic is a powerful language for creating Windows applications with a Graphical User Interface (GUI). What makes Visual Basic special is that it's event-driven—the program responds to user actions like clicking buttons or typing text.

Developing a Visual Basic program follows three main steps:

  1. Design the user interface with controls
  2. Determine which events the controls should recognize
  3. Write event procedures to handle those events

Visual Basic offers several important controls for building interfaces:

  • Text box controls for input and output
  • Button controls that users click to trigger actions
  • Label controls to identify other interface elements
  • List box controls to display multiple items

💡 Think of your program interface as a conversation with the user. Each control is a way for users to communicate with your program or for your program to communicate back.

The interface design is crucial—a well-designed interface makes your program intuitive and easy to use, regardless of how complex the underlying code might be.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Sign up to see the contentIt's free!

Access to all documents

Improve your grades

Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Visual Basic Screen and Controls

The Visual Basic development environment contains several key parts:

  • Form Designer where you visually create your interface
  • Toolbox containing controls you can add to your form
  • Properties window for customizing controls
  • Solution Explorer to manage project files

You can place controls on your form in four different ways:

  1. Double-clicking the control in the toolbox
  2. Dragging and dropping from the toolbox
  3. Clicking the control and then clicking on the form
  4. Clicking the control and then dragging on the form

Text Box controls are versatile elements used for both input and output. When using text boxes for output only, set the ReadOnly property to True to prevent users from changing the displayed information.

Controls can be adjusted using the sizing handles that appear when you select them. These small squares let you resize controls precisely to fit your interface design needs.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Sign up to see the contentIt's free!

Access to all documents

Improve your grades

Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Working with Control Properties

Every control in Visual Basic has properties that determine its appearance and behavior. The Properties window displays all available properties for the currently selected control.

For text boxes, important properties include:

  • ReadOnly: Determines if users can modify the content
  • ScrollBars: Adds scrolling capability for large text
  • TabIndex: Sets the order controls are selected when pressing Tab
  • Text: The content displayed in the text box
  • TextAlign: Controls how text is aligned (left, center, right)

The Properties window is divided into two columns—the left shows property names, and the right displays their current values. The description pane at the bottom provides helpful information about the selected property.

When a control is selected, sizing handles appear around it, allowing you to resize it by dragging. The Tasks button provides quick access to common operations for the selected control.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Sign up to see the contentIt's free!

Access to all documents

Improve your grades

Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Setting Control Properties

Every control has properties that determine how it looks and behaves. Some of the most commonly adjusted properties include:

  • Text: The text displayed on or in the control
  • AutoSize: Whether the control automatically resizes to fit its content
  • Font.Name and Font.Size: The typeface and size of text
  • ForeColor: The color of text
  • BackColor: The background color of the control
  • ReadOnly: For text boxes, prevents user editing

To change a property:

  1. Select the control
  2. Find the property in the Properties window
  3. Enter a new value or select from available options

🔧 Mastering the Properties window is crucial for efficient development. Learning keyboard shortcuts for common property adjustments can significantly speed up your workflow.

The Font property requires special handling—click on the ellipsis (...) button to open the Font dialog where you can select the font family, style, and size all at once.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Sign up to see the contentIt's free!

Access to all documents

Improve your grades

Join milions of students

By signing up you accept Terms of Service and Privacy Policy

More Essential Controls

Button controls are the workhorses of Visual Basic applications. The button's Text property sets its caption, which should clearly indicate what happens when clicked. For example, a button that calculates totals might be labeled "Calculate" or "Compute Total."

Label controls help users understand your interface by identifying what other controls are for. Some important label properties:

  • The Text property sets what the label displays
  • By default, the AutoSize property is True, making labels resize automatically
  • Setting AutoSize to False lets you manually resize labels for multi-line text

The Font dialog gives you complete control over text appearance:

  • Select font families from the left list
  • Choose styles (Regular, Bold, Italic) from the middle list
  • Set the size from the right list
  • Preview your selections in the sample box

After making your font selections, click OK to apply them to your control. A well-chosen font enhances both readability and the professional appearance of your application.

Chapter 1: An Introduction to Computers and Problem Solving
Objectives:
1.1: An Introduction to Computing and Visual Basic
1.2: Program Deve

Sign up to see the contentIt's free!

Access to all documents

Improve your grades

Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Advanced Controls and Naming Conventions

List Box controls display multiple items, making them perfect for showing several results at once. Users can select items from the list, making it interactive.

The Name property is crucial for programming—it's how you'll refer to controls in your code:

  • Always use the three-character prefix convention (btn, lbl, txt, lst)
  • Follow the prefix with a descriptive name (btnCompute, txtAddress)
  • Good naming makes your code more readable and maintainable

When designing your interface, consider font choices carefully:

  • Proportional fonts like Microsoft Sans Serif use different widths for different characters
  • Fixed-width fonts like Courier New use the same width for every character
  • Use fixed-width fonts when creating tables or when alignment matters

💡 The Auto Hide feature helps manage screen space by automatically collapsing windows like the Toolbox when not in use. Look for the push pin icon—horizontal means Auto Hide is enabled, vertical means it's disabled.

Remember that a well-designed interface with consistent naming conventions makes your program easier to use and your code easier to maintain.

We thought you’d never ask...

What is the Knowunity AI companion?

Our AI companion is specifically built for the needs of students. Based on the millions of content pieces we have on the platform we can provide truly meaningful and relevant answers to students. But its not only about answers, the companion is even more about guiding students through their daily learning challenges, with personalised study plans, quizzes or content pieces in the chat and 100% personalisation based on the students skills and developments.

Where can I download the Knowunity app?

You can download the app in the Google Play Store and in the Apple App Store.

Is Knowunity really free of charge?

That's right! Enjoy free access to study content, connect with fellow students, and get instant help – all at your fingertips.

4

Smart Tools NEW

Transform this note into: ✓ 50+ Practice Questions ✓ Interactive Flashcards ✓ Full Mock Exam ✓ Essay Outlines

Mock Exam
Quiz
Flashcards
Essay

Can't find what you're looking for? Explore other subjects.

Students love us — and so will you.

4.9/5

App Store

4.8/5

Google Play

The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.

Stefan S

iOS user

This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.

Samantha Klich

Android user

Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.

Anna

iOS user

I think it’s very much worth it and you’ll end up using it a lot once you get the hang of it and even after looking at others notes you can still ask your Artificial intelligence buddy the question and ask to simplify it if you still don’t get it!!! In the end I think it’s worth it 😊👍 ⚠️Also DID I MENTION ITS FREEE YOU DON’T HAVE TO PAY FOR ANYTHING AND STILL GET YOUR GRADES IN PERFECTLY❗️❗️⚠️

Thomas R

iOS user

Knowunity is the BEST app I’ve used in a minute. This is not an ai review or anything this is genuinely coming from a 7th grade student (I know 2011 im young) but dude this app is a 10/10 i have maintained a 3.8 gpa and have plenty of time for gaming. I love it and my mom is just happy I got good grades

Brad T

Android user

Not only did it help me find the answer but it also showed me alternative ways to solve it. I was horrible in math and science but now I have an a in both subjects. Thanks for the help🤍🤍

David K

iOS user

The app's just great! All I have to do is enter the topic in the search bar and I get the response real fast. I don't have to watch 10 YouTube videos to understand something, so I'm saving my time. Highly recommended!

Sudenaz Ocak

Android user

In school I was really bad at maths but thanks to the app, I am doing better now. I am so grateful that you made the app.

Greenlight Bonnie

Android user

I found this app a couple years ago and it has only gotten better since then. I really love it because it can help with written questions and photo questions. Also, it can find study guides that other people have made as well as flashcard sets and practice tests. The free version is also amazing for students who might not be able to afford it. Would 100% recommend

Aubrey

iOS user

Best app if you're in Highschool or Junior high. I have been using this app for 2 school years and it's the best, it's good if you don't have anyone to help you with school work.😋🩷🎀

Marco B

iOS user

THE QUIZES AND FLASHCARDS ARE SO USEFUL AND I LOVE THE SCHOOLGPT. IT ALSO IS LITREALLY LIKE CHATGPT BUT SMARTER!! HELPED ME WITH MY MASCARA PROBLEMS TOO!! AS WELL AS MY REAL SUBJECTS ! DUHHH 😍😁😲🤑💗✨🎀😮

Elisha

iOS user

This app is phenomenal down to the correct info and the various topics you can study! I greatly recommend it for people who struggle with procrastination and those who need homework help. It has been perfectly accurate for world 1 history as far as I’ve seen! Geometry too!

Paul T

iOS user

The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.

Stefan S

iOS user

This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.

Samantha Klich

Android user

Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.

Anna

iOS user

I think it’s very much worth it and you’ll end up using it a lot once you get the hang of it and even after looking at others notes you can still ask your Artificial intelligence buddy the question and ask to simplify it if you still don’t get it!!! In the end I think it’s worth it 😊👍 ⚠️Also DID I MENTION ITS FREEE YOU DON’T HAVE TO PAY FOR ANYTHING AND STILL GET YOUR GRADES IN PERFECTLY❗️❗️⚠️

Thomas R

iOS user

Knowunity is the BEST app I’ve used in a minute. This is not an ai review or anything this is genuinely coming from a 7th grade student (I know 2011 im young) but dude this app is a 10/10 i have maintained a 3.8 gpa and have plenty of time for gaming. I love it and my mom is just happy I got good grades

Brad T

Android user

Not only did it help me find the answer but it also showed me alternative ways to solve it. I was horrible in math and science but now I have an a in both subjects. Thanks for the help🤍🤍

David K

iOS user

The app's just great! All I have to do is enter the topic in the search bar and I get the response real fast. I don't have to watch 10 YouTube videos to understand something, so I'm saving my time. Highly recommended!

Sudenaz Ocak

Android user

In school I was really bad at maths but thanks to the app, I am doing better now. I am so grateful that you made the app.

Greenlight Bonnie

Android user

I found this app a couple years ago and it has only gotten better since then. I really love it because it can help with written questions and photo questions. Also, it can find study guides that other people have made as well as flashcard sets and practice tests. The free version is also amazing for students who might not be able to afford it. Would 100% recommend

Aubrey

iOS user

Best app if you're in Highschool or Junior high. I have been using this app for 2 school years and it's the best, it's good if you don't have anyone to help you with school work.😋🩷🎀

Marco B

iOS user

THE QUIZES AND FLASHCARDS ARE SO USEFUL AND I LOVE THE SCHOOLGPT. IT ALSO IS LITREALLY LIKE CHATGPT BUT SMARTER!! HELPED ME WITH MY MASCARA PROBLEMS TOO!! AS WELL AS MY REAL SUBJECTS ! DUHHH 😍😁😲🤑💗✨🎀😮

Elisha

iOS user

This app is phenomenal down to the correct info and the various topics you can study! I greatly recommend it for people who struggle with procrastination and those who need homework help. It has been perfectly accurate for world 1 history as far as I’ve seen! Geometry too!

Paul T

iOS user