Hey, I have a real annoying problem. Ha ha.
I'm trying to read a text document and search for a line in this format:
Code:
#CLIP {NAME} {LOOP}
But when I use the code:
Code:
If strBuffer Like "#CLIP * *" Then
It will never find the line in the text document.
I have tried changing lots of lines of code, but nothing works...
It will work if I change it to:
Code:
If strBuffer = "#CLIP TEST True" Then
But that isn't what I want...
Does anyone know what my problem is?