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 11594 - 11624 of 27001   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11594
Sankar, There is a tool called PowerGen, using which you can build ur application in no time. Am using it for 2 years now its very very fast. For more...
Srikanta, Ashwin
ashwin_srikanta
Offline Send Email
Sep 1, 2004
7:04 am
11595
Hi there! Is there a way to create a submenu dynamically? James Phillip Cañada ... Outgoing mail is certified Virus Free. Checked by AVG anti-virus system...
James Phillip Cañada
jpdcanada
Offline Send Email
Sep 1, 2004
8:22 am
11596
Dear Olivier Sir, Thanks for your suggestion, I'm presently understanding the details in the book "Data WareHousing In the real World" by Sam Anahory and ...
Konka Kiran Kumar
konka_kiran
Offline Send Email
Sep 1, 2004
8:39 am
11597
... WinAPI /terrible, but possible/...
littlejohn1232002
littlejohn12...
Offline Send Email
Sep 1, 2004
8:53 am
11598
http://eric.aling.tripod.com/PB/tips/pbtip37.htm ... ===== Olivier Citeau Paris, France Vous manquez d’espace pour stocker vos mails ? Yahoo! Mail vous offre...
Olivier Citeau
ociteau
Offline Send Email
Sep 1, 2004
10:13 am
11599
Hi all, Can anyone let me know how to migrate a PB6.5 application to PB 8.0 ? We are using PFC. Do i need to physically copy PB 8's PFC and do migration or...
vishal_kanna2000
vishal_kanna...
Offline Send Email
Sep 1, 2004
10:14 am
11601
As long as all the PBLs that you need are in your search path - and it also includes the PFC PBLs that you developed with, you do not need to copy anything....
CG
chandrakant_g
Offline Send Email
Sep 1, 2004
1:14 pm
11602
CG, If you mean just data points, Scatter or 2D Line graphs do this automatically. If you would like to display data values above data point, you can do this...
Mikhailovsky, George
gmikhai
Offline Send Email
Sep 1, 2004
1:28 pm
11603
Here's an example: TRY (some processing here) CATCH (RunTimeError lo_error) If lo_error.GetMessage( )= 'DivideByZeroError' Then return -1 ElseIf...
randy gatsby
randygatsby
Offline Send Email
Sep 1, 2004
1:49 pm
11604
It works just like the EXCEPTION handling in Oracle. It will prevent PB from invoking the dreaded systemerror bomb... Though, we encounter problem on compiling...
randy gatsby
randygatsby
Offline Send Email
Sep 1, 2004
2:09 pm
11605
... Remember that 'try catch' only works if you are using pbds and not dlls. Martin...
Martin Belden
mrmarbel
Offline Send Email
Sep 1, 2004
2:36 pm
11606
Does someone know whether a PB 5.0 application (presently on Windows NT ) run perfectly without problems on Windows 2000? Regards, Mintu...
Bora, Mintu (CAP, CORP)
mintu.bora@...
Send Email
Sep 1, 2004
3:10 pm
11607
Though shall test your application on W2k ! I have a pb5.04 application running on my Win XP box, but you may have some issues. If i were you, i would consider...
Olivier Citeau
ociteau
Offline Send Email
Sep 1, 2004
3:44 pm
11608
Thanks Olivier. ;-),point taken ,but I did test the application yesterday !! (No problems yet,but somehow I have this feeling that the application might crash...
Bora, Mintu (CAP, CORP)
mintu.bora@...
Send Email
Sep 1, 2004
3:54 pm
11609
Hi all, In PB (I am using 8.0.1), when you retrieve data in a datawindow/datastore say dw_1, the original values from the database are stored in the Original...
priyavadan.bhudia@...
Send Email
Sep 1, 2004
3:59 pm
11610
Sorry, one more question. What is the best way to obtain data for a specific handle they have selected? I did this "ls_protocol_id =...
davidkinser
Offline Send Email
Sep 1, 2004
5:02 pm
11611
David - Capture the info you need in the SelectionChanged event of the treeview: long ll_currentLevel string ls_label treeviewitem ltvi_selectedItem // Use...
Olan Knight
olknight
Offline Send Email
Sep 1, 2004
5:17 pm
11612
Bad idea! If the migration fails for any reason, you could end up with PBL's you can't open in either version. Save yourself the headache and spend the 30...
Jim Espaillat
delphinusc
Offline Send Email
Sep 1, 2004
6:28 pm
11613
I think this a cleaner example: TRY (some processing here) CATCH (DivideByZeroError lo_error) return -1 CATCH (NullObjectError lo_error2) return -2 CATCH...
Jim Espaillat
delphinusc
Offline Send Email
Sep 1, 2004
6:33 pm
11614
When you use a TRY/CATCH block, what you specify as the CATCH operator makes a difference. There are different levels of errors, and the hierarchy is: TOP...
Olan Knight
olknight
Offline Send Email
Sep 1, 2004
7:12 pm
11615
James - If your needs are not excessive, one easy way to fake this is to use existing but not used menu items. This pre-supposes that you can place code in the...
Olan Knight
olknight
Offline Send Email
Sep 1, 2004
7:12 pm
11616
I'm still getting "pfc_tvi_key=4;". I see how the ltvi_selectedItem.Label works because it is assigned in of_register syntax. How do you get...
davidkinser
Offline Send Email
Sep 1, 2004
7:20 pm
11617
Since you are using PFC treeview services.. I would use getitemstring and getitemnumber functions in any event that captures the handle, you can easily find...
Shalinder Verma
shalinderverma
Offline Send Email
Sep 1, 2004
7:30 pm
11618
FYI - From previous posts on migrating from PB6x to PB8 or PB9. Be sure to read all 4 sections completely before proceeding with your migration. AND FOR...
Olan Knight
olknight
Offline Send Email
Sep 1, 2004
8:32 pm
11619
We have a new project where I need to load Excel spreadsheet data into the database. I think we should use OLE.. Anyone have an example application of using...
Steve Adams
sa07071955
Offline Send Email
Sep 1, 2004
9:18 pm
11620
Question: If you are calling a PB window function (that you wrote), does the try-catch go in the function itself, or in the script calling the function? Ken...
Metz Kenneth
klklasm
Offline Send Email
Sep 1, 2004
9:38 pm
11621
Hi guys! Thanks for the inputs. James Phillip Cañada ... From: Olivier Citeau [mailto:ociteau@...] Sent: Wednesday, September 01, 2004 6:13 PM To:...
James Phillip Cañada
jpdcanada
Offline Send Email
Sep 2, 2004
1:57 am
11622
I want to filter rows based on certain condition from the "FREE FORM DATAWINDOW". I am pulling the information from oracle in datawindow control and ...
deepokus
Offline Send Email
Sep 2, 2004
4:50 am
11623
Hi! Is there a way to save a rich text datawindow as an rtf file? James Phillip Cañada ... Outgoing mail is certified Virus Free. Checked by AVG anti-virus...
James Phillip Cañada
jpdcanada
Offline Send Email
Sep 2, 2004
5:13 am
11624
Hi, Can any one help me out wht Netdynamics is and Which Version of Netdynamics will be compatbile for Powerbuilder . Thanks in advance!!!! Regards, Saravanan...
saravanan.k
saran2000_in
Online Now Send Email
Sep 2, 2004
9:15 am
Messages 11594 - 11624 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