Front window

2008-05-08 Thread Hershel Fisch
Hi all, a little scenario, I have a window when clicking in its table fld another window opens with a on openStack script in it which puts in a query in its flds. The first fld has a on openField script in it and it triggers before the window is visible meaning that the previous window where I'm

Re: Re: Front Window Question???

2006-04-07 Thread FlexibleLearning
How about this? set the scroll of field 1 of card 1 to line -1 of field 1 of card 1 Assuming the target stack is not closed, you can set the scroll of fld 1 of this cd of stack xyz to the formattedHeight of fld 1 of this cd of stack xyz. /H

Front Window Question???

2006-04-06 Thread David Burgun
Hi, I have a stack (actually a sub-stack of a library) I use for debugging. The substack has a field in it and I have a function that in the stack script does this: function DebugPutString theString put theString cr into field 1 of card 1 of me return empty end DebugPutString When I

Re: Front Window Question???

2006-04-06 Thread J. Landman Gay
David Burgun wrote: Hi, I have a stack (actually a sub-stack of a library) I use for debugging. The substack has a field in it and I have a function that in the stack script does this: function DebugPutString theString put theString cr into field 1 of card 1 of me return empty end

Re: Front Window Question???

2006-04-06 Thread David Burgun
On 6 Apr 2006, at 18:24, J. Landman Gay wrote: David Burgun wrote: Hi, I have a stack (actually a sub-stack of a library) I use for debugging. The substack has a field in it and I have a function that in the stack script does this: function DebugPutString theString put theString cr

Re: Front Window Question???

2006-04-06 Thread J. Landman Gay
David Burgun wrote: Ok, found it! I missed a line off my script when I posted it: function DebugPutString theString put theString cr into field 1 of card 1 of me select after field 1 of card 1 of me return empty end

Re: Front Window Question???

2006-04-06 Thread David Burgun
On 6 Apr 2006, at 19:14, J. Landman Gay wrote: David Burgun wrote: Ok, found it! I missed a line off my script when I posted it: function DebugPutString theString put theString cr into field 1 of card 1 of me select after field 1 of card 1 of me

Re: Front Window Question???

2006-04-06 Thread Mark Wieder
David- Thursday, April 6, 2006, 10:47:04 AM, you wrote: As far as I can tell, it's the select that is pushing to the front! I do this in order to scroll the display so I can see what is going on without having to scroll it manually. Is there another way to do this?? As you've discovered,

Re: Front Window Question???

2006-04-06 Thread David Burgun
How about this? set the scroll of field 1 of card 1 to line -1 of field 1 of card 1 All the Best Dave On 6 Apr 2006, at 21:29, Mark Wieder wrote: David- Thursday, April 6, 2006, 10:47:04 AM, you wrote: As far as I can tell, it's the select that is pushing to the front! I do this in order

Re: Front Window Question???

2006-04-06 Thread Mark Wieder
David- Thursday, April 6, 2006, 2:38:20 PM, you wrote: How about this? set the scroll of field 1 of card 1 to line -1 of field 1 of card 1 Nope. If you read the docs, the scroll of a field is in pixels. line -1 of ... will give you text. I don't think any good can come of this. -- -Mark