Activity overview
Latest activity by larthallor
How about adding a check box to that indicates whether the entered text should be escaped so that it comes out as-typed or is raw send keys text? / comments
How about adding a check box to that indicates whether the entered text should be escaped so that it comes out as-typed or is raw send keys text?
So, the next revision is going to escape these characters prior to sending them to SendKeys.Send(), right? / comments
So, the next revision is going to escape these characters prior to sending them to SendKeys.Send(), right?
That is, I've only tried it in QA. / comments
That is, I've only tried it in QA.
SQL Server 2000 Query Analyzer / comments
SQL Server 2000 Query Analyzer
Parenthesis characters stripped?
In the following snippet, the parens get stipped:
join
(
bill_payement_data bpd
join
bill_pay_adjustment_table bpat
on
bpd.facility = bpat.facility
and bpd.payment_code = bpat.payment_code
)
on
r2....