Skip to content

ghostriderofthenite Ultimate Bot project

Viewing 15 posts - 241 through 255 (of 305 total)
  • Author
    Posts
  • #100558

    maybe possible to add (LaunchWMP Procedure Launches the specified file in Windows Media Player.) some how to each command button that has youtube links already and send to mediaplayer? then some how capture that and show on cam?

    #100559

    maybe something like this with some changes i’m not sure your the expert im not even a amature hahahah

    ‘ Launch WMP
    If Nz(Me.txtPath, “”) = “” Then
    MsgBox “Please specify a file to play.”
    Me.txtPath = mcstrSamp
    Me.txtPath.SetFocus
    Else
    LaunchWMP (Me.txtPath)
    End If
    End Sub

    #100565

    lol don’t know should be simple to add but havent figured it out yet

    #100579

    hmmmmmmmmm so if i add all music links into a text file i maybeale to refrence it and open in vb6 media player hmmmmmmmmmm

    #100581

    https://www.vbforums.com/showthread.php?842193-Read-text-file-from-website-VB6 but will it open in windows media player hmmmmmmmmmm my head hurts hahahah thinking too much

    #100668

    i’m trying find way to make user selected font size in the trivia i figured out color from your code but not select font size

    Private Sub Command13_Click()
    RichTextBox2.SelFontSize = 12
    End Sub

    Private Sub Command4_Click()
    Form5.Show
    End Sub

    Private Sub Command6_Click()
    On Error GoTo Error_Event:
    CommonDialog1.ShowColor
    RichTextBox1.SelColor = CommonDialog1.Color
    Error_Event:
    Exit Sub
    End Sub

    #100670

    how do i add this in the control button Font size like the color palate hmmmmmmmmmmm

    #100674

    i figured it out lol
    Private Sub Command12_Click()
    On Error GoTo Error_Event:
    CommonDialog1.ShowFont
    RichTextBox1.SelFontSize = CommonDialog1.FontSize
    Error_Event:
    Exit Sub
    End Sub

    #100679

    ive fixed few things and added color and font palets seems to work perfect thanks alot got idea from your trivia bot just modified it some hahahahah

    https://easyupload.io/8w6j01

    still need to make trivia work and capture youtube video

    #100768

    Shell = WindowsMediaPlayer1(“https://www.youtube.com/v/B9FzVhw8_bY&list”) doesnt work or not adding correctly hahahahah I really need Master Coder like you Help

    #100864

    possible way to start trivia I need examine more and ask Robin also he Office expert

    https://stackoverflow.com/questions/5864160/code-to-loop-through-all-records-in-ms-access

    #100870

    hmmmmmmmmmm or this

    Private Sub Command7_Click()
    Dim ourDatabase As Database
    Dim ourRecordset As Recordset
    Dim ourDatabase As Object
    Set ourDatabase = Adodc1.ConnectionString = “Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\GrimReaper\Desktop\NewBot Project files\Complete 80 Languages New MDB files 22 may 14\” & Form4.Language & “.mdb”
    Set ourRecordset = ourDatabase.OpenRecordset(“Adodc1.RecordSource = Form4.Language”)

    Do Until ourRecordset.EOF
    MsgBox ourRecordset = ourDatabase.OpenRecordset(“Adodc1.RecordSource = Form4.Language”)
    ourRecordset.MoveNext
    Loop

    End Sub

    but stil not working still trying

    #100983

    i tried add code to form4 from form1 so could manually put questions but not add right some how dumb hillbilly i am lol

    https://easyupload.io/sflctj

    #100986

    hmmmmmmmmmmm maybe add combo1 box top trivia to join room?

    #100987

    i add comobox all forms now and copy code not work arggggggggggg

Viewing 15 posts - 241 through 255 (of 305 total)
  • You must be logged in to reply to this topic.