Click here to Skip to main content
15,867,686 members
Home / Discussions / Visual Basic
   

Visual Basic

 
SuggestionRe: close app without having form in foreground Pin
Richard Deeming3-Mar-22 21:29
mveRichard Deeming3-Mar-22 21:29 
QuestionCrystal report viewer 8.5 y visual basic 2005 Pin
Member 119485295-Feb-22 17:58
Member 119485295-Feb-22 17:58 
AnswerRe: Crystal report viewer 8.5 y visual basic 2005 Pin
CHill602-Mar-22 4:20
mveCHill602-Mar-22 4:20 
Questionremove item without being selected only with the name Pin
Benjamindh27-Jan-22 4:38
Benjamindh27-Jan-22 4:38 
AnswerRe: remove item without being selected only with the name Pin
Victor Nijegorodov27-Jan-22 5:30
Victor Nijegorodov27-Jan-22 5:30 
Questionhelp send data to new connected user Pin
Benjamindh26-Jan-22 5:46
Benjamindh26-Jan-22 5:46 
AnswerRe: help send data to new connected user Pin
Raphael Adeniji7-May-22 5:43
Raphael Adeniji7-May-22 5:43 
QuestionHelp add data received from a TCP in each Columns Pin
Benjamindh19-Jan-22 4:47
Benjamindh19-Jan-22 4:47 
Hello everyone, I have the following problem. It happens that I sent some data through TCP and I receive it, but it happens that this data is all added in a single column.

VB
Public Function Rutina()
        Do
            If Ejecuto = True Then
                Exit Do
            End If
            'check if tcp has pending connections
            If TCP.Pending = True Then
                'If it has Pending, I assign it to the client of the server that will listen
                TCPSERVERCLI.Client = TCP.AcceptSocket
            End If
            If TCPSERVERCLI.Connected = True Then
                'Indicates that there is data pending collection
                If TCPSERVERCLI.Available > 0 Then
                    Dim DataBytes(1000) As Byte
                    'Now the decoder
                    Dim decode As New ASCIIEncoding
                    TCPSERVERCLI.Client.Receive(DataBytes)
                    'now I decode the bytes and pass them to the ListView
                    Me.LNetgames.Items.Add(decode.GetString(DataBytes))
                    End If
            End If
        Loop
    End Function


https://i.postimg.cc/hvkHf8V7/Screenshot-1.png
AnswerRe: Help add data received from a TCP in each Columns Pin
Richard Deeming19-Jan-22 5:38
mveRichard Deeming19-Jan-22 5:38 
GeneralRe: Help add data received from a TCP in each Columns Pin
Benjamindh19-Jan-22 14:23
Benjamindh19-Jan-22 14:23 
QuestionOpen, read and extract pdf's doc. Pin
Member 1490245413-Jan-22 4:16
Member 1490245413-Jan-22 4:16 
AnswerRe: Open, read and extract pdf's doc. Pin
Dave Kreskowiak13-Jan-22 5:19
mveDave Kreskowiak13-Jan-22 5:19 
GeneralRe: Open, read and extract pdf's doc. Pin
Member 1490245413-Jan-22 7:55
Member 1490245413-Jan-22 7:55 
GeneralRe: Open, read and extract pdf's doc. Pin
Dave Kreskowiak13-Jan-22 8:33
mveDave Kreskowiak13-Jan-22 8:33 
GeneralRe: Open, read and extract pdf's doc. Pin
Member 1490245414-Jan-22 0:25
Member 1490245414-Jan-22 0:25 
AnswerRe: Open, read and extract pdf's doc. Pin
CHill6014-Jan-22 1:27
mveCHill6014-Jan-22 1:27 
QuestionHow do I get the propertyname of WPF control? Pin
Steve Krozer7-Jan-22 0:30
Steve Krozer7-Jan-22 0:30 
Rant[REPOST] How do I get the propertyname of WPF control? Pin
Richard Deeming7-Jan-22 0:38
mveRichard Deeming7-Jan-22 0:38 
QuestionExtracting username from a access database to show username after logging on Pin
Jeremy Haley 20226-Jan-22 4:14
Jeremy Haley 20226-Jan-22 4:14 
AnswerRe: Extracting username from a access database to show username after logging on Pin
Richard MacCutchan6-Jan-22 5:47
mveRichard MacCutchan6-Jan-22 5:47 
GeneralRe: Extracting username from a access database to show username after logging on Pin
Jeremy Haley 20226-Jan-22 5:55
Jeremy Haley 20226-Jan-22 5:55 
GeneralRe: Extracting username from a access database to show username after logging on Pin
Richard MacCutchan6-Jan-22 6:53
mveRichard MacCutchan6-Jan-22 6:53 
SuggestionRe: Extracting username from a access database to show username after logging on Pin
Richard Deeming6-Jan-22 5:57
mveRichard Deeming6-Jan-22 5:57 
Questioncombine two datatable Pin
Member 143292662-Jan-22 17:44
Member 143292662-Jan-22 17:44 
AnswerRe: combine two datatable Pin
Richard Deeming3-Jan-22 23:54
mveRichard Deeming3-Jan-22 23:54 

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.