FYI. Please post onto: powerobject@yahooGroups.com ... PowerObject! Shahzad <shahzad1435@...> wrote: hi all, i need to show sr# with group header but...
PB 8 I would like to have text displayed as I move the mouse over a drop down list box to provide more detail about the individual list box items. The text...
Go to the yahoo.groups, then files, then PowerBuilder and look for the file PB6-Tooltip PowerScript.pbl. This is what we used to do basically what you are...
Click <http://now.eloqua.com/es.asp?s=184&e=552D3B79368E458F8B85952267A6CF5C&elq=B F653C4E560F4048BCE9D0E23B532529> here if your email program has trouble ...
Hi all, I've a dw, big enough to have horizontal scroll bar. I want to know if is posible to scroll horizontally to the first column of the row, of course from...
David - Use the HorizontalScrollPosition property of the dw. Example: // Scroll to the left side of the dw dw_1.Object.DataWindow.HorizontalScrollPosition = 1...
FYI. PowerObject! Be a Part of the PowerBuilder 10.5 Beta Team! Bell-bottoms have made a comeback, concert t-shirts are de rigueur even though they cost a lot...
You can get some idea from this site. http://support.businessobjects.com/communityCS/FilesAndUpdates/pb_rdc9.exe.asp PB can handle RDC component also. Let me...
Hi all: How do you preview SQL in datawindow. I'm using PB 7. thanks in advance, Allan DeSouza Systems Analyst Ministry of Education and Training Corporate...
Put your code in the datawindow's SQLPreview event ... From: allan.desouza@... To: PowerObject@YahooGroups.com Sent: Tuesday, August 02, 2005 13:39 ...
I've been using PFC for many years now, and I use sqlspy, but if memory serves, you just need something to stop the execution so that you can put in a...
Yipe, That's it. Great! Thanks a bundle! Allan DeSouza Systems Analyst Ministry of Education and Training Corporate Management and Services Information...
I put this into the SqlPreview event of the DW control works great. messagebox("SQL Error",sqlsyntax) This I use for error trapping: IF sqldbcode <> 0 THEN ...
Has anyone noticed any strange behaviors in a PowerBuilder 8.0.3 (build 9704) application on Citrix Metaframe Server client accessed through RLS? Some...
What you'll want to do is use the ScrollToRow to get to the row and the SetColumn if the tab order of the 1st column isn't the lowest. Dave Hi all, I've a dw,...
More information is required to address the issue. What is "sr#" ? Where does the value come from ? Any column can be placed in the group header. Dave hi all, ...
David, The following the command should do what you want: dw_control.Object.DataWindow.HorizontalScrollPosition Setting this value to 0 will cause the window...
Hello Friends, Where can I get /find Runtime dll's (pbvm100.dll etc.,)for the PB 10.0 I could not find these files in the PB 10.0 installation directory (after...
Hi, All How can i use IN operator in datawindow with retreival argument. When I write a sql in data window like: select * from Group_Master where Group_Code IN...
Hi Abhishek Your retrieval argument should be an array . James ... From: PowerObject@yahoogroups.com [mailto:PowerObject@yahoogroups.com] On Behalf Of...
Hi In the datawindow, declare the Retrieval Argument as Array Type and use it in the SQL of the datawindow. Pass the array as retrieval argument to the...
hi all, I have two question. 1) I try to write a select statement in pb function.I use three tables in select statement. But data not convey to variables.I...