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!

(BASIC OPENVPN GUI)HSSXPT VPN_TUT_VB2008 express edition

Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

Boss Phelp!:help:
Yung ginawa kung GUI ok nmn connected sya with browsing pero yung ping nya request time out.. pad alsedi pinger ginamit ko puro red...
Pero pag yung Original Portable vpn gamit ko(yung kay sir duf) ok nmn ang ping... n run as admin ko nmn,, san kaya may problema...:help:
 
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

Boss Phelp!:help:
Yung ginawa kung GUI ok nmn connected sya with browsing pero yung ping nya request time out.. pad alsedi pinger ginamit ko puro red...
Pero pag yung Original Portable vpn gamit ko(yung kay sir duf) ok nmn ang ping... n run as admin ko nmn,, san kaya may problema...:help:
hehe..ganyan din po nangyayari sa alsedi ko..pero ok naman yung sa original pinger nya.
try mo na lang po ioff muna yung firewall mo..tas try mo ulit yung alsedi..pag ok na sya,ilagay mo na lang po sya sa exception ng firewall mo..then turn on your firewall..

sana nakatulong po.:clap:
 
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

hehe..ganyan din po nangyayari sa alsedi ko..pero ok naman yung sa original pinger nya.
try mo na lang po ioff muna yung firewall mo..tas try mo ulit yung alsedi..pag ok na sya,ilagay mo na lang po sya sa exception ng firewall mo..then turn on your firewall..

sana nakatulong po.:clap:

sir khit sa command prompt ako mgpinger gnun pa rin request time out, norton IS 2012 gamit ko may kinalamn kaya eto.. pero pg yung orig n portable vpn nmn gmit ko ok nmn... any idea sir..salamt:weep:
 
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

ito yung hinihintay ko maraming slamat t.s
 
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

ito yung hinihintay ko maraming slamat t.s
welcome po.
sir khit sa command prompt ako mgpinger gnun pa rin request time out, norton IS 2012 gamit ko may kinalamn kaya eto.. pero pg yung orig n portable vpn nmn gmit ko ok nmn... any idea sir..salamt:weep:

tinry mo po ba ioff yung firewall mo?
 
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

diniable ko n bossing...ayaw pa rin tlga..eto problema ko tlga..:weep:
 
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

SIR OK NA!:yipee:
napagpalit ko lng pla config ng expat at hss
n misrepresent ko lng sa syntax..hehehe kya pla ang bgal kahit connected.. salamt sa reply... sir pnu yung may stat graph, nkukuha b yun sa coding.. o kelangan ng external application... salamat,:clap::salute::thumbsup:
 
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

Sir meron n ko nito, pwede unt stat data gawing graph , pnu yun sir:help:
nghahanap ako tut sa net wala ako mhanap

http://www.dreamincode.net/forums/topic/40143-introduction-to-graphs-in-vbnet/

if Chart control is not in the toolbox
  1. Download mschrt20.ocx
  2. Then extract and /or copy the .ocx file to C:\WINDOWS\system32 folder
  3. Run the command prompt and type cd C:\WINDOWS\system32
  4. Then regsvr32 mschrt20.ocx

i think to implement this you may need to add a background worker and a timer to make it happen in realtime.
 

Attachments

  • untitled.JPG
    untitled.JPG
    29.3 KB · Views: 6
Last edited:
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

up natin to! maganda to
 
Bandwidth monitor with graph vb.net development

BANDWIDTH MONITOR WITH GRAPH USING CHART CONTROL
Filename : Bandwidth Monitor with Chart.zip
Project File available and is attached

Working version using MSCharts

REQUIREMENT:
Microsoft Chart Controls for Microsoft .NET Framework 3.5
Product Page
Direct Link

BandwidthMonitorChart.png


after working on the system.drawing version, i've applied the same concept here and found out everything is easier to implement, and aesthetically looks better.

This is not copied from the internet, it's my own genuine work.

Declaration
Code:
    Dim downloadvalueplot As New ArrayList
    Dim uploadvalueplot As New ArrayList
    Dim counter As Integer = 0

Working Code
Code:
            counter = counter + 1
            '--------------------------------------------------------------------------------------------------------------------
            'GRAPHING CODES
            'uses a chart, easier to implement compared to a system drawing approach
            '--------------------------------------------------------------------------------------------------------------------

            'inserts current download/upload rate on the first index of the array
            'i choose first since it would be easier for plotting porpuses and to remove unused array contents
            downloadvalueplot.Insert(0, (DLoad - LastDLoad) / 1024)
            uploadvalueplot.Insert(0, (ULoad - LastULoad) / 1024)

            'SUSPENDS UPDATES
            'this removes the flicker effect and makes sures that all plotting is finished at the background
            'before displaying them
            ChartGraph.Series(0).Points.SuspendUpdates()
            ChartGraph.Series(1).Points.SuspendUpdates()

            'this part clears the (previous)points
            'this also remove the unwanted connecting line from the first value on a line graph
            ChartGraph.Series(0).Points.Clear()
            ChartGraph.Series(1).Points.Clear()

            'ADD VALUES (POINTS) TO THE SERIES
            'the number of x corresponds to the chart width
            Dim ichartmax As Integer = ChartGraph.Width / 12
            For ichart As Integer = 0 To ichartmax
                ChartGraph.Series(0).Points.InsertXY(ichart, ichart + 1, downloadvalueplot(ichart))
                ChartGraph.Series(1).Points.InsertXY(ichart, ichart + 1, uploadvalueplot(ichart))
                If ichart = counter - 1 Then
                    Exit For
                ElseIf ichart = ichartmax Then
                    'removes array contents that will no longer be used
                    downloadvalueplot.RemoveRange(ichartmax + 1, downloadvalueplot.Count - 1)
                    uploadvalueplot.RemoveRange(ichartmax + 1, uploadvalueplot.Count - 1)
                End If
            Next

            'RESUME UPDATES
            'proceeds to update the chart display
            ChartGraph.Series(0).Points.ResumeUpdates()
            ChartGraph.Series(1).Points.ResumeUpdates()
NOTE:
still need to work out on how to implement a predetermined amount off x values regardless of array contents.

code posted is designed to work on my previously posted bandwidth monitor, you may have to change stuff to suit to your projects
requires a chart named "ChartGraph" configured at least with 2 series

BANDWIDTH MONITOR WITH GRAPH USING SYSTEM.DRAWING
Filename : Bandwidth Monitor with Graph.zip
Project File available and is attached

working prototype on a very crude approach on a bandwidth monitor graph using system.drawing - no chart needed.

BandwidthMonitorGraph.JPG


this is from the internet - code is not mine.

will integrate this soon on my future release - had to beautify it first
and make it more dynamic and remove the scroll bar

NOTE:
there is a problem with the graph when the max values change the graph does not change the past visual representation accordingly. if this bothers you then just set

Code:
PictureBoxValues.Image = DisplayVerticalValues(PictureBoxValues, 10, 0, (dmax / 1024) + 10)
PictureBoxGraph.Image = DisplayGuidelinesAndChart(PictureBoxGraph, 10, 3, (DLoad - LastDLoad) / 1024, 0, (dmax / 1024) + 10)

PictureBoxValuesUpload.Image = DisplayVerticalValues(PictureBoxValuesUpload, 10, 0, (umax / 1024) + 10)
PictureBoxGraphUpload.Image = DisplayUploadGuidelinesAndChart(PictureBoxGraphUpload, 10, 3, (ULoad - LastULoad) / 1024, 0, (umax / 1024) + 10)

TO

Code:
PictureBoxValues.Image = DisplayVerticalValues(PictureBoxValues, 10, 0, [COLOR="red"]3686[/COLOR])
PictureBoxGraph.Image = DisplayGuidelinesAndChart(PictureBoxGraph, 10, 3, (DLoad - LastDLoad) / 1024, 0, [COLOR="red"]3686[/COLOR])

PictureBoxValuesUpload.Image = DisplayVerticalValues(PictureBoxValuesUpload, 10, 0, [COLOR="Red"]512[/COLOR])
PictureBoxGraphUpload.Image = DisplayUploadGuidelinesAndChart(PictureBoxGraphUpload, 10, 3, (ULoad - LastULoad) / 1024, 0, [COLOR="red"]512[/COLOR])

wherein those in red represent you target maximum bandwidth

still under development.

INSTRUCTIONS:
to integrate to your own project the easy way:

1. disable the timers (timerbandwidth and timerlatency)
2. copy all controls (do not include the form) and paste them to your project
3. copy codes to your project
4. enable timerbandwidth and timerlatency and the code will do the rest
 

Attachments

  • Bandwidth Monitor with Graph.zip
    18.5 KB · Views: 280
  • Bandwidth Monitor with Graph Old version.zip
    19.6 KB · Views: 154
  • Bandwidth Monitor with Chart.zip
    26.7 KB · Views: 236
Last edited:
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

working prototype on a very crude approach on a bandwidth monitor graph using system.drawing - no chart needed.

monitor.JPG


this is from the internet - code is not mine.

will integrate this soon on my future release - had to beautify it first
and make it more dynamic and remove the scroll bar

this plots the value of Download Speed its very easy to implement and add another line

PROJECT FILES attached
yun oh..salamat po sa pagtulong sa thread..:thumbsup:
 
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

sir gusto ko sana tong m22nan sana po tulungan mo ako

sir question bat ayaw ma install ng vb.net sakin may eroor na nalabas does not meet the requiremens daw kaylangan ba hi spec pc mo dito
 
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

sir gusto ko sana tong m22nan sana po tulungan mo ako

sir question bat ayaw ma install ng vb.net sakin may eroor na nalabas does not meet the requiremens daw kaylangan ba hi spec pc mo dito
ano po ba yung exact error na lumalabas?SS mo po.
 

Attachments

  • eror.rar
    475 KB · Views: 27
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

sir pasensya d ko malagay ss kais ang size nya 2.25 mb kaya ni rar ko nalang

tapos nung trinoble shoot ko may need eh dl kaso di ko naman ma dl kasi hinahanapan ako ng validation key wala naman ako nun kasi di naman po genuine os ko eto po yung need eh dl
http://www.microsoft.com/download/en/exe-validation.aspx?id=23281
How to enable BITS service?

Start> Run> Services.msc, double click Background Intelligent Transfer Service and set it to Automatic, then Start, then Apply.
 
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

How to enable BITS service?

Start> Run> Services.msc, double click Background Intelligent Transfer Service and set it to Automatic, then Start, then Apply.

sir meron pa po pina pa dl eh yung link po na nilgay ko yan yung need eh dl kaso di ko ma dl kasi di nman genuine os ko


wala po kasi ako background inteligent service sa ok kaya nid pa i dl.. sir baka meron ka jang protble version ng vb 08 para mas ma dali
 
Last edited:
Last edited:
Re: (BASIC GUI)HSSXPT VPN_TUT_VB2008 express edition

hindi sir eh wala kasi to sa os ko Background Intelligent Transfer Service need pa yan i dl
 
Back
Top Bottom