SlideShare a Scribd company logo
1 of 5
AUTHOR: MOHAMMED ABDEL KHALEQ DWIKAT EMAIL:dwikatmo@gmail.com
TOPIC: VISUAL BASIC II / FORMS DATE: 1/31/2020 PAGE: 1 OF 5
AANN NNAAJJAAHH NNAATTIIOONNAALL UUNNIIVVEERRSSIITTYY
VVIISSUUAALL BBAASSIICC..NNEETT FFOORRMMSS
MMAANNAAGGEEMMEENNTT IINNFFOORRMMAATTIIOONN SSYYSSTTEEMMSS
PPRREEPPAARREEDD BBYY ::
MMOOHHAAMMMMEEDD AABBDDEELL KKHHAALLEEQQ DDWWIIKKAATT
dwikatmo@najah.edu
:facebook.com/dwikatmo
: dwikatmo@gmail.com
3311//0011//22002200
VVIISSUUAALL BBAASSIICC..NNEETT FFOORRMMSS//AAPPPPLLIICCAATTIIOONNSS
11.. PPRROOPPEERRTTIIEESS
22.. EEVVEENNTTSS
33.. MMEETTHHOODDSS
Form is a class. Form is the container/Area that holds all controls
and makes the interface of the application.
FFOORRMM CCLLAASSSS//OOBBJJEECCTT
PPRROOPPEERRTTIIEESS OOFF AA FFOORRMM
Name: a name is given to a form in design time to be used later in
code. Once a name property is assigned, it cannot be changed later in
AUTHOR: MOHAMMED ABDEL KHALEQ DWIKAT EMAIL:dwikatmo@gmail.com
TOPIC: VISUAL BASIC II / FORMS DATE: 1/31/2020 PAGE: 2 OF 5
code. Other properties can be changed at design time or at run time
(in code)
Property values
Controlbox True/False
Show/Hide control box
MaximizeBox True/False Show/Hide Max/Restore box
MinimizeBox True/False Show/Hide Minimize box
Opacity 0-1 0 like glass,1 like cover,0.5 half/half
Text Any text
DescriptionIcon Icon File
WindowState Normal,
Minimize,
Maximize
ShowInTaskBar True/False What is Windows task bar?
KeyPreview True/False Register keypress by form
RightToLeft Yes/No Form direction
Width Any number No. of pixels
Height Any number No. of pixels
Backcolor Color.red Background color of a form
Forecolor Color.blue eg. Forecolor for labels on a form
Tag Any value Used as temp value for any type
Important note: Use ME when effect will take place on current form or form name if
effect will take place on different form
EEVVEENNTT SS OOFF AA FFOORRMM
Event: it is the name of action that needs a reaction (code to be run
upon action)
AUTHOR: MOHAMMED ABDEL KHALEQ DWIKAT EMAIL:dwikatmo@gmail.com
TOPIC: VISUAL BASIC II / FORMS DATE: 1/31/2020 PAGE: 3 OF 5
Event COMMENTS
Load When form loaded into memory
Click Any click
MouseClick = MouseDown + MouseUp
MouseDown Mouse is pushed down
MouseUp Mouse is released up
KeyPress = KeyDown + KeyUp
KeyDown Key is pushed down
KeyUp Key is released up
FormClosing Upon closing the form
FormClosed After the form is closed
Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
'Write code here'For example to initialize variable values
End Sub
You can ask user if he want to save changes when (before) the form closed
Private Sub Form1_FormClosing(sender As Object, e As
System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosing
'If Data changed then ask user whether to save it or not
End Sub
MMEETTHHOODDSS OOFF AA FFOORRMM
If we want to close any form by code written on the form itself, we
write
Method COMMENTS
close Close the form (remove it from memory) - me.close
, form1.colse
show Show the form - form1.show()
showdialog Show the form as dialog –form1.showDialog()
Hide Me.hide or form1.hide (remains in memory)
Centertoparent Display it centered relative to parent
CenterToScreen Display it centered relative to screen
The .close() method, will close any form and remove it from memory, we
write the form name to be closed as formName.close()
Close form2 (code is written on form2) me.close()
Close form2 (code is written on form1) form2.close()
Open form2 code
What is Dialog mean – it means a form is shown and your action is
required before you can go to previous form or any other form)
Form2.ShowDialog() (you can’t go back to from1 unless you close form2)
Form2.Show()’(you can go back to from1 then again to form2 and so on)
Close form2 when clicking on it
AUTHOR: MOHAMMED ABDEL KHALEQ DWIKAT EMAIL:dwikatmo@gmail.com
TOPIC: VISUAL BASIC II / FORMS DATE: 1/31/2020 PAGE: 4 OF 5
Me.Close() 'This will close any form that is written on it
UUSSEE FFOORRMM EEVVEENNTTSS,, PPRROOPPEERRTTIIEESS AANNDD MMEETTHHOODDSS
UUSSIINNGG EEVVEENNTT KKEEYYPPRREESSSS
11.. HHOOWW TT OO RREEAADD AA KKEEYY TT HHAATT IISS PPRREESSSSEEDD OONN AA FFOORRMM
On the event Keypress of the form, you can read the key pressed
on the keyboard, (provided that the form keypreview is set to true)
T1.Text = e.KeyChar (one character)
22.. HHOOWW TT OO CCHHAANNGGEE TT HHEE KKEEYY PPRREESSSSEEDD WWIITT HH AANNOOTT HHEERR OONNEE ((CCHHAANNGGEE EENNTT EERR TT OO TTAABB))
If Asc(e.KeyChar) = Asc(vbCrLf) Then SendKeys.Send(vbTab)
The same is applied if you want to prevent keyboard from writing
letters in a textbox, only allow numeric textbox to accept numbers
from 0 to 9 an minus -, and dot .
ASCII code for 0 is 48, for 9 is 57, for minus sign is 45, for dot .
is 46
We write the following code on keypress event
Select Case Asc(e.KeyChar)
Case 48 To 57, 45, 46
Case Else
e.KeyChar = ""
End Select
22 WWAAYYSS TTOO CCHHAANNGGEE PPRROOPPEERRTTIIEESS OOFF AANN OOBBJJEECCTT((ffoorrmm oobbjjeecctt hheerree))
To see the form properties press F4, change it, run to see changes
you can also change the properties by code (except the name)
assume we have form1
or you can change it by code like this
Form1.Text = "‫الشاشة‬ ‫"الرئيسية‬
WWHHYY FFOORRMM IISS CCOONNSSIIDDEERREEDD AASS CCLLAASSSS
This means we can create object that is identical to the original
class, for example this code
Dim f As New Form1
f.Show()
Whenever executed, create a copy of the form f1, then display it.
Please note that any object created is hidden (Not visible) by
default.
AUTHOR: MOHAMMED ABDEL KHALEQ DWIKAT EMAIL:dwikatmo@gmail.com
TOPIC: VISUAL BASIC II / FORMS DATE: 1/31/2020 PAGE: 5 OF 5
HHOOWW TTOO HHAANNDDLLEE FFOORRMM PPRROOPPEERRTTIIEESS UUSSIINNGG CCOODDEE
Me.Text = "Main Screen" Change main title
Me.ShowInTaskbar = True
Me.BackColor = Color.Black
Me.Cursor = Cursors.Hand
Me.ForeColor = Color.Chocolate
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.ControlBox = False
Me.Opacity = 0.88 1 Not transparent, 0 fully
transparent like glass
Me.Width = 500
Me.Height = 500
Me.RightToLeft = True
If you want to change property of form (fSales) but the code is
written on another form, replace me by fsales as
fSales.Text = "Main Screen"
fSales.BackColor = Color.Black
Task1
Create 2 forms, on click event of form1, write
Form2.show
On click event of form 2, write Me.colese
Self evaluation questions
Write the vb.net code to accomplish the following of form1
Change the main title to be Payroll system.
Make the form visible on taskbar
Hide the minimize box
Set the form to be right to left
Display form1 as dialog form
Which event you use to read any key pressed on the form, which property
should be used to make it works, what is its value
Event :Keypress, Property: KeyPreview, Value true

More Related Content

Recently uploaded

VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...masabamasaba
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...masabamasaba
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park masabamasaba
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Bert Jan Schrijver
 
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...masabamasaba
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburgmasabamasaba
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024VictoriaMetrics
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in sowetomasabamasaba
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 

Recently uploaded (20)

VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Atlanta Psychic Readings, Attraction spells,Brin...
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 

Featured

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Forms visual Basic .net

  • 1. AUTHOR: MOHAMMED ABDEL KHALEQ DWIKAT EMAIL:dwikatmo@gmail.com TOPIC: VISUAL BASIC II / FORMS DATE: 1/31/2020 PAGE: 1 OF 5 AANN NNAAJJAAHH NNAATTIIOONNAALL UUNNIIVVEERRSSIITTYY VVIISSUUAALL BBAASSIICC..NNEETT FFOORRMMSS MMAANNAAGGEEMMEENNTT IINNFFOORRMMAATTIIOONN SSYYSSTTEEMMSS PPRREEPPAARREEDD BBYY :: MMOOHHAAMMMMEEDD AABBDDEELL KKHHAALLEEQQ DDWWIIKKAATT dwikatmo@najah.edu :facebook.com/dwikatmo : dwikatmo@gmail.com 3311//0011//22002200 VVIISSUUAALL BBAASSIICC..NNEETT FFOORRMMSS//AAPPPPLLIICCAATTIIOONNSS 11.. PPRROOPPEERRTTIIEESS 22.. EEVVEENNTTSS 33.. MMEETTHHOODDSS Form is a class. Form is the container/Area that holds all controls and makes the interface of the application. FFOORRMM CCLLAASSSS//OOBBJJEECCTT PPRROOPPEERRTTIIEESS OOFF AA FFOORRMM Name: a name is given to a form in design time to be used later in code. Once a name property is assigned, it cannot be changed later in
  • 2. AUTHOR: MOHAMMED ABDEL KHALEQ DWIKAT EMAIL:dwikatmo@gmail.com TOPIC: VISUAL BASIC II / FORMS DATE: 1/31/2020 PAGE: 2 OF 5 code. Other properties can be changed at design time or at run time (in code) Property values Controlbox True/False Show/Hide control box MaximizeBox True/False Show/Hide Max/Restore box MinimizeBox True/False Show/Hide Minimize box Opacity 0-1 0 like glass,1 like cover,0.5 half/half Text Any text DescriptionIcon Icon File WindowState Normal, Minimize, Maximize ShowInTaskBar True/False What is Windows task bar? KeyPreview True/False Register keypress by form RightToLeft Yes/No Form direction Width Any number No. of pixels Height Any number No. of pixels Backcolor Color.red Background color of a form Forecolor Color.blue eg. Forecolor for labels on a form Tag Any value Used as temp value for any type Important note: Use ME when effect will take place on current form or form name if effect will take place on different form EEVVEENNTT SS OOFF AA FFOORRMM Event: it is the name of action that needs a reaction (code to be run upon action)
  • 3. AUTHOR: MOHAMMED ABDEL KHALEQ DWIKAT EMAIL:dwikatmo@gmail.com TOPIC: VISUAL BASIC II / FORMS DATE: 1/31/2020 PAGE: 3 OF 5 Event COMMENTS Load When form loaded into memory Click Any click MouseClick = MouseDown + MouseUp MouseDown Mouse is pushed down MouseUp Mouse is released up KeyPress = KeyDown + KeyUp KeyDown Key is pushed down KeyUp Key is released up FormClosing Upon closing the form FormClosed After the form is closed Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load 'Write code here'For example to initialize variable values End Sub You can ask user if he want to save changes when (before) the form closed Private Sub Form1_FormClosing(sender As Object, e As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosing 'If Data changed then ask user whether to save it or not End Sub MMEETTHHOODDSS OOFF AA FFOORRMM If we want to close any form by code written on the form itself, we write Method COMMENTS close Close the form (remove it from memory) - me.close , form1.colse show Show the form - form1.show() showdialog Show the form as dialog –form1.showDialog() Hide Me.hide or form1.hide (remains in memory) Centertoparent Display it centered relative to parent CenterToScreen Display it centered relative to screen The .close() method, will close any form and remove it from memory, we write the form name to be closed as formName.close() Close form2 (code is written on form2) me.close() Close form2 (code is written on form1) form2.close() Open form2 code What is Dialog mean – it means a form is shown and your action is required before you can go to previous form or any other form) Form2.ShowDialog() (you can’t go back to from1 unless you close form2) Form2.Show()’(you can go back to from1 then again to form2 and so on) Close form2 when clicking on it
  • 4. AUTHOR: MOHAMMED ABDEL KHALEQ DWIKAT EMAIL:dwikatmo@gmail.com TOPIC: VISUAL BASIC II / FORMS DATE: 1/31/2020 PAGE: 4 OF 5 Me.Close() 'This will close any form that is written on it UUSSEE FFOORRMM EEVVEENNTTSS,, PPRROOPPEERRTTIIEESS AANNDD MMEETTHHOODDSS UUSSIINNGG EEVVEENNTT KKEEYYPPRREESSSS 11.. HHOOWW TT OO RREEAADD AA KKEEYY TT HHAATT IISS PPRREESSSSEEDD OONN AA FFOORRMM On the event Keypress of the form, you can read the key pressed on the keyboard, (provided that the form keypreview is set to true) T1.Text = e.KeyChar (one character) 22.. HHOOWW TT OO CCHHAANNGGEE TT HHEE KKEEYY PPRREESSSSEEDD WWIITT HH AANNOOTT HHEERR OONNEE ((CCHHAANNGGEE EENNTT EERR TT OO TTAABB)) If Asc(e.KeyChar) = Asc(vbCrLf) Then SendKeys.Send(vbTab) The same is applied if you want to prevent keyboard from writing letters in a textbox, only allow numeric textbox to accept numbers from 0 to 9 an minus -, and dot . ASCII code for 0 is 48, for 9 is 57, for minus sign is 45, for dot . is 46 We write the following code on keypress event Select Case Asc(e.KeyChar) Case 48 To 57, 45, 46 Case Else e.KeyChar = "" End Select 22 WWAAYYSS TTOO CCHHAANNGGEE PPRROOPPEERRTTIIEESS OOFF AANN OOBBJJEECCTT((ffoorrmm oobbjjeecctt hheerree)) To see the form properties press F4, change it, run to see changes you can also change the properties by code (except the name) assume we have form1 or you can change it by code like this Form1.Text = "‫الشاشة‬ ‫"الرئيسية‬ WWHHYY FFOORRMM IISS CCOONNSSIIDDEERREEDD AASS CCLLAASSSS This means we can create object that is identical to the original class, for example this code Dim f As New Form1 f.Show() Whenever executed, create a copy of the form f1, then display it. Please note that any object created is hidden (Not visible) by default.
  • 5. AUTHOR: MOHAMMED ABDEL KHALEQ DWIKAT EMAIL:dwikatmo@gmail.com TOPIC: VISUAL BASIC II / FORMS DATE: 1/31/2020 PAGE: 5 OF 5 HHOOWW TTOO HHAANNDDLLEE FFOORRMM PPRROOPPEERRTTIIEESS UUSSIINNGG CCOODDEE Me.Text = "Main Screen" Change main title Me.ShowInTaskbar = True Me.BackColor = Color.Black Me.Cursor = Cursors.Hand Me.ForeColor = Color.Chocolate Me.MaximizeBox = False Me.MinimizeBox = False Me.ControlBox = False Me.Opacity = 0.88 1 Not transparent, 0 fully transparent like glass Me.Width = 500 Me.Height = 500 Me.RightToLeft = True If you want to change property of form (fSales) but the code is written on another form, replace me by fsales as fSales.Text = "Main Screen" fSales.BackColor = Color.Black Task1 Create 2 forms, on click event of form1, write Form2.show On click event of form 2, write Me.colese Self evaluation questions Write the vb.net code to accomplish the following of form1 Change the main title to be Payroll system. Make the form visible on taskbar Hide the minimize box Set the form to be right to left Display form1 as dialog form Which event you use to read any key pressed on the form, which property should be used to make it works, what is its value Event :Keypress, Property: KeyPreview, Value true