View Single Post
Old 12-17-2007, 02:38 AM   #6
pRoFiT
Maximum Bitrate
 
pRoFiT's Avatar
 
Join Date: Apr 2005
Location: Fresno, CA
Posts: 746
Hope the forum lets me double post
Anyways after a couple seconds i can send searchs to the search box like this.
Created a new form with button1 and textbox1

Code:
Public Class Form1 Dim rr As Object = CreateObject("RoadRunner.sdk") Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim i As Integer Dim ch As String ' must be string to send :) For i = 0 To TextBox1.Text.Length - 1 ch = TextBox1.Text.Chars(i) rr.execute(ch) Next i rr.execute("Enter") End Sub End Class

Simple VB.net code
__________________
Um, I guess this is where you put something witty.WITTY

My Web site, in the design stage. http://home.comcast.net/~cstrachn

Modified RRSkinEditor http://www.mp3car.com/vbulletin/rr-skins/65723-rrskineditor-bugs-fixes-comments-current-progress-outdated.html
pRoFiT is offline   Reply With Quote