Click here to Skip to main content
15,889,852 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: split function Pin
Rupesh Kumar Swami30-Aug-07 21:46
Rupesh Kumar Swami30-Aug-07 21:46 
AnswerRe: split function Pin
Tom Deketelaere30-Aug-07 22:51
professionalTom Deketelaere30-Aug-07 22:51 
GeneralRe: split function Pin
KeithF31-Aug-07 0:10
KeithF31-Aug-07 0:10 
GeneralRe: split function Pin
Rupesh Kumar Swami31-Aug-07 0:30
Rupesh Kumar Swami31-Aug-07 0:30 
AnswerRe: split function [modified] Pin
Fahad Sadah31-Aug-07 6:51
Fahad Sadah31-Aug-07 6:51 
QuestionVb.Net App does not allow system to log off when running Pin
thedom230-Aug-07 20:09
thedom230-Aug-07 20:09 
AnswerRe: Vb.Net App does not allow system to log off when running Pin
Colin Angus Mackay30-Aug-07 21:31
Colin Angus Mackay30-Aug-07 21:31 
GeneralRe: Vb.Net App does not allow system to log off when running Pin
thedom230-Aug-07 23:22
thedom230-Aug-07 23:22 
Hi Colin thats what I thought so something must be wrong.

Its a windows app.

Its starts off with a form starting at runtime named Hidden

here is the code that triggers at load

<br />
Private Sub Hidden_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load<br />
        xSock.UDP_Listen(10080)<br />
        AddHandler xSock.DataArrival, AddressOf UDPArrival<br />
End Sub<br />


in the above code it calls a class method as below

<br />
Public Shared Function UDP_Listen(ByVal Port As Integer) As Boolean<br />
        Try<br />
            UDP_Server_Port = Port<br />
            UDP_Server = New UdpClient(Port)<br />
            thdUdp = New Thread(AddressOf GetUDPData)<br />
            thdUdp.Start()<br />
        Catch e As Exception<br />
            RaiseEvent Sock_Error(e.ToString)<br />
        End Try<br />
<br />
End Function<br />
<br />
 Private Sub UDPArrival(ByVal vData As String)<br />
        TextBox1.Text = vData<br />
        txtText.Text = vData<br />
        xSock.UDP_Send("127.0.0.1", 10090, vData)<br />
           End Sub<br />


so can you see how i can resolve this issue ?

THanks so far Smile | :)
GeneralRe: Vb.Net App does not allow system to log off when running Pin
Tom Deketelaere30-Aug-07 23:48
professionalTom Deketelaere30-Aug-07 23:48 
GeneralRe: Vb.Net App does not allow system to log off when running Pin
thedom231-Aug-07 1:05
thedom231-Aug-07 1:05 
GeneralRe: Vb.Net App does not allow system to log off when running Pin
Colin Angus Mackay31-Aug-07 2:02
Colin Angus Mackay31-Aug-07 2:02 
GeneralRe: Vb.Net App does not allow system to log off when running Pin
thedom231-Aug-07 2:08
thedom231-Aug-07 2:08 
GeneralRe: Vb.Net App does not allow system to log off when running Pin
Dave Kreskowiak31-Aug-07 3:47
mveDave Kreskowiak31-Aug-07 3:47 
QuestionHow to Make a folder virtual folder using vb 6.0? Pin
sivaraman_sankaranarayanan30-Aug-07 19:24
sivaraman_sankaranarayanan30-Aug-07 19:24 
AnswerRe: How to Make a folder virtual folder using vb 6.0? Pin
Dave Kreskowiak31-Aug-07 3:41
mveDave Kreskowiak31-Aug-07 3:41 
GeneralRe: How to Make a folder virtual folder using vb 6.0? Pin
Paul Conrad23-Dec-07 15:04
professionalPaul Conrad23-Dec-07 15:04 
QuestionSelecting next row in datagrid Pin
jensenx30-Aug-07 18:11
jensenx30-Aug-07 18:11 
AnswerRe: Selecting next row in datagrid Pin
Naji El Kotob30-Aug-07 21:51
Naji El Kotob30-Aug-07 21:51 
Questionediting cells in a datagridview Pin
steve_rm30-Aug-07 16:33
steve_rm30-Aug-07 16:33 
QuestionVB6 HTML elements offsetParent recursive problem Pin
eugeugeug12330-Aug-07 14:02
eugeugeug12330-Aug-07 14:02 
AnswerRe: VB6 HTML elements offsetParent recursive problem Pin
Dave Kreskowiak31-Aug-07 3:38
mveDave Kreskowiak31-Aug-07 3:38 
QuestionVB.NET Access DB DataSet problem Pin
culbysl30-Aug-07 13:40
culbysl30-Aug-07 13:40 
AnswerRe: VB.NET Access DB DataSet problem Pin
Dave Kreskowiak31-Aug-07 3:33
mveDave Kreskowiak31-Aug-07 3:33 
GeneralRe: VB.NET Access DB DataSet problem Pin
culbysl31-Aug-07 11:52
culbysl31-Aug-07 11:52 
GeneralRe: VB.NET Access DB DataSet problem Pin
Dave Kreskowiak1-Sep-07 4:15
mveDave Kreskowiak1-Sep-07 4:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.