Re: Source/Version Control moving forwards
Hi Lars; I would also recommend Roland's SCC system. It's not expensive & can store your PB source code in your favourite DBMS. I see that David posted the link to Roland's code. As far as...
View ArticleRe: Most effiecient way to process result sets of stored procedures
Hi Tom; I bet Ricardo's observation is correct. I also bet that you didn't check the return codes on the SetTrans() & Retrieve() methods. Also, you should be using SetTransObject() and not...
View ArticleRe: RTF datawindow type - database column type
Hi Tom; I would use Long Binary with SAP 17 for RTF data to ensure all special characters & binary datum were captured properly. Regards ... Chris.
View ArticleRe: Disable Foreign Characters
That sounds like it might work. I will try it out in a few days. Thanks Roland!
View ArticleRe: RTF datawindow type - database column type
Looking through the documentation I am not seeing the proper way to save the RTF to the database. If I have description as a long binary column and I load in a RTF file created from MS Word it displays...
View ArticleRe: RTF datawindow type - database column type
There is a difference between a DataWindow of type RichText and a column of type RichText inside a DataWindow. The RichText DataWindow can be used for things like personalized letters with rich format...
View ArticleDeclaration and reference question
Hi fellow PBuilders! A question with a silly simple example in order to make it a bit clearer I have a window called w_my_window.It contains:a window function called func_edit() a dw_1a right button...
View ArticleRe: RTF datawindow type - database column type
Hi Tom; If your on PB 12.5.x or higher, have a look at the new Table Blob feature. Regards ... Chris
View ArticleRe: Declaration and reference question
Hi Panos; A common mistake (especially when you have not had enough coffee ) ... Try: W_My_Window W1 W1 = ParentWindowW1.func_edit() HTHRegards ... Chris
View ArticleRe: Declaration and reference question
You need to:Declare a variable in the menu of the window typecreate a function in the menu to set the variablecall the function after creating the menu in the right mouse event and be you pop the menu...
View Article