Tag: Edition
Make an Auto typer and a Application Opener with Notepad! with Wait and backspace and lots more
by Installer on Apr.03, 2010, under Vbscript
REMEMBER SAVE AS .vbs For Codes go to www.miutubevids.webs.com/sendkeys www.miutubevids.webs.com By Miutubevids thx for watching FOR KEY CODES GOTO www.devguru.com Subscribe/Rate/Comment www.miutubevids.webs.com
Related posts
Desktop Application created in Visual Basic 2008
by Installer on Apr.03, 2010, under Vbscript
A basic Desktop Application created in Visual Basic 2008.
Related posts
How to make a Html editor with Visual basic 2008
by Installer on Apr.02, 2010, under Vbscript
Please visit my website @ www.nickmeow.tk Here is the code for the form1.vb Public Class Form1 Private Sub openbrowsertoolstripmenuitem_click(byval sender As System.Object, byval e As System.eventargs) Handles openbrowsertoolstripmenuitem.Click form2.show() End Sub Private Sub textbox1_textchanged(byval sender As System.Object, byval e As System.eventargs) Handles textbox1.textchanged Form2.webbrowser1.documenttext = textbox1.Text End Sub Private Sub button1_click(byval sender As System.Object, byval e As System.eventargs) Handles Button1.Click Dim request As System.Net.httpwebrequest = System.Net.httpwebrequest.Create(textbox2.Text) Dim response As System.Net.httpwebresponse = request.getresponse() Dim sr As System.IO.streamreader = New System.IO.streamreader(response.getresponsestream()) Dim sourcecode As String = sr.readtoend() textbox1.Text = sourcecode End Sub End Class Please comment rate and subscirbe add your suggestions in the comments for my next video if you need help comment and ill help you
Related posts
Scripting in vbscript – How to get started
by Installer on Apr.02, 2010, under Vbscript
This is me creating a very cheap and simple program that shows how to use the basics of vbscripting. It shows how to use buttons. It shows how to use the IF/Else/End if statements to make a simple login screen It shows how to use the web browser tool to allow users to check their myspace. This video is made for people that don’t even know how to make .bat files and want to see how to start vbscripting. I’m not specificly telling people what all this does, as there are tons of tutorials on youtube telling what to do. This one just shows what you do to START. I plan on making other videos to show things that many people would find usefull such as creating a smooth health bar for a video game that works correctly. Just some things some people may not know, but want to find out. www.devguru.com This is where I learned how to vbscript. To learn what the If/Else/End If statements or other statements do, read here or check out other youtube videos.