Jump to content

Recommended Posts

Posted (edited)

I know how to use a string replace on a GUI box such as:

StringReplace(GUICtrlRead($Edit1), @CRLF, " ") -this replaces @CRLF with a space

But am not sure how to string replace the return of:

$MessageR &= $objEvent.Message

it contains "Application popup" as the beginning of the return for $objectEvent.Message -I would like to replace that with ""

I can't seem to get it right . . .

Edited by Hatcheda
Posted

I know how to use a string replace on a GUI box such as:

StringReplace(GUICtrlRead($Edit1), @CRLF, " ") -this replaces @CRLF with a space

But am not sure how to string replace the return of:

$MessageR &= $objEvent.Message

it contains "Application popup" as the beginning of the return for $objectEvent.Message -I would like to replace that with ""

I can't seem to get it right . . .

We're not done with this YET?! :whistle:

$MessageR &= StringReplace($objEvent.Message, "Application popup", "")

:lmao:

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Posted

Crap! that looks like the first thing I tried! But it works! I didn't want to bug you on this one! Thought I might stop short of you writing the whole thing! :whistle: Thanks!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...