Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

% Symbol Problem

Status
Not open for further replies.

shonky

Technical User
Jul 31, 2002
1
AU
Does anyone know how to include either code to ignore percentage symbols (ie %) or code that allows me to stop ready a line when a % is present?

At the present I'm reading a line with the following code

NOTESLINE1=Sess0.Screen.GetString(7,5,70)
do until instr(notesline1,"(")=0
notesline1=left(notesline1,instr(notesline1,"(")-1) & "[" & _
mid(notesline1,instr(notesline1,"(")+1)
loop

The problem is that when there are % symbols in the NOTESLINE1 field, it is interpreted as a key stoke into the program I'm interfacing with. Some help would be greatly appreciated :)

Shonky
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top