Re: using ftp with a command file as run("ftp -s" + file attachement")
I prefer to first build a separate string containing the actual command and then passing that to the run() command. Makes it easier to determine if the string is (in)correct. So something basc like:...
View ArticleRe: A datawindow grid question
Create the text label, but make sure its properties are set to foreground.Export a grid style DW where you've manually added a text box with its properties set to foreground to get the exact syntax for...
View ArticleRe: A datawindow grid question
OK.. it was just a thought. Suggestion#2 => How about using the same grid DWO but having the Label Text already present but invisible. Then, create a computed column in the DWO that indicates...
View ArticleRe: using ftp with a command file as run("ftp -s" + file attachement")
Hi Yehuda, I tested with PB12.5.2 and it works fine.I use : run ("ftp -s:c:\temp\ftp_commands.txt remotemachine.domain.com ") and the file ftp_commands.txt contains :my_usernamemy_passwordlcd c:\tempcd...
View ArticleRe: using ftp with a command file as run("ftp -s" + file attachement")
Have you checked http://www.topwizprogramming.com/freecode_ftpclient.html ?Regards,_________________AUS Julián TagarroNeoSistemas SRL
View ArticlePowerBuilder Classic 12.5.2 will not open
I am a sys admin who was tasked with installing PowerBuilder 12.5.2 on several Windows 7 developer workstations on our network. The first two went great - I downloaded the 12.5.2 software and...
View ArticleRe: A retrieve question
How does Oracle handle query results when there is a sort clause? SQL Server & Sybase hold the results in tempdb then sort the data prior to streaming it back to the client all at once. If there is...
View ArticleRe: A retrieve question
It depends whether or not the columns in the order by clause are indexed. If they are, then Oracle can determine which rows need to be returned first and process the query appropriately. If not, then...
View ArticleRe: A retrieve question
Hi Roland; From the Oracle manuals ... FYI: Whenever a sort can't be completed within the assigned memory space, a disk sort is invoked using the temporary tablespace for the Oracle instance. A...
View ArticleRe: A retrieve question
And, if you're using 12c, there's a new first/next N rows feature that can help by paging the result set. Tom called it "Top-N" and it's at the end of that rather long article.
View ArticleRe: A retrieve question
It would be interesting to know if it is slow because of the amount of returned rows or because of a complex SQL. Rewriting complex SQL can gain several 100% performance boost.
View ArticleRe: Getting the Handle of the DW Edit control to pass to a spell checker
Hi Yakov Just wondering which 3rd party spell checker you're using for this as most of the controls I've seen require a Rich Text or Text Box derived from TextBoxBase for allowing highlighting? I did...
View ArticleRe: Getting the Handle of the DW Edit control to pass to a spell checker
ComponentOne VSSPELL™ 8.0 - ActiveX Spell Checking Control As pointed out above, the EditControl is just a plain ol' Windows Edit
View ArticleRe: Getting the Handle of the DW Edit control to pass to a spell checker
Use GetWindowsText to get the caption of the edit control. If it's an edit control, the caption will be the text that is in the control. The edit control that has the same text as your column is the...
View ArticleRe: Image on MDI Frame
Some Info about sizing or moving the MDI client area. SyBooks Online - Sizing the client area
View ArticleRe: A retrieve question
RetrieveRow isn't going to give the desired effect here... It can't do anything about how the server parses and processes the query and marshalls the resultset. All RetrieveRow does is give the...
View ArticleRe: Getting the Handle of the DW Edit control to pass to a spell checker
Thanks I'll check it out. I had the datawindow edit control working with the Polar Spell Checker, it's just a bit buggy unfortunately.
View ArticleRe: Image on MDI Frame
Hi Guilliaume Check out Powerbuilder 12.6 it now supports dockable windows and allows the client windows to be positioned outside the MDI frame.
View ArticleRe: outlook question
Hi Mosche, As Roland has listed, the Mailitem SaveAs method has an additional parameter for the message type. The second parameter is shown as optional in the MS documentation, however it's required...
View ArticleRe: can I declare and execute RPCFUNC from one windows function
No - you cannot dynamically declare a RPC. Much like a function or event, you must declare it using the IDE.
View Article