Search found 8 matches

by dclayton
Wed Jun 30 2010
Forum: Power Builder Community
Topic: cdintf.dll Locked
Replies: 2
Views: 10869

Re: cdintf.dll Locked

Larry,
Which version of Amyuni are you using, and do you have the multi-threaded version?

Don Clayton
Intertech Consulting, Inc.
by dclayton
Tue Feb 17 2004
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: PDF Converter 2.10h fails to lock
Replies: 2
Views: 4669

We finally ran this issue down and found the following: We were running Amyuni 1.59 and 2.10h on the same computer, one version was for some legacy software, the other was for the new stuff. The Amyuni 1.59 driver set the following key in NT: HKEY_USERS \.DEFAULT\Software\Microsoft\Windows NT\Curren...
by dclayton
Tue Feb 10 2004
Forum: Amyuni PDF Converter (PDF Printer Driver)
Topic: PDF Converter 2.10h fails to lock
Replies: 2
Views: 4669

PDF Converter 2.10h fails to lock

I recently purchased the PDF Converter 2.1h, and I am developing an application that needs to lock the printer driver while printing (using the lock() method in cdintf210.dll). I have discovered that the lock() method appears not to work on Windows 2000 server, but while testing this found that the ...
by dclayton
Wed Apr 16 2003
Forum: Power Builder Community
Topic: Converting RTF to PDF?
Replies: 2
Views: 9753

Anders, You are running a really old version of EAServer, and it was not the most stable in the world. I recommend: Jaguar CTS - Component Transaction Server/Version 3.6.1 (Build 36114) While I'm not sure how Jag will like running the Rich Text DataWindow, this may work well and it may blow sky high...
by dclayton
Wed Apr 16 2003
Forum: Power Builder Community
Topic: Web ptimization generated broken document
Replies: 7
Views: 16592

We use similar techniques for large documents all the time, and have never seen this. I think you are either picking up the document before it is compeltely spooled to the file and sending it to the browser, or something like that.
by dclayton
Wed Apr 16 2003
Forum: Power Builder Community
Topic: Cannot use Update and Insert statement with Access2000 in PB
Replies: 1
Views: 7423

Your code is below: String ls_name ls_name = "David" Update employees Set name = ls_:name Where id = 1 Using SQLCA; If SQLCA.SQLCode <> 0 Then MessageBox("", String(SQLCA.SQLCode) + ' '+ SQLCA.SQLErrText); End If It appears that you have the : in the wrong place. It should be som...
by dclayton
Wed Apr 16 2003
Forum: Power Builder Community
Topic: Move to first record in the data windows control
Replies: 3
Views: 8923

You typically want to call something like the following: dw_1.insertrow() //inserts the row dw_1.scrolltorow() //puts the user on the desired row dw_1.setcolumn() //put the user in the desired column dw_1.setfocus() //to set Windows' focus to the dw control. Don Clayton Intertech Consulting, Inc. Ho...
by dclayton
Wed Apr 16 2003
Forum: Power Builder Community
Topic: PDF on EAServer
Replies: 2
Views: 9853

Jenny, It appears as if you are leaving the Jag component in an undesirable state. This could be because the component wasn't released back in to the Jag pool properly, or perhaps because it was corrupted after the first call. My company has had a lot of success with PB/Jag/Amyuni, (same basic build...