PowerBuilder Interview Question and Answers
51. | What are Extended column attributes? How can you change them dynamically? |
---|---|
It’s DataWindow object property (Expressions) which we can change dynamically using Modify() function. | |
52. | What is a code table? |
---|---|
|
|
53. | How can you modify a code table during execution? |
---|---|
Using GETVALUE() and SETVALUE() functions. | |
54. | How do you get the name of a DropDownDataWindow? |
---|---|
GetChild() | |
55. | How do you trap errors from the DataBase in the DataWindow? |
---|---|
Write some code in the DBError Event For example: IF SQLCA.SQLCode <> 0 THEN MessageBox() return 1 END IF |
|