Search the web
Sign In
New User? Sign Up
PowerObject · PowerBuilder / PFC Developers' Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 25423 - 25453 of 27001   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
25423
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...
sivakrith
Offline Send Email
Sep 1, 2008
8:13 am
25424
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 ...
Cukierkorn Arie
ariecukierkorn
Offline Send Email
Sep 1, 2008
2:31 pm
25425
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...
aarif.shaikh
Offline Send Email
Sep 1, 2008
5:20 pm
25426
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...
Ian Faigao
ian_faigao
Offline Send Email
Sep 2, 2008
4:24 am
25427
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 ...
Amanullah
ag_aman2004
Offline Send Email
Sep 2, 2008
10:13 am
25428
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...
Cukierkorn Arie
ariecukierkorn
Offline Send Email
Sep 2, 2008
11:37 am
25429
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...
BKR Shivaprakkash
sivakrith
Offline Send Email
Sep 2, 2008
11:42 am
25430
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...
Rich Bianco
rbianco
Offline Send Email
Sep 2, 2008
12:34 pm
25431
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...
Olan Knight
olknight
Offline Send Email
Sep 2, 2008
12:54 pm
25432
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...
Olan Knight
olknight
Offline Send Email
Sep 2, 2008
12:56 pm
25433
ll_rc is 1 after line 3 is run, so everything seems good just before the Retrieve. I don't know how to step through the sqlPreview event. Any good ...
David G
mr_david_gar...
Offline Send Email
Sep 2, 2008
3:18 pm
25434
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...
Olan Knight
olknight
Offline Send Email
Sep 2, 2008
3:34 pm
25435
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...
David G
mr_david_gar...
Offline Send Email
Sep 2, 2008
5:44 pm
25436
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....
David G
mr_david_gar...
Offline Send Email
Sep 2, 2008
5:49 pm
25437
I don't remember if I did. It was long ago....
David G
mr_david_gar...
Offline Send Email
Sep 2, 2008
6:00 pm
25438
That's fine david no probs, thanks for ur response....
aarif.shaikh
Offline Send Email
Sep 2, 2008
11:53 pm
25440
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...
GJW
gwoerheide1
Offline Send Email
Sep 3, 2008
12:27 am
25441
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...
BKR Shivaprakkash
sivakrith
Offline Send Email
Sep 3, 2008
6:22 am
25442
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...
ashvin dalwadi
dalwadiashvi...
Offline Send Email
Sep 3, 2008
7:42 am
25443
Hi Ashwin, Welcome to the group. tabpage_corporate_action is a class which inherits from u_tp_corporate_action. That is why className() returns...
Olivier Citeau
ociteau
Offline Send Email
Sep 3, 2008
7:48 am
25444
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...
Cukierkorn Arie
ariecukierkorn
Offline Send Email
Sep 3, 2008
8:05 am
25445
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. ...
Cukierkorn Arie
ariecukierkorn
Offline Send Email
Sep 3, 2008
8:23 am
25446
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...
Ian Faigao
ian_faigao
Offline Send Email
Sep 3, 2008
11:47 am
25447
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...
Olan Knight
olknight
Offline Send Email
Sep 3, 2008
1:55 pm
25448
Thanks, This code is working fine... Thanks again... Ashvin Dalwadi Sr. Software Engineer, Hexaware Technologies Ltd. ... From: Ian Faigao...
ashvin dalwadi
dalwadiashvi...
Offline Send Email
Sep 3, 2008
3:31 pm
25449
I changed SetTrans() to SetTransObject() and now it works. I don't know why, though....
David G
mr_david_gar...
Offline Send Email
Sep 3, 2008
4:32 pm
25450
I'm glad you got it working! Olan ... From: PowerObject@yahoogroups.com [mailto:PowerObject@yahoogroups.com] On Behalf Of David G Sent: Wednesday, September...
Olan Knight
olknight
Offline Send Email
Sep 3, 2008
4:46 pm
25451
Thanks for all your help, Olan! On Wed, Sep 3, 2008 at 12:46 PM, Olan Knight...
David G
mr_david_gar...
Offline Send Email
Sep 3, 2008
6:26 pm
25452
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...
peesapati sairam
psr141
Offline Send Email
Sep 4, 2008
12:15 pm
25453
Hi all... How Can I create a dynamic datawindow control at runtime?...
yogesh_naikawadi
yogesh_naika...
Offline Send Email
Sep 4, 2008
12:15 pm
Messages 25423 - 25453 of 27001   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help