Connection Information

To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host.

Connection Type

Blog – Page 11 – PowerBuilder Library

Blog

DataWindow Processing Property Values

DataWindow Processing Property Values. View edit source datawindow processing. 0 (Default) Form, Group, query, Or tabular1 Grid2 Label3 Graph4 Crosstab5 Composite7 RichText Good Luck!

Auto LogOff In PowerBuilder

Auto LogOff In PowerBuilder To autologoff after an hour of inactivity, place code in events as follows: If you are familiar with the workings of the Idle event, then you could have it start a timer on your frame window in PB5, and there is a timer NVO in PFC 6.0. Both of these will…

PowerBuilder API List

PowerBuilder API List Good Luck!

Window Event In PowerBuilder

Window Event In PowerBuilder WINDOW EVENTS IN POWERBUILDER Activate Just before the window becomes active Clicked User clicks in an unoccupied area of the window (any area with no visible, enabled control) Close When window is closed. CloseQuery When you remove a window from display (close it) Deactivate When window becomes inactive. DoubleClicked When user…

Windows 7 Shell Commands And Run Commands

Windows 7 Shell CommandsShell commands are incredibly useful when creating shortcuts or quickly accessing hard to get to locations. They can be used to pin shortcuts to the Taskbar or just to make your life easier. For those that are preceded by “Shell:” when using them in shortcuts you need to add “explorer.exe” in front…

C/C++ Datatype Conversion To PowerBuilder Datatype

C/C++ Datatype Conversion To PowerBuilder Datatype PowerBuilder Datatype C/C++ Datatype Blob PBBlob Boolean int (0,1) Character char Date PBDate DateTime PBDateTime Decimal PBDecimal Double double Integer int Real float String PBString Time PBTime UnSignedInteger unsigned int Boolean BOOL UnSignedInteger WORD UnSignedLong DWORD UnSignedLong HANDLE UnSignedLong HWND String Ref LPSTR String Ref LPBYTE Long Ref LPINT…

Using KeyBoard Code In PowerBuilder

The keybd_event API is a simple but handy API. You can do anything you can do with your keyboard using this function. Popup the windows menu, place the current window in clipboard etc. There are many keycodes you can use. Some keys work instantly for instance, the tab key. The shift key however has to…

Dynamically Creating DataWindow Objects

Dynamically Creating DataWindow ObjectsObjects can be added to your DataWindow programmatically via a Modify statement. In my opinion, the dynamic creation of objects within a DataWindow has been a highly underused feature.Dynamically creating (or destroying) objects within a DataWindow has many advantages such as:– Dynamically changing the content– If a printed DataWindow varies in appearance…