Posts Tagged ‘Written’

Having A Problem With Messenger. Ypager.exe-application Error. Memory Could Not Be Written. Please Help.?

Wednesday, February 24th, 2010

When I try to start Messenger. I get an application error. It states ” The instruction at ” 0×7c910e03 referenced memory at 0×9410e1ea. The memory could not be “written” If anyone knows what I need to do please send an explanation.

Hi I A Writting Simple Server Client Socket.the Code That I Have Written Is Not Working.please Anyone Help Me?

Friday, January 15th, 2010

#include
#include /* Basic I/O routines */
#include /* standard system types */
#include /* Internet address structures */
#include /* socket interface functions */
#include /* host to IP resolution */
#include
#define portno 6789 /* default port of host */
void error(char *msg);
int main(int argc, char *argv[]);
void error(char *msg)
{
perror(msg);
exit(1);
}
int main(int argc, char *argv[])
{
int serversocket;
int newsockfd;
int clilen;
char buffer[4096];
struct sockaddr_in serv_addr, cli_addr;
/*portno = 80;*/
int n;
serversocket = socket(AF_INET, SOCK_STREAM, 0);
if (serversocket < 0)
{
error("ERROR opening socket");
}
bzero((char *) &serv_addr, sizeof(serv_addr));
serv_addr.sin_family = AF_INET;
serv_addr.sin_addr.s_addr = INADDR_ANY;
/*portno=atoi(argv[1]);*/
serv_addr.sin_port = htons(portno);
printf("Socket has port #%d\n", serv_addr.sin_port);
if (bind(serversocket, (struct sockaddr *) &serv_addr,
sizeof(serv_addr)) < 0)
{
error("ERROR on binding");
}
listen(serversocket,5);
while (1) {
clilen = sizeof(cli_addr);
newsockfd = accept(serversocket,(struct sockaddr *) &cli_addr, &clilen);
if (newsockfd < 0)
{
error("ERROR on accept");
}
/*n = read(newsockfd,buffer,sizeof(buffer)-1);
printf("A connection has been established\n");
if (n < 0)
{
error("ERROR reading from socket");
}
printf("Here is the message: %s\n",buffer);*/
n = write(newsockfd, buffer, sizeof(buffer)-1);
if (n < 0)
{
error("ERROR writing to socket");
}
close(newsockfd);
}
return 0;
}

Ypager.exe Application Error – The Memory Could Not Be “written”?

Friday, October 2nd, 2009

Whenever I run Yahoo Messenger I get this error and it crashes:
YPager.exe – Application Error
The instruction at “0×005ef44a” referenced memory at “0×001f7000″. The memory could not be “written”.
I tried uninstalling and deleting the files from the install directories and it didn’t help. I also run McAffe’s Stinger to clean up my computer and HijcakThis if any malicious software may be causing this. And I Altered the boot.ini to turn off the DEP (Data Execution Prevention) which in some cases causes this error. Nothing worked and I’m still looking for a solution. Any help would be apretiated. Thank you!

I Need Help With Program Written In Visual Basic 6. It Will Not Runs Fine On 3 Xp Computer But Not Another!

Monday, August 31st, 2009

When I run the program I get the error:
failed to load control ‘MFDatePicker’ from Cal.ocx. Your version of Cal.ocx may be outdated. Make sure you are using the version of the control that was provided with your application
I copied the cal.ocx from the other working computer and registered it but it still will not work. Can someone help?
I am not a programmer.. Please help!