Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #4K
~3K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

7 Posted Topics

Member Avatar for bejfake

Enumerate the directory and store into some memory entity (preferably string arrays). - QTDir & QTFile classes I believe. Establish a protocol between the two programs that communicate over the network. (I usually use structural headers & payloads) Send/Receive the paths of the file and start transferring chunks of data …

Member Avatar for [Prototype]
0
343
Member Avatar for [Prototype]

I'm interested in learning about memorystreams, streaming of bytes , byte arrays, buffers, ftp and how network streaming works, where can I learn this? Things like dim buffer as byte(3000) or dim fs as filelstream = file.read if fs > 0 then I think you understand what I mean, thanks!

Member Avatar for Teme64
0
121
Member Avatar for swathys

This will fix it. [CODE]Dim inStream(clientSocket.ReceiveBufferSize) As Byte serverStream.Read(inStream, 0, clientSocket.ReceiveBufferSize) Dim returndata As String = System.Text.Encoding.ASCII.GetString(inStream)[/CODE]

Member Avatar for [Prototype]
0
676
Member Avatar for [Prototype]

Hello there, I'm having some trouble trying to converting images/characters/strings/data into a byte array and then send them. In C++, I already have established a connection between the client - server and would like to send and receive data. Now I'd like to send an install file which is like …

Member Avatar for L7Sqr
0
154
Member Avatar for [Prototype]

Hello, my name is David and I'm 17 years old. Just wanted to introduce myself to the community, I'm a very curious person who is interested in programming and anything that has to do with computers, regardless of subject. I'm not really a pro at programming but I can say …

Member Avatar for jingda
0
100
Member Avatar for [Prototype]

Hello DaniWeb! How can I check the state of a socket to see if it's connected or not? [CODE] SOCKET sock = socket(AF_INET, SOCK_STREAM, 0); SOCKET client; //I know that this isn't binded to an address but nevermind that. client = accept(sock,NULL,NULL); if (client == [COLOR="Green"]HERE - Need to see …

Member Avatar for L7Sqr
0
130
Member Avatar for iAMyours

[CODE]#include <iostream> #include <fstream> using namespace std; int main() { int x; cin >> x; ofstream textpad("notepad.txt") //ofstream is for writing data | ifstream for reading textpad << x << endl; //this is pretty much similar to cout << textpad.close() //close it return 0; }[/CODE] More information here at "Input/Output …

Member Avatar for [Prototype]
0
2K

The End.