Hello, Would like to know whether PNG image formats are supported by PB 10.5 or not? If not, is there any workaround? Happiness Always BKR Shivaprakkash...
Dear Gurus, I have a Casting problem between a computed field an a local variable. In my dw I have a computed field , called charges My code : REAL amount ...
Thanks for the response david. I did turn on the sysobjects option in MS ACCESS DB, i browsed through the available System Tables. The one which has details of...
What sort of a computed field is it? SQL or DW?.... If it's a SQL computed field, you might want to check the actual result of the computed field by running...
Try to user GetitemDecimal() Dec{2} amount amount = dw_list.GetItemDecimal(ll_row,"charges") Thanks & Regards Amanullah A. G I. T. Department Post Box 99999 ...
Ian, The computed field is a dw one. The expression is correct . Another thing is I checked the values using debug. Before placing the dw value in local...
In both cases, the amount variable contains the same value. Is that not a accident ? Means some fixed value is assigned between the value is assigned to...
Hi Arie, It would be useful to see the code in the expression, if you already posted that I apologize. Computed fields are very touchy. Also is there a display...
First, check the return status of each step. Perhaps there is an error occurring: 1| ll_rc = open(w_report) I am assuming that the OPEN processing is what is...
As stated in the PBv10.5 HELP file: InkControl PictureFileName String Specifies the name of a file that contains the picture for the control. The default is an...
Find the SQLPREVIEW event and put something in the event so you can add a breakpoint. Example: long ll_result ll_result = 1 ll_result = 2 ....and out a...
I don't think I'm using the PFC. I found the window then datawindow in the object browser, and found Retrieve() under the Functions in that, but can't find...
I found the SqlPreview event of the dataWindow, and put a breakpoint in it like you suggested below. But the debugger never stopped at that breakpoint....
This sounds like a precision issue. Sybase defines a real as: A standard data type that is a signed floating-point number with 6 digits of precision in the...
When I try to display a png image file in a picture control / Picture button, I could not select that file. Any one tried ? Siva ... From: Olan Knight...
Hi, 1. I had added one tab control on window. 2. I had created one visual user object(u_tp_corporate_action) and added DW on that. 3. Then I had assigned this...
Siva, I runned with debug to be sure that the variable amount is zero. I also took care to reinitialize it with zero. ... In both cases, the initial value was...
Amanullah, This solution resolves my problem. The point is we are going to need to change everyplace where is written real to dec{2} to avoid future problems. ...
DW Clicked event?... Anyways, you won't able to get the actual object name because the tab page is a nested class. You can use Classdefinition Objects. Try...
Use an INKPICTURE control, not a picture control. Olan ... When I try to display a png image file in a picture control / Picture button, I could not select...
I'm glad you got it working! Olan ... From: PowerObject@yahoogroups.com [mailto:PowerObject@yahoogroups.com] On Behalf Of David G Sent: Wednesday, September...
Hi, Can anyone tell me what is the functionality behind the Find(search) function in PB? how they will use? if the interviewer asks what the answer i have to...