|
This could be related to whether field allqrydta
is defined as varying or not. If varying, the first two bytes at %addr(allqrydta) contains the current length which is returned by the %len built-in function. The data would start at %addr(allqrydta) + 2. It is also for a varying field to inadvertently set %len(allqrydta) to the wrong value or to mess up the contents with pointer operations. If allqrydta is not varying, the first two bytes contain data, not the length. In this case %len returns the size of the field in bytes. If allqrydta is varying, the call to updhtmlvar2 should be: updHtmlVar2('openquery':%addr(allqrydta)+2:%len(allqrydta)); // note that 2 is added to the address. Otherwise, you need to compute how many bytes of allqrydta are to be used (e.g. bytesToUse) and use that in the call to UpdHtmlVar2: updHtmlVar2('openquery':%addr(allqrydta):bytesToUse); // note that nothing is added to the address Mel Rothman Mel Rothman, Inc. [EMAIL PROTECTED] wrote:
SPONSORED LINKS
YAHOO! GROUPS LINKS
|
- [Easy400Group] Switching from SNDEMAIL (QMSF) to MMAIL... andy_m_rush
- Re: [Easy400Group] Switching from SNDEMAIL (QMSF)... mike . byrne
- Re: [Easy400Group] Switching from SNDEMAIL (QMSF)... Giovanni B. Perotti
- Re: [Easy400Group] Switching from SNDEMAIL (QMSF)... mike . byrne
- [Easy400Group] Re: Switching from SNDEMAIL (Q... andy_m_rush
- Re: [Easy400Group] Switching from SNDEMAIL (Q... Giovanni B. Perotti
- [Easy400Group] HTML Variable Problem mattlavinder
- Re: [Easy400Group] HTML Variable Prob... mattlavinder
- Re: [Easy400Group] HTML Variable Prob... Mel Rothman
- Re: [Easy400Group] HTML Variable... mattlavinder
- Re: [Easy400Group] HTML Vari... Mel Rothman
- Re: [Easy400Group] HTML Variable Prob... Giovanni B. Perotti
- Re: [Easy400Group] Application/octet-stream Giovanni B. Perotti
- [Easy400Group] Returning spam message after p... Jean-Marc Gigandet
- Re: [Easy400Group] Returning spam message... mattlavinder
- Re: [Easy400Group] Returning spam message... Mel Rothman
