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...
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...
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...
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, 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 ...
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...
I think David use a third party control in there, its not a native PB control. Cheers, =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- Rick Abainza Information...
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...
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...
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. ...
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......
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...
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...
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, Well! That's indeed a NICE technique!! Similarly, PowerBuilder compiler stores anything that is initialized in the variable declaration on/at the...
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@...
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...
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...
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...
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...