Hi,
I have a file which contains values such as
Print #ff, "IK_" & UCase(txtAction(0).Text) & "=(Gamekey=GI_AxisLeftY,Value=1.000000)"
I only need to retrieve the text that was saved in the textbox.
For example the output of the above line would be
IK_UP=(Gamekey=GI_AxisLeftY,Value=1.000000)
I only need retrieve the value that was in the textbox.
I have tried using instr:
InStr(4, entry, "=(Gamekey=", vbTextCompare)
however, for some reason it just returns numbers rather than the data that is actually in the file.
Thanks,
Nightwalker
I have a file which contains values such as
Print #ff, "IK_" & UCase(txtAction(0).Text) & "=(Gamekey=GI_AxisLeftY,Value=1.000000)"
I only need to retrieve the text that was saved in the textbox.
For example the output of the above line would be
IK_UP=(Gamekey=GI_AxisLeftY,Value=1.000000)
I only need retrieve the value that was in the textbox.
I have tried using instr:
InStr(4, entry, "=(Gamekey=", vbTextCompare)
however, for some reason it just returns numbers rather than the data that is actually in the file.
Thanks,
Nightwalker