TextBox is one of the most important components in the visual-based programming environment, because this component will accept the data input from the user, the lack of attention to this component will be very fatal, ranging from Runtime Error to Invalid data and others.
Here are some tips and tricks in handling textbox :
T&T#1) ONLY ACCPET NUMERIC VALUE
For the demo please open a new project, select standard exe, then place a textbox for experiment material and set with the following properties:Name : Text1
Text : (clear)
Then press F7 to switch to view code mode, or through the View -> Code menu, then type in the following code :
Private Sub Text1_KeyPress(KeyAscii As Integer) If Not (KeyAscii >= Asc("0") & Chr(13) _ And KeyAscii <= Asc("9") & Chr(13) _ Or KeyAscii = vbKeyBack _ Or KeyAscii = vbKeyDelete _ Or KeyAscii = vbKeySpace) Then Beep KeyAscii = 0 End If End SubPress F5, and see the result
Based on the above code then the data that we entry into the textbox only receive numerical data, and some other key like BackSpace, Delete and Space.
T&T#2) ONLY ACCPET UPPER CASE ENTRY INTO THE TEXTBOX
Open the new project Standard Exe, then place 2 pieces of textbox with the following properties :
Name : Text1
Text : (empty)
Name : Text2
Text : (empty)
Press F7, or select View -> Code, then type the following code :
Private Sub Text1_Change() 'Text1 menggunakan event Change Dim posisi As Integer posisi = Text1.SelStart Text1.Text = UCase(Text1.Text) Text1.SelStart = posisi End Sub Private Sub Text2_KeyPress(KeyAscii As Integer) 'Text2 menggunakan event KeyPress KeyAscii = Asc(UCase(Chr(KeyAscii))) End SubPress F5 and see the result
T&T#3) ONLY ACCEPT LOWER CASE ENTRY INTO THE TEXTBOX
Open the new project Standard Exe, then place 2 textbox with the following properties :
Name : Text1
Text : (empty)
Name : Text2
Text : (empty)
Press F7, or select View -> Code, then type the following code :
Private Sub Text1_Change() 'Text1 use event Change Dim posisi As Integer posisi = Text1.SelStart Text1.Text = LCase(Text1.Text) Text1.SelStart = posisi End Sub Private Sub Text2_KeyPress(KeyAscii As Integer) 'Text2 use KeyPress KeyAscii = Asc(LCase(Chr(KeyAscii))) End SubPress F5 and see the result
T&T#4) CLEAR ALL TEXTBOX VALUE
Open a new project and place 4 textbox, and 1 commanbutton, let the default property settings do not need to change name or any other properties.
Press F7, and type in the following code :
Private Sub Command1_Click() Dim Contrl As Control For Each Contrl In Form1.Controls If (TypeOf Contrl Is TextBox) Then Contrl.Text = "" Next Contrl End SubPress F5 and see the result
T&T#5) AVOID CERTAIN CHARACTER ENTRY
Open the new Standard Exe project, then place a textbox and leave the default name 'Text1', then press F7 and type the following code :
Private Sub Text1_KeyPress(KeyAscii As Integer) Dim sTemplate As String 'Ganti '!@#$%^&*()_+=' dengan karakter yang Anda 'inginkan untuk dihindari diinput pada Text1 sTemplate = "!@#$%^&*()_+=" If InStr(1, sTemplate, Chr(KeyAscii)) > 0 Then _ KeyAscii = 0 End SubNote the code above, each data that we input in the textbox will be accepted except the characters contained in the sTemplate variable
Press F5 and see the result
T&T#6) CALCULATING THE WORD IN TEXTBOX
Open the new Standard Exe project, and place 1 textbox and 1 commandbutton, and set it with the following properties :
TextBox
Name : Text1
Text : (empty)
CommandButton
Name : cmdCount
Caption : &Count
Press F7 and type in the following code :
Private Sub cmdCount_Click() 'Type a few sentences long enough 'thus containing up to tens or even hundreds 'words to try the word count function below. MsgBox GetWordCount(Text1.Text) End Sub Public Function GetWordCount(ByVal Text As String) As Long 'Define a hyphen at each end 'lines that are part of the whole word, 'so combine together. Text = Trim(Replace(Text, "-" & vbNewLine, "")) 'Replace a new row with a single space Text = Trim(Replace(Text, vbNewLine, " ")) 'Replace a space more than one (if any) 'into a single space Do While Text Like "* *" Text = Replace(Text, " ", " ") Loop 'Separate the string and return the calculated word GetWordCount = 1 + UBound(Split(Text, " ")) End FunctionPress F5 and see the result
T&T#7) POP UP MENU IN TEXTBOX
Open the new Standard Standard project, and place 1 textbox and name it Text1, and make a menubar, you can specify what is inside the menubar, note the illustration below
Press F7 and type in the following code :
Private Const WM_RBUTTONDOWN = &H204 Private Declare Function SendMessage Lib "user32" Alias _ "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, _ ByVal wParam As Long, lParam As Any) As Long Public Sub OpenContextMenu(FormName As Form, menuName As Menu) Call SendMessage(FormName.hwnd, WM_RBUTTONDOWN, 0, 0&) FormName.PopupMenu menuName End Sub Private Sub Form_Load() MyMenu.Visible = False 'To be invisible at the top of the form End Sub Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, _ X As Single, Y As Single) 'Replace 'MyMenu' with the menu you want to appear as pop up. If Button = vbRightButton Then _ Call OpenContextMenu(Me, Me.MyMenu) End SubPress F5 and see the result
Right click on the textbox and a pop up menu will appear
T&T#8) HIGHLIGHT ALL CHARACTERS IN TEXTBOX
Open the new Standard Exe project, then place a textbox and set its properties as follows :
Name : Text1
Text : http://ilmalyakin.blogspot.com
Press F7 and type in the following code :
Private Sub Text1_GotFocus() Text1.SelStart = 0 Text1.SelLength = Len(Text1) End SubPress F5 and see the result
T&T#9) TEXTBOX VALIDATION
Open the new Standard Uns project, then place 2 textbox and 1 commandbutton, and set it with the following properties :
TextBox
Name : Text1
Text : (empty)
Name : Text2
Text : (empty)
CommandButton
Name : cmdExit
Caption : &Exit
Press F7 and type in the following code :
Private Sub cmdExit_Click() End End Sub Private Sub Text1_Validate(Cancel As Boolean) Cancel = Text1.Text <> "abc" End SubPress F5 an see the result
In this example, the cursor will not be able to exit the textbox until the user types "abc".
That's it, some of the common task in TextBox
Good luck.
93 comments
commentsRight away I am ready to do my breakfast, once having my breakfast coming over again to read additional news.
ReplyStop by my web page: funny red cards
Wow! This blog looks exactly like my old one! It's on a totally different topic but it has pretty
Replymuch the same page layout and design. Great choice of colors!
Here is my blog ... business
Ahaa, its fastidious dialogue on thee topic oof this article at this pkace
Replyat this web site,I have read all that, so now me also commenting here.
my web-site - Informal Communication (redundantnanny709.soup.io)
Hey there! I've been reading your site for some time now and finally got the bravery to go ahead and give you a shout out from Huffman Tx!
ReplyJust wanted to mention keep up the good job!
Look at my site; cheap fifa ultimate team coins
Kubota make their own diesel engines and claim that they use between 20
Replyand 30% less fuel a typical gasoline engine. Seize the opportunities of
enterprise policy and the financial crisis to win the game one can not be ignored weight.
A lot of tractor services find offered by firms and
individuals in St.
My homepage; kubota diesel engine v2203
Fantastic beat ! I wish to apprentice while you amend your site, how can i subscribe for a blog site?
ReplyThe account helped me a acceptable deal. I had been a little bit acquainted of this your broadcast provided bright clear
idea
Also visit my site :: speedy ninja hack tool
Running one of their Boost Cooler kits on a DPF-equipped diesel truck still led to lower exhaust gas temperatures and increased horsepower.
ReplySymbolic Representation Christensen, "Comparative here in vitro courses connected with relevant injure care products in direction of public-tied methicillin-resistant Staphylococcus aureus," Some Of The Log at Antimicrobial
Chemotherapy, June 30, 2008, Vol. This is because the costs for preparing a luxury vehicle for transportation and making sure it's
well protected, so it doesn't get damaged, are higher than they are for cheaper vehicles.
my webpage ... QSB CUMMINS ENGINE SERVICE MANUAL
Everything is very open with a very clear explanation of the issues.
ReplyIt was really informative. Your site is very useful. Thanks for sharing!
Feel free to visit my weblog :: Bangkok Condo Rental
It's an remarkable post in favor of all the online visitors; they will get advantage from it I am sure.
ReplyHere is my web-site :: web host
Actually when someone doesn't know after that its up to other users that they will assist, so here
Replyit occurs.
my blog post - soccer star 2016 world legend
Through a network of "underground doctors" working free
Replyand outside the system, Elena ended up with doctor Syrigos.
Additionally, data and sales analysis can be performed with the access of real-time information about sales and inventory.
Microsof Company Margaret Zhang - Campaigns Manager.
Also visit my homepage :: zielona kawa
Generally I do nott read post on blogs, however I would like
Replyto say that this write-up very pressured me to try and do it!
Your writing style hass been surprised me. Thanks,
very great post.
Here is my homepage simcity-builditcheats.com
Always make sure there is insurance so that if anything does happen you will know that it is going to be fixed.
ReplyThey can carry every category of vehicles to different places and you do not have
to worry about anything. when you have got many quotes in hand, and you have got compared them, it
ought to be straightforward to settle on a high quality company with exceptional rates.
My blog post :: gablota informacyjna
I simply could not depart your web site prior to suggesting that I actually enjoyed the standard
Replyinformation an individual provide in your visitors? Is gonna be again incessantly in order to check out new
posts
Feel free to visit my homepage - Fresh Title review
If it is present, use it and amend it accordingly to your redirect.
ReplyIt is the index that processes all the facts debated over above and then dispenses a closing website worth of web basing on the ending value of that specific index.
But I had moved the blog from the root to a "blog" folder.
I've included raspberries as the main ingredient for this as the results are more
Replyreliable than using beetroot; although if it's beet season then it
would be a shame not to use them, just be aware that the tone of the color may
be inconsistent. This enables you to find the optimal time to consume
before a session. Types: Percolators brew coffee in a self-contained urn that can be easily transported to a meeting room, breakfast bar,
etc.
Also visit my weblog - zielona kawa
Hey! I know this is kinda off topic nevertheless I'd figured
ReplyI'd ask. Would you be interested in exchanging
links or maybe guest authoring a blog post or vice-versa?
My website covers a lot of the same topics as yours and I
believe we could greatly benefit from each other.
If you might be interested feel free to shoot me an e-mail.
I look forward to hearing from you! Fantastic blog by the way!
my blog
Hello there, I think your blog could possibly be having browser compatibility problems.
ReplyWhen I look at your site in Safari, it looks fine
however when opening in I.E., it's got some overlapping issues.
I simply wanted to give you a quick heads up! Besides that, wonderful website!
My site: king of thieves hackers
I don't even know how I ended up here, but I thought this post
Replywas good. I don't know who you are but certainly you are
going to a famous blogger if you aren't already ;) Cheers!
Here is my homepage meditub joe schwartz
Awesome article.
ReplyHere is my blog - mutant metal blood hack
Hi! This post couldn't be written any better! Reading through this post
Replyreminds me of my previous room mate! He always kept talking about this.
I will forward this article to him. Fairly certain he will have a good read.
Thanks for sharing!
My web blog ... speedy ninja cheats
I do not even know how I ended up here, but I thought this post was good.
ReplyI do not know who you are but definitely you're going to a famous blogger if you aren't already ;) Cheers!
Also visit my page; ENGINEER
A backlink can be posted as a blog comment, as a bookmark, as a link in an article author box,
Replyon a web 2. You should add value for the discussion and not spam the website.
One of the reasons the internet is so popular is that is where most people go to find information on how to get information on any
subject that is available.
Also visit my web page; free Seo tools
It will, however make it so that children cannot walk into the store and buy the games on their own - the same restriction we have for pornography, tobacco, and alcohol products.
Replyeval(ez_write_tag([[300,250],'brighthub_com-medrectangle-4']));.
(b) The amount by which disposable income is greater than 30
times the federal hourly rate of $7.
Feel free to visit my homepage - indian consumer court
Hi to every single one, it's truly a nice for me to visit this website,
Replyit includes precious Information.
Also visit my blog cara alami untuk mengobati keputihan
Elle pouvait donc le faire malgré toutes ses robes… eh beh putain.
ReplyMy homepage :: télékinésie pyramide forum
If you want to take a great deal from this piece of writing then you have to apply these techniques to your
Replywon webpage.
Here is my web site: world spa schwartz joe
So with new graphics cards geared up on the prepared and dozens of COMPUTER-exclusives releasing each month,
Replythere's by no means been a better time to bring that PC out from beneath the desk and place it prominently as
part of your front room console lineup.
Also visit my homepage: gaming computers best buy
Beli Anti Gores Handphone / Tablet - Kualitas Terbaik, Harga Murah, Pengiriman Cepat,
ReplyPelayanan Professional dan Terpercaya.
Have a look at my blog :: anti gores Advan Star Note 5 bagus
That is really interesting, You're a very skilled blogger.
ReplyI've joined your rss feed and look ahead to in search of extra
of your magnificent post. Additionally, I have shared your site in my social networks
My site: spinal manipulation
Whether you need a one-off garbage clearance job or common waste removal
Replyin Hastings, give us a call on 01424 203 878 for a free quote.
Here is my weblog :: rubbish clearance jobs bristol
Wonderful blog! I found it while surfing around on Yahoo News.
ReplyDo you have any tips on how to get listed in Yahoo News?
I've been trying for a while but I never seem to get there!
Thanks
Also visit my homepage; Berita Liga Spanyol
I used to be suggested this web site via my cousin. I am now not positive whether or not this publish is written by way of him as no one else recognize
Replysuch targeted approximately my trouble. You're wonderful!
Thanks!
Here is my web page lasertest
May I simply just say what a relief to uncover an individual who genuinely understands what they are talking about on the internet.
ReplyYou definitely know how to bring an issue to light
and make it important. A lot more people have to check
this out and understand this side of your story. I can't believe you're not more popular because you definitely possess the gift.
Stop by my website :: business
Appreciating the dedication you put into your website and in depth information you present.
ReplyIt's great to come across a blog every once in a while that isn't the
same unwanted rehashed material. Fantastic read!
I've bookmarked your site and I'm including your RSS feeds to my
Google account.
Also visit my web-site: blogger (www.motpwh.gov.mw)
Hey There. I found your blog using msn. This is a
Replyreally well written article. I'll be sure to bookmark it and come back to read more
of your useful information. Thanks for the post. I'll definitely comeback.
Also visit my homepage: lasertest
I visited multiple sites Ьut the audio feature f᧐r audio songs
Replypгesent at this website іs іn faⅽt excellent.
I was suggested this website by my cousin. I'm not sure
Replywhether this post is written by him as nobody else know such detailed about my trouble.
You're incredible! Thanks!
I'll have to say that you are doing a very great job in writing
Replygood articles like this. I've bookmarked you and will gladly follow
your upcoming articles.
Thanks again.
conor mcgregor vs floyd mayweather fight
Fastidious answers in return of this question with genuine arguments and telling the whole thing concerning that.
ReplyHiya very nice site!! Man .. Beautiful ..
ReplyAmazing .. I'll bookmark your website and take the feeds also?
I'm glad to seek out numerous useful information right here within the submit, we
want work out extra strategies on this regard,
thanks for sharing. . . . . .
How Much Water To Drink To Lose Weight In 3 Days
Thank you for sharing your info. I truly appreciate your
Replyefforts and I am waiting for your next write ups thanks once again.
Thank you for any other great post. Where else may just anybody get that kind
Replyof info in such a perfect approach of writing? I have a presentation subsequent
week, and I am on the look for such info.
You have mentioned very interesting points!
Replyps decent internet site.
Apple has added iTunes Radio in extension to the already existing
ReplyiTunes. This enables the user to tune into genre specific pop music.
If you are keen on purchasing tracks you'll be
able to can make use of the iTunes for this purpose.
I just could not depart your web site prior
Replyto suggesting that I extremely loved the standard information an individual provide in your guests?
Is going to be again often in order to investigate cross-check new posts
My brother recommended I might like this website. He was entirely right.
ReplyThis publish actually made my day. You cann't believe just how so much
time I had spent for this info! Thank you!
We're a bunch of volunteers and starting a brand new scheme in our community.
ReplyYour website offered us with valuable information to paintings on. You
have done an impressive task and our entire group shall
be thankful to you.
Wow that was strange. I just wrote an extremely long comment
Replybut after I clicked submit my comment didn't show up. Grrrr...
well I'm not writing all that over again. Anyway, just wanted to say fantastic blog!
We're a group of volunteers and starting a new scheme in our community.
ReplyYour site offered us with useful info to work on. You have
done a formidable activity and our whole community
will be grateful to you.
Thanks for every other wonderful article. Where else may anybody get
Replythat type of information in such an ideal approach of writing?
I have a presentation next week, and I am at the look for
such info.
Everything is very open with a precise description of the
Replyissues. It was definitely informative. Your website is very helpful.
Thank you for sharing!
I'm curious to find out what blog system you happen to be using?
ReplyI'm having some small security issues with my latest site and
I'd like to find something more secure. Do you
have any solutions?
NOOB
ReplySimply to follow up on the update of this
Replyissue on your website and want to let you know how much I
prized the time you took to generate this useful post. In the post,
you actually spoke of how to definitely handle this thing with all ease.
It would be my pleasure to get some more suggestions from your
blog and come as much as offer some others what I have learned from you.
Thank you for your usual excellent effort.
Its not my first time to pay a visit this web site, i am browsing this web
Replypage dailly and take fastidious information from here everyday.
I am really inspired along with your writing talents as well as with
Replythe structure to your blog. Is that this a paid subject
or did you modify it your self? Either way keep up the nice high quality writing, it is uncommon to peer a great weblog like this one nowadays..
CemerlangPkr.com adalah salah satu QIU QIU dan DOMINO QIU QIU
Replyserta BANDAR Q terpercaya di seluruh Indonesia. CemerlangPoker kini memberikan pelayanan 24 jam Deposit & Withdraw
dan cepat serta minimal deposit hanya Rp.20.000. Kammi juga memiliki berbagai Event & Bonus yang menarik
tentunya akan menguntungkan anda. Mari segera
bergabung dengan kami CemerlangPoker AGEN POKER & AGEN DOMINO UANG
ASLI TERPERCAYA
I'm curious to find out what blog system you happen to be working with?
ReplyI'm experiencing some small security problems with my
latest blog and I'd like to find something more safe.
Do you have any solutions?
Nice blog here! Also your web site loads up very fast!
ReplyWhat host are you using? Can I get your affiliate
link to your host? I wish my site loaded up as fast as
yyours lol
Wow that was odd. I just wrote an very long comment bbut
Replyafter I clicked submit my comment didn't appear. Grrrr... well I'm not writing aall that over
again. Anyway, just wanted to say great blog!
All Slots has lots and plenty of on-line slots.
Replyhey there and thank you for your information – I have certainly picked up
Replyanything new from right here. I did however expertise
a few technical points using this web site, as I experienced to
reload the web site many times previous to I could get it to load correctly.
I had been wondering if your web hosting is OK?
Not that I am complaining, but slow loading
instances times will often affect your placement in google and can damage your high quality score if ads and marketing with Adwords.
Well I'm adding this RSS to my e-mail and could look out for a
lot more of your respective interesting content.
Make sure you update this again soon.
I'm curious to find out what blog platform you have been working
Replywith? I'm experiencing some minor security problems with my latest blog and I would like to find something more safe.
Do you have any recommendations?
At this moment I am ready to do my breakfast, later than having my breakfast
Replycoming again tto read other news.
Good day! I simply want to offer you a huge thumbs up for the great info you've got here on this post.
ReplyI'll be returning to your website for more soon.
Welcome to All Slots Canadian Online On line casino.
ReplyWelcome to All Slots Canadian On-line On line casino.
ReplyWelcome to All Slots Canadian On-line Casino.
ReplyAll Slots has lots and plenty of online slots.
ReplyI'm not sure the place you're getting your information, however good
Replytopic. I must spend some time studying much more or
figuring out more. Thanks for great info I used to be
searching for this info for my mission.
Wow! After all I got a website from where I be able to rally get valuable information regarding my study and knowledge.
ReplyYou are so cool! I do not think I've read through a single thing like this before.
ReplySo good to discover someone with a few original thoughts on this issue.
Seriously.. many thanks for starting this up. This site is
something that is needed on the web, someone with some originality!
Great story once again. I am looking forward for more updates.
ReplyThank you for sharing your info. I truly appreciate your efforts and I
Replywill be waiting for your further write ups thank you once again.
You really make it seem so easy together with your presentation but I in finding this topic to be really something which I feel I'd never understand.
ReplyIt sort of feels too complicated and very wide for me.
I'm looking ahead for your next put up, I will attempt
to get the cling of it!
Welcome to All Slots Canadian Online Casino.
ReplyWelcome to All Slots Canadian Online On line casino.
ReplyExcellent goods from you, man. I've understand your stugf
Replyprevious to and yyou are juet extremely excellent. I actually like what you have acquired here, certainly likke what
you are saying and the way in which you say it.
You make it enjoyable and you still take csre of tto keep it smart.
I can not wait to read much more from you. This is actually
a wonderful site.
Hello, Neat post. There's aan isssue together with your web site in internet explorer,
Replymight test this? IE still is the marketplace leader and a large
prt of other folks will omit your masgnificent writing due to thks problem.
All Slots has tons and lots of on-line slots.
ReplyAll Slots has heaps and lots of online slots.
ReplyWelcome to All Slots Canadian On-line On line casino.
ReplyHeya i am for the first time here. I came across this board
Replyand I in finding It really useful & it helped me out much.
I am hoping to offer one thing again and aid others such as you helped me.
All Slots has lots and many online slots.
ReplyWelcome to All Slots Canadian On-line On line casino.
ReplyLink exfhange is nothing ese however iit iss only placing
Replythe other person's blog link on your page at appropriate place and other
person will also do same for you.
Sports Jersey for sale, supply usa 15 Phillip Dorsett
ReplyJersey free shipping with paypal also free gift can get.
Welcome to All Slots Canadian Online Casino.
ReplyIt's impressive that you are getting thoughts from this article as well as from our discussion made at this place.
ReplyAll Slots has lots and lots of on-line slots.
ReplyWow, superb blog layout! How long have you been blogging for?
Replyyou make blogging look easy. The overall look of
your web site is wonderful, let alone the content!
ReplyThanks for publishing this details. I simply wish to let you know that I just look into your site and also I locate it really fascinating and useful.
Click Here : farm tractors for sale 260-60 HP TURBO