08-29-2005 11:06 AM - edited 08-29-2005 11:06 AM
Message Edited by Newguy100 on 08-29-2005 11:07 AM
08-29-2005 11:50 AM
08-29-2005 11:54 AM
08-29-2005 11:55 AM
08-29-2005 12:00 PM
08-29-2005 12:03 PM
Who wrote the DLL? What is happening to LV's memory allocation while the program is running? Is it remaining steady, or is it increasing all the time?
Mike...
As Doug said, code would help...
08-29-2005 12:08 PM
08-29-2005 12:22 PM
Here is one of my functions:
count0 = 0;
i = 0;
WriteFile(hCom,"X\r",2,&iBytesWritten,NULL);
while(ch != '>'){ //store into global array until '>' is recognized
ReadFile(hCom,&ch,1,&iBytesRead,NULL);
sh[i] = ch;
i++;
count0++;
}
ReadFile(hCom,&ch,1,&iBytesRead,NULL);
sh[i] = ch; //add the next '>' symbol to the array
sh[++i]= '\0';
return (count0+1);
08-29-2005 12:38 PM - edited 08-29-2005 12:38 PM
Message Edited by Newguy100 on 08-29-2005 12:44 PM
08-29-2005 12:49 PM