Is there anybody who has a working example of PowerBuilder "server push" technology in distributed environment? I tried downloading chat.zip, but the doesn't...
Hi Nestor, The second thing you need to check, is make sure you issue a COMMIT statement after the dw.update () The first thing, is Onin's message. ... ===== ...
This problem always arises on a multiple user environment, usually this problem arises if we forgot to issue a commit statement after every delete statement or...
Can anyone know how to call stored procedure function into source script? Regards Cris ... From: Srikanta, Ashwin To: 'PowerObject@yahoogroups.com' Sent:...
Hi All Sorry for asking this question again. I need a solution for this problem ASAP. Any help is greatly appreciated. Here is the problem My application hangs...
bino.thomas@...
Jun 1, 2004 8:33 am
10407
Thanks to those who responded to my post about this issue, I really appreciate your concern. Anyway, this issue has been resolved yesterday afternoon, I was...
Dear PB Gurus I am having one requirement to print powerbuilder datawindow in dot matrix printer. I have desined the DW for pre-printed format and took print...
Hi Gtatias Have you set the margins on both the datawindow and the printer settings? Does your printer driver support custom paper sizes? If it does, manually...
Hi Maronilla Thanks for ur valuable reply. I have set the margins in DW and printer. My custom page size is 15x12. I have put the font as courier new....
I thought i answered to your first message. Why do you use API functions instead of PB functions : FileOpen, FileWrite, FileClose ? Do you write to a local...
These external functions are used for Writing to a COM port (like scanner). So PB functions will not help. ... From: Olivier Citeau [mailto:ociteau@...] ...
bino.thomas@...
Jun 1, 2004 12:14 pm
10413
So, we will need your code. How do you open the file ? Does "CreateFile" succeed ? One possible cause might be that you made a mistake while translating from...
Ok here is the code ii_comPort = CreateFileA(ls_port, GENERIC_READ + GENERIC_WRITE, FILE_SHARE_NONE, ll_null, OPEN_EXISTING, FF_OVERLAPPED, ll_null) The above...
bino.thomas@...
Jun 1, 2004 12:54 pm
10415
I would have been interested in the declare external function part. If you follow naming conventions ii_comPort is an int. But CreateFileA returns a "win32...
Hello PBs, I have created an OLE-controle in a window (OLE-Control - insert object / create new object - type Microsoft word) I want to preview Word.Docs and...
As of OLE, i recommend to buy "PB7 unleashed" ... ===== Olivier Citeau Paris, France Yahoo! Mail : votre e-mail personnel et gratuit qui vous suit partout ! ...
Willian, I am using PowerBuilder 7.xx. Somehow my detail band expression color expression is not working. And another thing how do you specify to set text...
Seen lots of em but I can only think of one right now.. http://www.intelliserve.com/ ... From: Sudirman [mailto:paulus_sudirman@...] Sent: Friday, May...
Hi Olivier ii_comport is declared as Ulong here is the external function declarations /* To create a file */ function ulong CreateFileA( ref string lpszName,...
bino.thomas@...
Jun 2, 2004 4:09 am
10424
PB Version 8.0.1, Build 8004 I created a Project object and have identified an exe and pdr and then under the Design dropdown I run the Deploy project. When I...
Hi, The deploy project item will build your application according to the build options you have given in your project object. If you build an exe with PBDs...
This could happen if you have not tick the option to deploy in the target. Do a right click on the target.. choose properties....check the deploy tab., there...
hi, you can specify a case() expression on the color property of the detail band : case(status when 1 then rgb(x,x,x)when 2 the rgb(y,y,y)....else rgb (n,n,n)...
Are you a new PB developper ? If yes, welcome ! If no, is it a joke? !:) Whatever is your case you should read and follow the Getting Started manual which...
You will also need the PowerBuilder dll's in the same directory or if in a separate directory have the directory in the computer's path. Whew, I actually used...
Sharief , If you need to change the text color of a column it is the basic datawindow column property to do that, similarly for the BG color as well , But when...