02.06.2008

Simple VB Code with Command Buttons

In this tutorial we will look into changing other controls in the command of varying buttons. I am trying to keep these VB tutorials quick and simple so that they are easy to understand and you are able to do this stuff enough to be able to remember it. First we need to create the form. I will post two pictures, one of the form showing what I called all the controls on the form, and one that shows the text that I applied to each one. In this tutorial I will be using panels to show the changes made. Since panels contain no text I can’t put their names on them. I simply named them pnlXXXX (where XXXX is the same as the button below it Ex. The one on the left is pnlSize).

Basic_VB_Programming_2_01

Note: Make sure you make all 4 of the panels have a border style of FixedSingle under the properties menu. Now we can start adding the code to make these buttons do the changes we want to make. First lets program the exit button as it is the most simple to do. Remember, to start programming for a button, all we need to do is double-click on it in the GUI section. So, let’s double click on our Exit button and add the word “End” to it as below:

    Private Sub cmdExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdExit.Click
        End
    End Sub

Next we need to program the first panel to first change to a smaller size when we first click the button and then change back to normal when we click it again. To differentiate between which mode it is in we will use and if statement to check its current size. Double click on the Change Size button to start adding the code. All of my panels are a size of : “66, 32” – Shown as Width, Height. Add the code as shown below:

    Private Sub cmdSize_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdSize.Click
        If pnlSize.Width = 66 Then
            pnlSize.Width = 33
        Else
            pnlSize.Width = 66
        End If
    End Sub

The code simply checks to see if the panel is at its current width of 66 pixels and if it is, it changes it to 33 pixels. If it’s not at 66 it must be 33 pixels and sets it back to 66. Next we need to code our color changing button. Note: Please set this panel’s backcolor property to Red (once you clikc backcolor an option menu will come up, select the web optioni and go to red)before putting in the code. We are going to make this a little trickier by throwing in and ElseIf statement. I will explain after I show you the code:

    Private Sub cmdColor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdColor.Click
        If pnlColor.BackColor = Color.Red Then
            pnlColor.BackColor = Color.Blue
        ElseIf pnlColor.BackColor = Color.Blue Then
            pnlColor.BackColor = Color.Orange
        Else
            pnlColor.BackColor = Color.Red
        End If
    End Sub

This code is the same as the If statement that we had before in our previous tutorial but we added one more condition. This time the application checks to see if the box has the backcolor of red(If) and if it does it changes it to blue. If it is not Red then it checks to see if it is blue (Else If) and if it is it changes it to orange. If it is not red or blue it changes it to red (Else). This way it will make a continuous loop from Red to Blue to Orange. Our next button is going to change the border type of our panel. This is the code that should be place within the sub after double-clicking on the button:

    Private Sub cmdBorder_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdBorder.Click
        If pnlBorder.BorderStyle = BorderStyle.FixedSingle Then
            pnlBorder.BorderStyle = BorderStyle.Fixed3D
        ElseIf pnlBorder.BorderStyle = BorderStyle.Fixed3D Then
            pnlBorder.BorderStyle = BorderStyle.None
        Else
            pnlBorder.BorderStyle = BorderStyle.FixedSingle
        End If
    End Sub

This code is similar to our previous button except we are doing it with borders. There are three types of border (well, two really and then no border). This section of code is checking to see if our panel has a borderstyle of FixedSingle (which is how it is starting) and if it is, sets it to have a style of Fixed3D (If). If it is not Fixedsingle it checks to see if it is Fixed3D, and changes it to none if it is (Else IF). If it is not FixedSingle or Fixed3D it changes it to FixedSingle (Else) Our next and last button is going to change the visibility of the form (Make is visible or not). Here is the code:

    Private Sub cmdVisible_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdVisible.Click
        If pnlVisible.Visible = True Then
            pnlVisible.Visible = False
        Else
            pnlVisible.Visible = True
        End If
    End Sub

This code is not different from our others really. Visibility is known as a Boolean Type. It is either true or false. It is checking to see if the panel’s visibility is currently set to true and if it is it sets it to false, otherwise it sets it to true. This should conclude the code of the tutorial. You should no be able to run the application and the button will make the panels do their respective tasks. If you have any questions please comment. Thanks for viewing.

Other Related Tutorials

Comments

  1. Monish Shah on March 7, 2008 at 12:58 am

    Please tell me solution of the following

    1) – When i create a command button in vb 2005 form to open another it is been working properly but when i create a back button command in another form to show the previous form it does not work.

    2) – How to move from one form to another by closing first form. This is in vb 2005

    [Reply]

    pico Reply:

    use the .show to load that object or load the form object with the load formname code.

    [Reply]

  2. Mike Maguire on March 7, 2008 at 3:23 pm

    Are you hiding the original form or leaving it up behind the form you are opening? If you are leaving it up you should be able to close the new form and your original form should appear. If you are closing the form, which command are you using to close it?

    [Reply]

  3. jerome gatchalian on March 10, 2008 at 12:26 am

    baoninam!!!vuvu…aliwa ya ai code u..DOGYUT

    [Reply]

  4. Monish on March 30, 2008 at 1:45 pm

    guys i wanted the code for search button
    here the button searches the text in textbox

    and display the result in the relative text box

    [Reply]

  5. mell on April 20, 2008 at 11:37 pm

    hye…my name is mellissa…all i want to know now…could u please give me a very good book about vb…basic one…but very up to date…including pictures in case if i didn’t get the coding…like how to make a password n stuff like that…please do recommend a very good book please…thank u

    [Reply]

  6. Sam on April 22, 2008 at 3:28 am

    Hey Am Sam I want to code a search button to be such that,I can sear ch using Both names”Text ” and Numbers.The part of searching using numbers am ok with it but for text…Its really giving me head ache…
    I will appreciate.

    [Reply]

  7. Sam on April 25, 2008 at 5:25 am

    I just finished my project in visual Basics

    [Reply]

  8. Sam on April 25, 2008 at 5:31 am

    Ave just finished my vb project and compiled it to an exefile.Ave also packaged it…but when i try to installe it …I get an error mesage “msado…file is missing.with option of whether to ignore.abort or retry…I choose Ignore after retrying for several times …The problem is after installing ..It can run…It displaying a dialog box indicating that its suching for a certain file what might be the problem?

    [Reply]

  9. amb on May 5, 2008 at 4:18 am

    hi helpme code for the delete ,search commands and connect the project to database in access
    your website is good

    [Reply]

  10. sam on May 5, 2008 at 12:10 pm

    Hi there,

    Thanks for your your tutorial. It’s just the sort of thing I’ve been looking for.

    I am a beginner and I understand everything here. It works perfectly!

    Excellent site – I’ll be back!

    [Reply]

  11. hate on May 28, 2008 at 8:03 am

    Hi there,
    I just want to ask what is the code I need if I want to send output signal to the parallel port? Im going to use this for controlling relays. Thanks in advance

    [Reply]

  12. accounting chick on August 11, 2008 at 9:28 pm

    Hi,

    I am creating a database that has a switchboard in it and I need to know how to create a command button that you can press to work your way back through the switchboards that you have viewed. Does anyone know the code that I can use to do this?

    Thanks.

    [Reply]

  13. Mike(TeamTutorials) on August 12, 2008 at 4:20 am

    Accounting chick,
    Can you explain in a little more detail what you have already and what you are trying to achieve and maybe I can create/help you find a solution for you?

    [Reply]

  14. jerry on August 13, 2008 at 4:01 am

    hi just wanna ask how to put database on visual basic !_!
    need reply asap

    [Reply]

  15. Mike Maguire on August 13, 2008 at 5:01 am

    You want to store it in visual basic, or you want to connect to it using VB?

    [Reply]

  16. Soso on August 16, 2008 at 10:51 am

    I m usng VB on microsoft Office bt all my forms are not doing what they are suppose to so plz help me about what l must do

    [Reply]

  17. ibrahim on September 18, 2008 at 3:36 pm

    can you help me to turn the digital image into paint oil or water color form in visual basic 6

    [Reply]

  18. Catherine on February 3, 2009 at 11:36 pm

    Hi!!

    guys i wanted to know the code of the search button
    in visual basic….
    can you help me??

    [Reply]

  19. Ben on February 23, 2009 at 7:26 pm

    I’m having the worst time trying to find code for (a+) and (a-) buttons to make the text bigger and smaller. Computer science is hard.

    [Reply]

  20. Ben on February 23, 2009 at 7:27 pm

    Email me at Bennymyster@comcast.net if there’s any possible way you can help me.

    [Reply]

  21. Kathlena on May 22, 2009 at 9:48 am

    Hii,

    All I want 2 know is, how do you program a “Next Button(command button) ” to turn to another part of a program??

    [Reply]

    Mike Maguire Reply:

    What exactly do you mean by turning to another part of the program. If you are a little more descriptive, I should be able to help you with what you need.

    [Reply]

    pico Reply:

    You can use the tab control and write a code in the click event of the command button, targeting the tab index.

    [Reply]

  22. ammerigader on June 21, 2009 at 1:51 pm

    Hi there, If you don’t like topics with many links, just delete this topic.
    Thankyou.

    [Reply]

  23. richard on August 18, 2009 at 4:54 am

    Hi im richard do you have any sample code for the vbgames like checkers..and how to code the search button using datacontrol can u please help me about that, tHANKS….

    [Reply]

  24. grace on August 18, 2009 at 4:57 am

    hi there…wats up…can u please help me about my problem can you please give me sample program for the vbgames like chinese checkers..and also the for searching using the data control..

    [Reply]

  25. grace on August 18, 2009 at 4:58 am

    how to code in searching using the data control…..can you please answer that for me …

    [Reply]

  26. jazilel on August 18, 2009 at 5:00 am

    hi can you please give me a sample codes for vbgames like checkers thanks…please put a sample program to your website that more understandable thanks…

    [Reply]

  27. jazilel on August 18, 2009 at 5:05 am

    to jerry it very simple you know just like this you need to put a data to your form then set your databasename to the vb and also the recordset..then you need to code for it…

    [Reply]

  28. jammi on August 31, 2009 at 5:39 am

    can u tell me all about compilers of c++

    [Reply]

  29. THuso on October 22, 2009 at 5:39 am

    Please assist me with a code for a search button using Visual Basic and searching multiple fields from SQL

    [Reply]

  30. tqah on December 13, 2009 at 9:56 pm

    I m currently doing a VB project and Ive got some ques:

    1)What is the code to link the button to other pages?
    2)How to I store excel data to the vb proj that Im doing now?

    [Reply]

  31. hael on February 15, 2010 at 5:03 am

    hi..can i ask about the codes of add,edit and search buttons for visual basic 6.0..thank you..

    [Reply]

  32. arra florendo on March 5, 2010 at 6:04 am

    eLoOw!!! wilL yOu gIve sOmE coDes oN thE neXt aND eXiT ButTonS??? Tnx..

    [Reply]

  33. kAyE on March 5, 2010 at 6:06 am

    hOw tO aDd BackgRouNd iN a CerTain Vb Form???

    iS iT thE saMe As inSerTinG ImaGes???

    [Reply]

  34. grhacie on March 18, 2010 at 10:34 pm

    please..help me for the code for command button for search

    [Reply]

    pico Reply:

    Private Sub textsearch_KeyUp(KeyCode As Integer, Shift As Integer)
    flxgrid.Refresh
    ‘On Error Resume Next
    If textsearch = “” Then: Exit Sub
    If rs.Filter = “” Then rs.Requery: Set flxgride.DataSource = rs
    rs.Filter = Combo1.Text & ” Like ‘” & textsearch & “%’”
    Set flxgrid.DataSource = rs

    [Reply]

  35. Mike Maguire on March 18, 2010 at 10:45 pm

    Need more details to be able to assist you. What are you trying to search? How are you collecting data to search? What do you have on the form?

    [Reply]

  36. phpcode » Simple VB Code with Command Buttons on March 19, 2010 at 10:10 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  37. Simple VB Code with Command Buttons « learncomputertutorials on March 19, 2010 at 10:16 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  38. Simple VB Code with Command Buttons « Learn Computer Tutorials on March 19, 2010 at 10:18 am

    [...] Simple VB Code with Command Buttons By nozmexviap This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  39. Simple VB Code with Command Buttons « Computer Help Tutorials and Tips on March 19, 2010 at 10:24 am

    [...] Simple VB Code with Command Buttons By terpdo This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  40. Learn Computer Tutorials » Blog Archive » Simple VB Code with Command Buttons :: iBlog on March 19, 2010 at 10:24 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  41. Simple VB Code with Command Buttons « programmingandcomputertutorials on March 19, 2010 at 10:26 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  42. Simple VB Code with Command Buttons - Learn Computer Tutorials on March 19, 2010 at 10:27 am

    [...] Simple VB Code with Command Buttons Mar.19, 2010 in Uncategorized This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  43. Simple VB Code with Command Buttons on March 19, 2010 at 10:28 am

    [...] understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons Posted by alfovalxy Uncategorized Subscribe to RSS [...]

  44. Computer Help Tutorials and Tips » Simple VB Code with Command Buttons on March 19, 2010 at 10:28 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  45. Simple VB Code with Command Buttons : Computer Help Tutorials and Tips on March 19, 2010 at 10:30 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  46. Simple VB Code with Command Buttons « phpcode on March 19, 2010 at 10:31 am

    [...] understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons Comments [...]

  47. Simple VB Code with Command Buttons || Tutorials on March 19, 2010 at 10:33 am

    [...] understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons var addthis_language = [...]

  48. PHP Code » Simple VB Code with Command Buttons on March 19, 2010 at 10:34 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  49. » Simple VB Code with Command Buttons tutorials on March 19, 2010 at 10:34 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  50. Tutorials » Archiwa bloga » Simple VB Code with Command Buttons on March 19, 2010 at 10:36 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  51. PHP Code » Blog Archive » Simple VB Code with Command Buttons on March 19, 2010 at 10:36 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  52. learncomputertutorials on March 19, 2010 at 10:36 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  53. Booned — Blog — Simple VB Code with Command Buttons on March 19, 2010 at 10:37 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  54. Learn Computer Tutorials » Simple VB Code with Command Buttons on March 19, 2010 at 10:37 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  55. Tutorials » Simple VB Code with Command Buttons on March 19, 2010 at 10:40 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  56. Tutorials » Blog Archive » Simple VB Code with Command Buttons on March 19, 2010 at 10:41 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  57. Computer Help Tutorials and Tips » Blog Archive » Simple VB Code with Command Buttons on March 19, 2010 at 10:44 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  58. Simple VB Code with Command Buttons « computerhelptutorialsandtips on March 19, 2010 at 10:44 am

    [...] understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons Comments [...]

  59. tutorials on March 19, 2010 at 10:45 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  60. Simple VB Code with Command Buttons « tutorials on March 19, 2010 at 10:46 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  61. Simple VB Code with Command Buttons « learncomputertutorials on March 19, 2010 at 10:46 am

    [...] understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons Comentarios [...]

  62. Tutorials » Simple VB Code with Command Buttons :: iBlog on March 19, 2010 at 10:49 am

    [...] understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons « Simple VB Code and All About Arrays Simple Computer “Tune-up” Using [...]

  63. programmingandcomputertutorials on March 19, 2010 at 10:52 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  64. Simple VB Code with Command Buttons – phpcode on March 19, 2010 at 10:52 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  65. Simple VB Code with Command Buttons « Programming and Computer Tutorials on March 19, 2010 at 10:54 am

    [...] Simple VB Code with Command Buttons By aviaworking This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  66. programmingandcomputertutorials » Blog Archive » Simple VB Code with Command Buttons on March 19, 2010 at 10:58 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  67. phpcode › Simple VB Code with Command Buttons on March 19, 2010 at 11:05 am

    [...] understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons Geschrieben von ghohvc. Veröffentlicht am Freitag, 19. März 2010 um 16:04. Abgelegt [...]

  68. Simple VB Code with Command Buttons « PHP Code on March 19, 2010 at 11:11 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  69. Balıkesir Üniversitesi Tutorials on March 19, 2010 at 11:16 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  70. tutorials › Simple VB Code with Command Buttons on March 19, 2010 at 11:49 am

    [...] understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons Geschrieben von sideways. Veröffentlicht am Freitag, 19. März 2010 um 16:01. Abgelegt [...]

  71. » Simple VB Code with Command Buttons on March 19, 2010 at 11:56 am

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  72. Balıkesir Üniversitesi PHP Code on March 19, 2010 at 12:06 pm

    [...] This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  73. Learn Computer Tutorials » Blog Archive » Simple VB Code with Command Buttons on March 19, 2010 at 12:11 pm

    [...] understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons Posted in Fără categorie No Responses This entry was posted on Vineri, Martie 19th, 2010 at [...]

  74. Gregory Maynard wrote a new blog post: Simple VB Code with Command Buttons | Free Blog Hosting on March 20, 2010 at 2:53 am

    [...] Gregory Maynard wrote a new blog post: Simple VB Code with Command Buttons Posted: 20th March 2010 by Free Blog – Site Wide Activity in Free Blog 0 Gregory Maynard wrote a new blog post: Simple VB Code with Command Buttons This is the second tutorial in the beginners tutorials that will give you a basic insight into VB programming and lay the groundwork for you to be able to understand more advanced concepts. We will be working with modifying forms using command buttons. Simple VB Code with Command Buttons [...]

  75. venus on May 18, 2010 at 2:27 am

    hi..help me pls..ihave project in vb..wat is the code in command button to show the array images?pls..tnx..

    [Reply]

  76. sony on July 12, 2010 at 9:36 am

    hi pls help me to write codes for search command

    [Reply]