Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mouse Over 1

Status
Not open for further replies.

gy2cool

Programmer
Oct 20, 2010
16
0
0
IN
Hi

I am working on PB 6.5
I need help.
When ever user will move any column in the datawindow
New Window pop up window will open.
 
The following can be used to accomplish what you need. You can also combine this with the timer event in order to display the window you are using as a flyover.

Code:
ls_object = this.GetObjectAtPointer()
	
ls_row = Right(ls_object, Len(ls_object) - (Pos(ls_object,'~t')))
ls_column = LEFT(ls_object, (Pos(ls_object,'~t') - 1))

If Upper(ls_column) = "COLUMNNAME" Then
	OpenWithParm(w_window_to_be_opened, parameter_for_window)
End If
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top