Devilzc0de Forum Follow @devilzc0de
  • Home
  • Hacking
  • Networking
  • Programming
  • O.S
  • Server
  • Tweets
  • Search
  • Member List
  • Calendar
Current time: 05-18-2013, 05:40 PM Hello There, Guest! (Login — Register)
Devilzc0de Forum › Information Technology › Programming › Visual Basic v
« Previous 1 ... 6 7 8 9 10 ... 14 Next »

[share] DC-Browser

Home General Computer Multimedia Business Lounge

Pages (4): « Previous 1 2 3 4 Next »
Post Reply 
Tweet
Threaded Mode | Linear Mode
[share] DC-Browser
04-20-2012, 07:17 PM
Post: #21
CyberKaze Offline
./Devilz Advisor
Posts: 869
Joined: Jul 2011
Reputation: 13
RE: [share] DC-Browser
dibuatnya pake apa om ? ane pengen bisa juga kaya gitu hmm
Visit this user's website Find all posts by this user
Quote this message in a reply
04-20-2012, 07:54 PM
Post: #22
KotoM Offline
Covergay Dewa
Posts: 558
Joined: May 2011
Reputation: 58
RE: [share] DC-Browser
makin lama makin mantaff aja ne om badol
:kenyod
Find all posts by this user
Quote this message in a reply
04-20-2012, 08:27 PM
Post: #23
nanda Away
Wahyu Adi Prasetyo
**
Moderators
Posts: 2,004
Joined: Aug 2011
Reputation: 119
RE: [share] DC-Browser
Nice ketawa
Btw pkai component inet yah?
Find all posts by this user
Quote this message in a reply
04-20-2012, 08:28 PM
Post: #24
ph0eniXb0y Offline
./Devilz Officer
Posts: 70
Joined: Jun 2011
Reputation: 5
RE: [share] DC-Browser
wew dicoba dulu ahk bang
keren nih bsa bikin browser
Find all posts by this user
Quote this message in a reply
04-20-2012, 09:22 PM
Post: #25
ubuntux Offline
./Admiral of Devilzc0der
Posts: 1,612
Joined: Dec 2011
Reputation: 75
RE: [share] DC-Browser
(04-20-2012 02:22 PM)dhelpi7 Wrote:  Assalamualaikum Omz yang cantik dan tante yang ganteng ngakak
hari ini ane mau share Browser yang ane buat dari VB klo2 jelek maaf ya berdoa

Semoga omz dan tante sekalian bekenan menggunakan nya pasrah
klo2 jelek ane harap maklum pasrah

cekidot SS nya :
[Image: 23hriw2.jpg]
Download nya Dimari

klo2 jelek ane minta maap ya hore buat yang mau ngembangin
ini SC nya

Source code hmm

mari lanjutken belajar bersama hmm hore
salam sayang dari ane pujangga ganteng , rajin , baik hati , tidak sombong dan rajin menabung serta gak maho cuma rada2 ngenes metal

sekian
wassalamualaikum berdoa

ini om, ane tambahin source code ane...
semoga bisa di kembangin...
Code:
Private Sub Combo1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then Command3_Click
End Sub

Private Sub Command1_Click()
On Error Resume Next
WebBrowser1.GoBack
End Sub

Private Sub Command2_Click()
On Error Resume Next
WebBrowser1.GoForward
End Sub

Private Sub Command3_Click()
On Error Resume Next
WebBrowser1.Navigate Combo1
End Sub

Private Sub Command5_Click()
On Error Resume Next
WebBrowser1.Refresh
End Sub

Private Sub Command6_Click()
On Error Resume Next
WebBrowser1.GoHome
End Sub

Private Sub Command7_Click()
WebBrowser1.ExecWB OLECMDID_SAVEAS, OLECMDEXECOPT_DODEFAULT
End Sub

Private Sub Command8_Click()
WebBrowser1.ExecWB OLECMDID_PRINT, OLECMDEXECOPT_DODEFAULT
End Sub

Private Sub Form_Load()
WebBrowser1.Navigate ("http://www.google.com/")
End Sub

Private Sub Form_Resize()
Rem used to get the web browser control just right to fit the form
On Error Resume Next
If Me.Height > 11130 Then Me.Height = 11130
Combo1.Width = Me.Width - 345
WebBrowser1.Width = Me.Width - 345
WebBrowser1.Height = Me.Height - 1935
End Sub

Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)
Rem Notifies when page is done loading
StatusBar1.Panels(1).Text = "Done"
End Sub

      'This to make the progress bar work and to show a status message, and an image.
      Private Sub WebBrowser1_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long)
      On Error Resume Next
          If Progress = -1 Then ProgressBar1.Value = 100 'the name of the progress bar is "ProgressBar1".
              ProgressBar1.Visible = False 'This makes the progress bar disappear after the page is loaded.
          If Progress > 0 And ProgressMax > 0 Then
              ProgressBar1.Visible = True
              ProgressBar1.Value = Progress * 100 / ProgressMax
              StatusBar1.Panels(1).Text = Int(Progress * 100 / ProgressMax) & "%"
          End If
          Exit Sub
      End Sub
Private Sub WebBrowser1_NavigateComplete2(ByVal pDisp As Object, URL As Variant)
On Error Resume Next
Dim i As Integer
Dim bFound As Boolean
Me.Caption = WebBrowser1.LocationName
For i = 0 To Combo1.ListCount - 1
If Combo1.List(i) = WebBrowser1.LocationURL Then
bFound = True
Exit For
End If
Next i
mbDontNavigateNow = True
If bFound Then
Combo1.RemoveItem i
End If
Combo1.AddItem WebBrowser1.LocationURL, 0
Combo1.ListIndex = 0
mbDontNavigateNow = False
End Sub

Private Sub WebBrowser1_StatusTextChange(ByVal Text As String)
If WebBrowser1.LocationURL = "http://www.google.com" Then: Exit Sub
Me.Caption = WebBrowser1.LocationName
StatusBar1.SimpleText = Text
End Sub

Private Sub WebBrowser1_TitleChange(ByVal Text As String)
If WebBrowser1.LocationURL = "http://www.google.com" Then: Exit Sub
Combo1.Text = WebBrowser1.LocationURL
Combo1.SelStart = Len(Combo1.Text)
End Sub

Semoga bisa bermanfaat
Visit this user's website Find all posts by this user
Quote this message in a reply
04-20-2012, 09:30 PM
Post: #26
seva Offline
Penjual Obat Kuat
Posts: 544
Joined: Sep 2010
Reputation: 2
RE: [share] DC-Browser
mantap

ane coba buat nyetriming dulu bangga
Visit this user's website Find all posts by this user
Quote this message in a reply
04-20-2012, 09:32 PM
Post: #27
Qiezaqie [RJ] Away
RJ paling gay
RJ
Posts: 1,285
Joined: Jan 2011
Reputation: 52
RE: [share] DC-Browser
bisa lolos dari cold pler gak nih app? ketawa
Visit this user's website Find all posts by this user
Quote this message in a reply
04-20-2012, 09:38 PM (This post was last modified: 04-20-2012 09:40 PM by dhelpi7.)
Post: #28
dhelpi7 Offline
gue ganteng,thx
Posts: 303
Joined: Dec 2010
Reputation: 23
RE: [share] DC-Browser
(04-20-2012 09:22 PM)ubuntux Wrote:  
(04-20-2012 02:22 PM)dhelpi7 Wrote:  Assalamualaikum Omz yang cantik dan tante yang ganteng ngakak
hari ini ane mau share Browser yang ane buat dari VB klo2 jelek maaf ya berdoa

Semoga omz dan tante sekalian bekenan menggunakan nya pasrah
klo2 jelek ane harap maklum pasrah

cekidot SS nya :
[Image: 23hriw2.jpg]
Download nya Dimari

klo2 jelek ane minta maap ya hore buat yang mau ngembangin
ini SC nya

Source code hmm

mari lanjutken belajar bersama hmm hore
salam sayang dari ane pujangga ganteng , rajin , baik hati , tidak sombong dan rajin menabung serta gak maho cuma rada2 ngenes metal

sekian
wassalamualaikum berdoa

ini om, ane tambahin source code ane...
semoga bisa di kembangin...
Code:
Private Sub Combo1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then Command3_Click
End Sub

Private Sub Command1_Click()
On Error Resume Next
WebBrowser1.GoBack
End Sub

Private Sub Command2_Click()
On Error Resume Next
WebBrowser1.GoForward
End Sub

Private Sub Command3_Click()
On Error Resume Next
WebBrowser1.Navigate Combo1
End Sub

Private Sub Command5_Click()
On Error Resume Next
WebBrowser1.Refresh
End Sub

Private Sub Command6_Click()
On Error Resume Next
WebBrowser1.GoHome
End Sub

Private Sub Command7_Click()
WebBrowser1.ExecWB OLECMDID_SAVEAS, OLECMDEXECOPT_DODEFAULT
End Sub

Private Sub Command8_Click()
WebBrowser1.ExecWB OLECMDID_PRINT, OLECMDEXECOPT_DODEFAULT
End Sub

Private Sub Form_Load()
WebBrowser1.Navigate ("http://www.google.com/")
End Sub

Private Sub Form_Resize()
Rem used to get the web browser control just right to fit the form
On Error Resume Next
If Me.Height > 11130 Then Me.Height = 11130
Combo1.Width = Me.Width - 345
WebBrowser1.Width = Me.Width - 345
WebBrowser1.Height = Me.Height - 1935
End Sub

Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)
Rem Notifies when page is done loading
StatusBar1.Panels(1).Text = "Done"
End Sub

      'This to make the progress bar work and to show a status message, and an image.
      Private Sub WebBrowser1_ProgressChange(ByVal Progress As Long, ByVal ProgressMax As Long)
      On Error Resume Next
          If Progress = -1 Then ProgressBar1.Value = 100 'the name of the progress bar is "ProgressBar1".
              ProgressBar1.Visible = False 'This makes the progress bar disappear after the page is loaded.
          If Progress > 0 And ProgressMax > 0 Then
              ProgressBar1.Visible = True
              ProgressBar1.Value = Progress * 100 / ProgressMax
              StatusBar1.Panels(1).Text = Int(Progress * 100 / ProgressMax) & "%"
          End If
          Exit Sub
      End Sub
Private Sub WebBrowser1_NavigateComplete2(ByVal pDisp As Object, URL As Variant)
On Error Resume Next
Dim i As Integer
Dim bFound As Boolean
Me.Caption = WebBrowser1.LocationName
For i = 0 To Combo1.ListCount - 1
If Combo1.List(i) = WebBrowser1.LocationURL Then
bFound = True
Exit For
End If
Next i
mbDontNavigateNow = True
If bFound Then
Combo1.RemoveItem i
End If
Combo1.AddItem WebBrowser1.LocationURL, 0
Combo1.ListIndex = 0
mbDontNavigateNow = False
End Sub

Private Sub WebBrowser1_StatusTextChange(ByVal Text As String)
If WebBrowser1.LocationURL = "http://www.google.com" Then: Exit Sub
Me.Caption = WebBrowser1.LocationName
StatusBar1.SimpleText = Text
End Sub

Private Sub WebBrowser1_TitleChange(ByVal Text As String)
If WebBrowser1.LocationURL = "http://www.google.com" Then: Exit Sub
Combo1.Text = WebBrowser1.LocationURL
Combo1.SelStart = Len(Combo1.Text)
End Sub

Semoga bisa bermanfaat

makasih bg ntar deh ane belajar ngembangin dengan source ane sendiri
belajar biar bisa kaya kakak2 ku dimari asik
(04-20-2012 09:32 PM)Qiezaqie Wrote:  bisa lolos dari cold pler gak nih app? ketawa

blom ane coba lagi bro pasrah
Find all posts by this user
Quote this message in a reply
04-20-2012, 10:12 PM
Post: #29
kidofdream Offline
Nama Kucingnya Upin Ipin
Posts: 912
Joined: Aug 2011
Reputation: 55
RE: [share] DC-Browser
mantap .. ane juga pernah bikin , tapi lupa naro nya dimana suram ..
ntar kalo ketemu ane aplot juga ketawa

btw , ente pake vb.net om ?
Visit this user's website Find all posts by this user
Quote this message in a reply
04-20-2012, 10:14 PM
Post: #30
dhelpi7 Offline
gue ganteng,thx
Posts: 303
Joined: Dec 2010
Reputation: 23
RE: [share] DC-Browser
(04-20-2012 10:12 PM)kidofdream Wrote:  mantap .. ane juga pernah bikin , tapi lupa naro nya dimana suram ..
ntar kalo ketemu ane aplot juga ketawa

btw , ente pake vb.net om ?

ane pake vb 6 bg blom ngarti vb.net ketawa
klo jelek maap ye bg ketawa
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Pages (4): « Previous 1 2 3 4 Next »
Post Reply 


Topic Tools
Topic Link :
BBCode :
HTML Code :
View a Printable Version Send Thread to a Friend Subscribe to this thread
Submit Google Submit Face book Submit to Digg Submit to Reddit Submit to Furl Submit to Del.icio.us Submit to Jeqq

Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  [SHARE] skripsi dan source code vb Dheymez 10 264 03-26-2013 06:43 PM
Last Post: easybie
  [share] Iseng2 aja.. Faizal97 24 593 11-05-2012 08:43 PM
Last Post: Faizal97
  [Tutor] [VB.NET] membuat web browser sederhana MrKcr 11 756 10-31-2012 06:28 AM
Last Post: MrKcr
Bug Numpang Share Anvir Rakagi 17 509 10-13-2012 07:15 PM
Last Post: Rakagi
Tongue [share]VB Decompiler 8.3+Keygen RieqyNS13 1 286 07-27-2012 05:28 AM
Last Post: hitheir
Wink [SHARE] Visual Basic 6.0 Ori!! Initial-[o] 10 783 06-23-2012 09:33 PM
Last Post: ™YPH
  [Tutor] membuat web browser sederhana genta 15 1,501 05-24-2012 11:52 AM
Last Post: genta
  [SHARE] Source Code Basic TROJAN VB6 ! ubuntux 2 742 03-19-2012 11:50 AM
Last Post: d3m3nt012
  [share] Link Tutor VB.Net Wayc0de 5 1,699 12-17-2011 10:56 PM
Last Post: kidofdream
  Mini BrowseR wiTh VB 6.0 TeRRen.Jr 10 2,983 11-29-2011 03:01 PM
Last Post: Killu4

Users Browsing
1 Guest(s)

  • Contact Us
  • devilzc0de
  • Return to Top
  • Mobile Version
  • RSS Syndication
  • Help
Current time: 05-18-2013, 05:40 PM Powered By MyBB, © 2002-2013 MyBB Group. Theme created by Justin S. | Mixed By Chaer.Newbie | Fixed By Aditya

USING THIS SITE INDICATES THAT YOU HAVE READ AND ACCEPT OUR TERMS. IF YOU DO NOT ACCEPT THESE TERMS, YOU ARE NOT AUTHORIZED TO USE THIS SITE