[No Message]
carl_sti
Posts
-
how to draw a sinewave like graph?? please help -
disabling local area connectiondoes anyone knows on how to disable local area connection progmatically?
-
File Association..pls helptnx a lot :)
-
File Association..pls helpyeah i have it already.. my problem is how to get the filename of file being opened.. i want that my application know the filename of the file being opened..
-
File Association..pls helphow to get the filename of the file being open and pass it to the associated application..:confused:
-
help...help please on how to process command line arguments that being pass to the application..
-
file input/outputanyone knows on how to search specific text on a text file and able to modify it..
-
killing network connection...please helpit is the other application that try to make connection..
-
killing network connection...please helpplease help on how to kill network connection..
-
Marshal vs2005 problem please helpCannot marshal field 'table' of type 'MIB_TCPTABLE': Invalid managed/unmanaged type combination (Arrays fields must be paired with ByValArray or SafeArray). i got this error when trying to call function GetTcpTable.. see the following code.. [module declaration] Structure MIB_TCPROW Dim dwState As Long Dim dwLocalAddr As Long Dim dwLocalPort As Long Dim dwRemoteAddr As Long Dim dwRemotePort As Long End Structure Structure MIB_TCPTABLE Dim table() As MIB_TCPROW Dim dwNumEntries As Long End Structure Public v_MIB_TCPTABLE As MIB_TCPTABLE Declare Function GetTcpTable Lib "IPhlpAPI.dll" (ByVal pTcpTable As MIB_TCPTABLE, ByVal pdwSize As Long, ByVal bOrder As Long) As Long [form code] Dim tcpt As MIB_TCPTABLE Dim l As Long Dim x As Integer Dim i As Integer Dim RemA As String Dim LocP As String Dim RemP As String Dim state As Integer l = Len(v_MIB_TCPTABLE) GetTcpTable(tcpt, l, 0) x = tcpt.dwNumEntries after calling GetTcpTable function i got exeption as mention above please help
-
helphi i want to develop personal firewall in vb.net.. any suggestion of useful links or sample codes? i spend a lot of time on researching sample codes and article of personal firewall[vb.net] but all i found is c++ or c# version.. anyone knows a sample firewall(with source code or article) develop using vb.net...
-
Please help...[detecting and blocking inbound and outbound traffic ]please help on how to detect and block inbound and outbound traffic on the network. im newbee in network programming... please please help... sample code will be appreciated..
-
how to detect that a process is being close by a task manageris there any way to identify that the process is being close by task manager? (not in the application tab but in the process tab) im using the formclosed event of the form but it doest work.. Private Sub frmMain_FormClosed(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles Me.FormClosed Select Case e.CloseReason Case CloseReason.ApplicationExitCall MsgBox("Notify") Case CloseReason.FormOwnerClosing MsgBox("Notify") Case CloseReason.MdiFormClosing MsgBox("Notify") Case CloseReason.None MsgBox("Notify") Case CloseReason.TaskManagerClosing MsgBox("Notify") Case CloseReason.UserClosing MsgBox("Notify") Case CloseReason.WindowsShutDown MsgBox("Notify") End Select but it doesnt work when i closed the form in process tab(Task Manager).. :confused: -- modified at 1:57 Thursday 14th December, 2006
-
Setting notifyIcon.icon with imagelist..help plzhow to set notifyicon.icon during run time with imagelist?