Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for MaSSaSLaYeR

Hello! I got the following code from another site but it doesn't do nothing it only shows & ables me to fill in the speech but doesn't auto complete and that's just when i Need. [CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" …

0
60
Member Avatar for MaSSaSLaYeR

Hello! I'm making an IRC Client with DCC Capabilities. The DCC Specifications say this about receiving files: [b] The recipient should acknowledge each packet by transmitting the total number of bytes received as an unsigned, 4 byte integer in network byte order.[/b] In do this with the following code: [code]typedef …

Member Avatar for MaSSaSLaYeR
0
156
Member Avatar for MaSSaSLaYeR

Hallo! I got the following Decimal IP: "3232235876" it represents "192.168.1.100" I got it in the following way: Code: [CODE] //GET IP if (gethostname(hostname, sizeof(hostname)) == SOCKET_ERROR) { printf("%s","host not found"); } struct hostent *phe = gethostbyname(hostname); memcpy(&addr, phe->h_addr_list[0], sizeof(struct in_addr)); //Convert IP to Decimal notation sprintf(decResult,"%u", addr); sprintf(decResult,"%u", htonl(atoi(decResult)));[/CODE] …

Member Avatar for gusano79
0
850
Member Avatar for Radi0ShacK

Hi all, I just wanna know how to send a file through a socket connection in C language "client request a certaion file on server and server send him this file" i work on both winsockets and bsd sockets "client ==> windows, server ==> *nix" Thanks alot :)

Member Avatar for MaSSaSLaYeR
0
490
Member Avatar for MaSSaSLaYeR

Hello! I'm trying to find a code to delete multiple columns because when you delete a column the next column takes his place so for example: If you delete column 6 then column 7 becomes column six. I tried the following code with an for loop & a while loop: …

0
92
Member Avatar for MaSSaSLaYeR

Hellow! I'm having a problem to get the inserted values from the detailsview. I've tried the following things: [CODE] // Get Value from DropDown int TopicID = 0; foreach (DetailsViewRow row in ItemsDetailsView.Rows) { if (row.Cells[0].Text == "Topic") { DropDownList TopicDropDown = (DropDownList)row.Cells[1].FindControl("Topic_TopicIDList"); TopicID = int.Parse(TopicDropDown.SelectedValue.ToString()); } } MsgBox(CType(DetailsView1.Rows(1).Cells(0).Controls(0), Label)) …

Member Avatar for MaSSaSLaYeR
0
163