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!

how to fix the first column of the DataWindow?

Status
Not open for further replies.

09051992

Programmer
Feb 19, 2010
5
0
0
BR
I needed fix the first column of the DataWindow, but do not know do!

someone help me?
thanks.
 
I am not able to understand your problem. Can you elaborate your problem ?
As per my understanding if your problem is generic means want to get the first column of every datawindow then
you can do this by getting the column count as
Describe("Datawindow.Column.Count")----> This will give you the counting of the column. Now get the first column by using # like Describe("#columnNumber.Property")
 
Try this
It's a sort of split screen

string ls_colx
// Get x location of emp_fname column
ls_colx = dw_data.Object.s01_voercode_t.x

// Set the position of the horizontal split scroll point.
dw_data.Object.datawindow.horizontalscrollsplit = ls_colx
 
Sorry, this is a bit more clear

string ls_colx
// Get x location of example column
ls_colx = dw_data.Object.example.x

// Set the position of the horizontal split scroll point.
dw_data.Object.datawindow.horizontalscrollsplit = ls_colx
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top