cancel
Showing results for 
Search instead for 
Did you mean: 

determining right click menu source column

Former Member
0 Kudos

Hello

I would like the determine the name of column where I use right click menu.

I use menu click event but it doesn't give any property I can use to get that column name.

Casting mouse event to item event doesn't work.

What are the other methods?

Thanks

Kamil

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I found that I can use B1Connections.theAppl.RightClickEvent but the method it generates has as one argument

"out bool BubbleEvent".

Where should I place this BubbleEvent variable?

Former Member
0 Kudos

Hi there,

The first parameter of the RightClickEvent event is called eventInfo - you can use this to get the column ID where the right click occurred e.g. eventInfo.ColUID

Regards,

Andrew.

Former Member
0 Kudos

Thanks Andrew for your response but I already did it.

The problem is that the second argument is out bool BubbleEvent which must e assigned before leaving this method.

I don't have this variable anywhere in my code. I used B1DE wizard to create my project.

I tried to manually put it in several places but it didn't work.