April 29, 2024, 04:19:51 AM

News:

IonicWind Snippit Manager 2.xx Released!  Install it on a memory stick and take it with you!  With or without IWBasic!


Possible bug

Started by Parker, January 12, 2006, 08:13:54 PM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

Parker

I've found that sometimes statements like this don't work quite right:
if (*text[pos] <> "\"" and *text[pos] <> "\\")
and adding paranthesis doesn't really help. But changing the quoted values to the ASCII code number works. I know we'll soon have the ' ' syntax so it's not too bad, but I just thought I should note it anyway.

I don't know if that particular code would fail, I've just found some problems there.

Ionic Wind Support Team

Try:

if (*text[pos] <> "\"") and (*text[pos] <> "\\")

Ionic Wind Support Team

Parker

It still doesn't work, so I'll have to keep with the char codes for now. The ' ' quotes would be a really nice thing to have right now.

Parker

Nevermind, nevermind. It does work.
while ((*pText[pos] <> " ") and (*pText[pos] <> "\t") and (*pText[pos] <> 0))