Langsung ke konten utama

Simple Code and Concept or Methode How To Make Bot Youtube Viewer


now i will share simple code and concept or methode
how to make bot youtube viewer with vb6.0

1. you must know how to get viewer youtube. yeaahh with playing video using application browser
for aplication browser very much at all firefox,chrome etc. so you selected one your favorite or power full
application browser
2. if you already selected application browser. now how to open that browser with vb6.0 or other program and automatic
go to url youtube video victim and playing video. for simple method you can using Declare API Windows shellexecute.
if your question how to get declare API watching my video tutorial oke, hahahaha
Code declare API ShellExecute for open application browser and auto open url video victim

Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Sub Command1_Click()
ShellExecute 0, "open", "C:\Program Files\Mozilla\Firefox.exe", "https://youtube.com/watch/?v=blabala", vbNullString, 1
End Sub

3. viewer youtube finish. now how to close or stop that viewer?. for simple method or concept you can using command cmd
"taskkill /f /im Firefox.exe".
4. now how to execute that command with vb6.0 or other program? simple method or concept you can save that command on bat file then
execute with vb6.0.
Code Close or Stop Viewer with bat file

Private Sub Command2_Click()
Open App.Path & "\close.bat" For Output As #1
Print #1, "taskkill /f /im Firefox.exe""
Print #1, "CLS"
Print #1, "Exit"
Close #1

Shell App.Path & "\close.bat", vbHide
End Sub

yeaaahhh. this method i am using with my bot. and this method is first my methode for make youtube viewer power full and minimize
banned risk. so explore your brain

download sample code
http://adf.ly/1dfZ70

Komentar

Postingan populer dari blog ini

Youtube Viewer,Auto Comment,Auto Like

This is about viewer Youtube from link web or redirect web,auto comment,auto like without risk banned maybe. not about earning youtube. Method this bot about IP using auto dial or reset connection on dial up. IP will be change if IP ISP your country dynamic like on my country. or auto dial vpn (virtual private network) support application browser : - Mozilla Firefox 35 under version - chrome all version for other application browser maybe i will update so stay on my channel :D about cookies,auto clear cookies every value auto load new browser Feature : 1. Youtube Viewer using link or using redirect. you can using your web or other web 2. auto comment 3. auto like Get my bot on https://ggldrs.com/bZ5V support tools https://dl.bintray.com/florentbr/generic/SeleniumWrapperSetup-1.0.23.0.exe this bot need activation and every 30 days. you can get activation from me.the activation redeemed for $ 7, but you can try at your home with 2 viewer,then a...

belajar CSS dasar bersama part 13 : mengenal dan membuat overflow scroll css

  di css juga ada yang namanya overflow, properti ini juga kerap kali sering digunakan dalam pembuatan website sederhana ataupun expert. sebelum kita mengenal apa itu overflow saya akan mengucpakan Salam sobat semua Alhamdulillahi robbil 'alamiin atas segala nikmat yang telah di berikan kepada diri ini secara gratis, dan salah satu nikmat tersebut ialah masih bisa menulis dan berbagi dalam tulisan ini dengan kalian. sholawat serta salamku akan tetap terpanjatkan untuk baginda sayyidian Muhammad ibni abdillah S.A.W. beserta kepada keluarga dan para sahabatnya. untuk kali ini kita akan mencoba apa yang namanya overflow. overflow adalah kalau menurut saya suatu kode yang mengatur scroll. apa itu scroll yaitu sesuatu yang bisa di gerak-gerakkan ke atas ke bawah atau ke kiri ke kanan. oke sebelum memulai mencoba mari kita baca bismillah dulu. Bismillahir rohmanir rohiim. sekarang buka file yang kemaren kita sudah buat sebelumnya jangan lupa di duplikat dulu biar data kemaren tetap aman ...