Hi everybody,
I'm new to programming (although I spent a few hours with my ZX Spectrum back in the day) and I'm trying to make a database.
Now, the problem is I need to make the input from the user non-case sensitive, if you see what I mean. Here's an example:
print "Enter search topic ";
input i$
if i$="watermelon" then -
So, how do I make it so that "Watermelon", "WATERMELON" and "wAtermelon" all work as if you'd typed in "watermelon"?
I remember in Qbasic, you'd type LET i$ = LCASE$($). Is there anything to that effect in Darkbasic? I've looked in every help file I can find, to no avail.
EDIT: (I forgot something

Also, my database involves bringing up large amounts of text. How can I make it stay within the screen, in paragraphs? See, when it prints text, it just goes off the edge in one long line.
Thanks guys, I hope you can help me!