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...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 2051 - 2080 of 25360   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2051
Hi All, Does anyone know how to implement flat button / semi flat (controlable border thickness) in Powerbuilder which will display some sort like IE look. Is...
tanpanama_my <tanpana...
tanpanama_my
Offline Send Email
Feb 3, 2003
4:22 am
2052
Hi all, Had found the solution for insertion of page (using printopen () and printclose()). Thanx&Regards balu...
balakrish78 <balakris...
balakrish78
Offline Send Email
Feb 3, 2003
8:38 am
2053
hi all, i have attached a menu item dynamically ,tell me how to code the clicked event of that item ? Regards, Anoop...
anooppg <anooppg@...>
anooppg
Offline Send Email
Feb 3, 2003
9:29 am
2054
Venu, Have you tried the expression: Match( GetText(), "^[A-Za-z0-9]" ) in the dw-> <Column> ->Properties->Validation ?! I've tried this and it works even for...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 3, 2003
3:06 pm
2055
Wu Ming, We may have to wait for those modern/elegant controls and control-attributes in PowerBuilder in future. But for now, you may try this: Place a...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 3, 2003
3:22 pm
2056
Anoop, Take a look at: http://groups.yahoo.com/group/PowerObject/files/PowerBuilder ...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 3, 2003
3:37 pm
2057
Anoop, If you have any problem getting the file: http://groups.yahoo.com/group/PowerObject/files/PowerBuilder/PB6- SystemMenu.zip I can send it to your email...
Shekar <powerobject@....
powerobject
Offline Send Email
Feb 3, 2003
3:39 pm
2058
Shekar, Sorry for the late reply, its been a long vacation here in SG (because of Chinese New Year) , anyway, i would like to thank you for the modified ...
Rick Abainza
rick_abainza
Offline Send Email
Feb 4, 2003
9:18 am
2059
i want to make docable tree view object in MDI frame similar to system tree view as it is done in pb8&9 i found similar in a image which is in screen shots...
Tri. <trilokrawat@...>
trilokrawat
Offline Send Email
Feb 4, 2003
9:18 am
2060
I think David use a third party control in there, its not a native PB control. Cheers, =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Rick Abainza Information...
Rick Abainza
rick_abainza
Offline Send Email
Feb 4, 2003
9:26 am
2061
Dear All I would like to use the PB Interface to checkin / Checkout Objects from VSS I have different folders for every PBL in the VSS....and the same...
Rajeshwar
cmrrao
Offline Send Email
Feb 4, 2003
11:12 am
2062
Hi PB's, Is there any function that would return all PBL's used in the current appliation(application - properties - library tab - library search path). For...
balakrish78 <balakris...
balakrish78
Offline Send Email
Feb 4, 2003
2:12 pm
2063
GetLibraryList ( ) At 13:00 04/02/2003 +0000, you wrote: >Hi PB's, > Is there any function that would return all PBL's used in the >current...
Adrian Gonzalez Alonso
adrian_gonza...
Offline Send Email
Feb 4, 2003
2:27 pm
2064
It depends on PB version you're using. If your version has GetLibraryList() - you use it. If it doesn't there is one trick - let me know if you're interested. ...
Konstantin Goldobin
kostik_gold
Offline Send Email
Feb 4, 2003
4:06 pm
2065
In PB6.5 there is no "GetLibraryList()" function... and the only way we've found is to look at the EXE file with an editor and look for the librarypath......
Adrian Gonzalez Alonso
adrian_gonza...
Offline Send Email
Feb 4, 2003
4:20 pm
2066
Look in the registry at HKEY_LOCAL_MACHINE\SOFTWARE\Sybase\PowerBuilder There should be a key called "location". So that your program might find location of...
Olivier Citeau
ociteau
Offline Send Email
Feb 4, 2003
4:59 pm
2067
But I don't distribute pb.ini with my applications. I was thinking maybe you've found a method to know the library path dinamically on the customer's...
Adrian Gonzalez Alonso
adrian_gonza...
Offline Send Email
Feb 4, 2003
5:43 pm
2068
Not exactly thus. You may memorize your library list from your pb.ini. To do it you just have to initialize your string variable right in the declaration, like...
Konstantin Goldobin
kostik_gold
Offline Send Email
Feb 4, 2003
6:29 pm
2069
Konstantin, Well! That's indeed a NICE technique!! Similarly, PowerBuilder compiler stores anything that is initialized in the variable declaration on/at the...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 4, 2003
6:46 pm
2070
Hi PB's, We use PB 6.5 that doesn't facilitate the function Getlibrarylist(), Is there any other way of getting it. Thanx&Regards Balu...
balakrish78 <balakris...
balakrish78
Offline Send Email
Feb 5, 2003
4:15 am
2071
Compile-Time and Run-Time vars /////////////////////////////////////////////////////////////// ... CONSTANT string C_PRODUCT_NAME = "PocketBuilder" ; CONSTANT...
Shekar <powerobject@....
powerobject
Offline Send Email
Feb 5, 2003
4:19 am
2072
/////////////////////////////////////////////////////////////// // Global/Instance vars: //////////////////////// CONSTANT string C_PRODUCT_NAME =...
Shekar <powerobject@....
powerobject
Offline Send Email
Feb 5, 2003
4:21 am
2073
Dear Friends, This is one piece of code I got from one tips site..This is for creating Dynamic Menu Items.... In this I have a doubt.. As we are assigning...
201691-shahul Hameed
shahul_201691@...
Send Email
Feb 5, 2003
4:34 am
2074
Hi all, I need to locate the library name when a user passes a datawindow name as an argument. We use pb6.5. The findclassdefinition() function doesn't seems...
balakrish78 <balakris...
balakrish78
Offline Send Email
Feb 5, 2003
8:39 am
2075
Hai Use this code string ls_dataobject ls_dataobject=trim(sle_1.text) dw_1.dataobject=ls_dataobject powerobject lpo_object lpo_object = dw_1.classdefinition By...
A. Venu Gopal
avupativenu
Offline Send Email
Feb 5, 2003
9:29 am
2076
Item[] is a variable-size array, so PB takes care of memory allocation by itself. ... From: 201691-shahul Hameed <shahul_201691@...> To:...
Konstantin Goldobin
kostik_gold
Offline Send Email
Feb 5, 2003
4:07 pm
2077
Here's one better: you can use this technique to automatically generate ... forward global type n_cst_version from nonvisualobject end type end forward global...
Jim Espaillat
delphinusc
Offline Send Email
Feb 5, 2003
4:08 pm
2078
Jim, That's really COOL!! ... PowerObject! ... generate ... + '.Version', '') ... + '.Build', & ... APP_NAME + '.Build', 0) + 1)) ... + '.Build', 0) ... serves...
Shekar <powerobject@....
powerobject
Offline Send Email
Feb 5, 2003
4:10 pm
2079
S h a h u l, PowerBuilder takes care of allocating memory at runtime for all new menu-items as its Item[] attribute is a variable-sized array. However, there...
Shekar <powerobject@....
powerobject
Offline Send Email
Feb 5, 2003
4:43 pm
2080
Pramod, Use the Display-Format: #,###.###### or: #,###.00#### [dw. <Column> ->Properties->Format tabpage] Regards, ... PowerObject! ... ...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 5, 2003
5:38 pm
Messages 2051 - 2080 of 25360   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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