Can I use 16-bit DLLs in 32-bit PowerBuilder 5.0?
Question: Can I use 16-bit DLLs in 32-bit PowerBuilder 5.0? Answer: The short answer is no. If you have access to the source, you could writea thing called a thunk
Question: Can I use 16-bit DLLs in 32-bit PowerBuilder 5.0? Answer: The short answer is no. If you have access to the source, you could writea thing called a thunk
Question: I have number of forms, including a MainMenu form. On the MainMenu form I have several buttons that I want to click and connect to my other forms. I
Question: I have a table that contains a concatenated field delimited by colons. The field contains approximately six values I want to house as separate columns on the table. How
Question: How can I determine the current filter and/or sortassociated with a DataWindow?For example:s_old_filter = dw_1.WhatsTheCurrentFilter()dw_1.SetFilter(“”)dw_1.Filter()// Do somethingdw_1.SetFilter(s_old_filter)dw_1.Filter() Answer: You can use the Describe function:ls_OldFilter = dw_1.Describe( “datawindow.table.filter” )
Question: How can I print two DataWindows on to one page? Do you have to use a composite DataWindow? Or is there a way to do it with two separate
Question: What are the advantages of converting a PC-based Cobol application to a P- based relational database? Answer: The most compelling advantage of converting legacy data into a relationaldatabase management
Question: Is there a driver for Oracle 7.3.2.3 — the version Oracle recommends for NT 4.0? Answer: Yes, but it is not readily available (as of this writing, 4/14/97). You
Question: How can I make a column that will automatically increment by one each timea new row is inserted into the table? Answer: The solution will depend upon the database
Question: Is it possible to activate an event or function at regular time intervals in a customer user object?I’ve tried to defined a timer event using event id pbm_timer. But