និស្សិតជាយដែន​ Online knowledge សូមស្វាគមន៏! និស្សិតជាយដែន​ Online knowledge គឺជាគេហៈទំព័រដែលសិក្សា ស្វែងយល់អំពីភាពប្លែកដែលមាននៅលើអ៊ិនធើណែត ។ រាល់ឯកសារដែលមាននៅលើគេហៈទំព័រនេះសុទ្ធសឹងតែស្វែងរកពីគេហៈទំព័រដទៃទៀត ។ ខ្ញុំបាទជាម្ចាស់នៃប្លុកនេះសូមថ្លែងអំណរគុណចំពោះម្ចាស់គេហៈទំព័ដទៃទៀតដែលបានបង្ហោះឯកសារសុទ្ធសឹងតែឯកសារល្អៗ ដែលបង្ករលក្ខណៈសំរាប់រូបខ្ញុំបាទក៏ដូចជានិស្សិតដទៃទៀតបានសិក្សាស្វែងយល់ផងដែរ ។ ជាមួយគ្នានេះផងដែរបើមិត្តអ្នកសិក្សាមានឯកសារចង់ចែករំលែក សូមផ្ញើរមកអ៊ីម៉ែលរបស់ខ្ញុំំបាទ uk.serey@gmail.com ខ្ញុំបាទនឹងបង្ហោះលើគេហៈទំព័មួយនេះ សូមបញ្ជក់ផងដែថា ខ្ញុំបាទទទួលចំពោះឯកសារណាដែលមិនមានជាគុណប្រយោជន៏ដល់ការសិក្សាទេ ។ ពត៌មានបន្ថែមសូមទំនាក់ទំនងមករូបខ្ញុំបាទតាមលេខទូស័ព្ទ ០៩៨ ៩៣ ២៣៩៦ /០១៧ ៨៨ ៦០ ៥៤ ខ្ញុំបាទចាំទទួលដោយរីករាយ …សូមអគុណរ ! !    ||
Home » » How to Make a Web Browser http://www.wikihow.com/Make-a-Web-Browser

How to Make a Web Browser http://www.wikihow.com/Make-a-Web-Browser

Edited by Daniel Fass, Maluniu, June, Jack Herrick and 13 others
While there are many Internet browsers such as Internet Explorer, Firefox and Google Chrome that can be downloaded and installed on your computer for free, creating web browsers yourself gives you more control over how you want to browse the Internet. With a custom web browser you can not only decide how the appearance should be but also add custom buttons and features. Visual Basic is 1 of the most common programs used to make a web browser.

Steps
  1. Make a Web Browser Step 1.jpg
    1
    Install Visual Basic on your computer by either downloading the software from the Visual Basic Developer Center website or using an installation disk.
    Ad
  2. Make a Web Browser Step 2.jpg
    2
    Run Visual Basic and start a new project by going to the File menu and clicking on "New Project."
  3. Make a Web Browser Step 3.jpg
    3
    Browse over "Text" and select "Web Browser" in the form page that appears.
  4. Make a Web Browser Step 4.jpg
    4
    Go to "View" in the top menu bar, browse over "Other Windows" and click on "Toolbox." This will display the Visual Basic toolbox.
  5. 5
    Double-click on the WebBrowser tool in the toolbox.

    Make a Web Browser Step 5.jpg
  6. Make a Web Browser Step 6.jpg
    6
    Press the right arrow icon on the top-right of the form and click on "Undock in Parent Container." This will change the view of the form from full-screen to a smaller window within the Visual Basic interface.
  7. Make a Web Browser Step 7.jpg
    7
    Resize the web browser form to your desired size using the clickable outline around it.
  8. 8
    Set the URL (Uniform Resource Locator) property to a website address that you wish to visit. This will open up a test website so you can see what a website will look like when opened through your Internet browser.

    Make a Web Browser Step 8.jpg
  9. 9
    Create a new button and assign the following properties to it.

    Make a Web Browser Step 9.jpg
    • The text on the button should say "Go."
    • Name the button as "GoBtn."
  10. Make a Web Browser Step 10.jpg
    10
    Trigger the button by double-clicking on it. This will pop up a private sub. Enter the following code between the private and end subs (you can replace "URL" with any website address).
    • WebBrowser1.Navigate(URL)
  11. Make a Web Browser Step 11.jpg
    11
    Test the button by clicking on it. It should take you away from the test website to the destination website assigned for the button.
  12. 12
    Select the TextBox tool from the toolbox.

    Make a Web Browser Step 12.jpg
  13. Make a Web Browser Step 13.jpg
    13
    Drag the TextBox tool and drop it on the custom web browser form that you are creating.
  14. 14
    Name the text box as "addressTxt."

    Make a Web Browser Step 14.jpg
  15. Make a Web Browser Step 15.jpg
    15
    Go back to the button you created earlier and replace the URL with "addressTxt.Text." This indicates that you want to use the button to go to whatever URL is typed in the address bar.
  16. Make a Web Browser Step 16.jpg
    16
    Test the address bar by using it to visit different websites.
  17. Make a Web Browser Step 17.jpg
    17
    Save the web browser that you have just created as a program through Visual Basic by selecting the option to save through the File menu.