cancel
Showing results for 
Search instead for 
Did you mean: 

VBS how to recognize inactive(not editable) cells

Former Member
0 Kudos

Hi,

I'm trying to develop vbs  which change some dates.

The problem is that not all fields are active(editable). Inactive fields are in blue.

How can vbs recognize this cells?

Probably something like that

session.findById("wnd[0]....[1,2]=inactive

Can you help please?

Regards,

Guero

Accepted Solutions (1)

Accepted Solutions (1)

holger_khn
Contributor
0 Kudos

Hello.

You can check with Property 'Changeable':

If session.findById("wnd[0]....[1,2]").Changeable = TRUE Then session.findById("wnd[0]....[1,2]").Text = "Changeable"

Br, Holger

Answers (0)