Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

[Simple]Tut how to make VPN GUI [VB 6 + OPENVPN Commands] ]

Status
Not open for further replies.
yes i know update nga... pero hindi lang naman config ang kailangan iupdate... why not trying to connect thru openvpn portable so that you can see if you still have the same error before making your gui....


Ok sige.. Nice suggestion. :thumbsup: Try ko muna po sa openvpn..
 
Help pano yung sa connection Log??

anu po yung code diko ma gets yung code para sa log

sa first page..!!

eto name ng text box ko "txtlog"
 
para san ba yang --service exit-event 0 na yan bro?
 
wahhh hindi ko magets., hehe gusto ko din gumawa ng bago gui., tsk
 
Last edited:
paano po gumawa ng sa VB connect at connect log?
 
Last edited:
pano i run openvpn as daemon para khit ireboot ung server via reboot command ggna pring openvpn sa startup
 
waaaaaaaaaaa

ang hirap nung sa connection log..

nakagawa na ko kaya lang walang log.. pero connected naman.. tskk

:help:
 
HELPPP!!!!! NAKAKACONNECT AKO PERO AYAW LUMABAS YUNG LOG SA BOX!


Dim netw As String
Private Sub Command1_Click()
Shell App.Path & "\openvpn server1.ovpn", vbHide

Log_Timer.Enabled = True
End Sub

Private Sub Log_Timer_Timer()
Dim line(10000) As String
Dim log_ctr, last_log, n As Integer
Open App.Path & "\data\connectionlog.txt" For Input Lock Read As #1
Do Until EOF(1)
Line Input #1, line(log_ctr)
log_ctr = log_ctr + 1
Loop
Close #1
If last_log <> log_ctr Then
For n = last_log To log_ctr - 1
Text1.SelStart = Len(Text1.Text)
Text1.SelText = line(n) & vbCrLf
End
Next
last_log = log_ctr
End If
End Sub
 
Status
Not open for further replies.
Back
Top Bottom