Re: ?? poke
- Posted by Undetermined origin c/o LISTSERV administrator Mar 05, 2000
- 483 views
Bernie Ryan wrote: > I have a mental block can someone tell me how I convert > > the sequence '&' into the binary number representing an > > amperesand so I can poke into memory. > > Thanks in advance > > Bernie You can just poke it - no conversion is necessicary. Example: poke(address,"&") -- Poke a sequence or: poke(address,'&') -- Poke a character Either will work the same way. Jeff Fielding