Search results

  1. Rajat Sharma

    Question String Manipulation Problem - Urgent

    Larry, I will check the exact document type and the respective methods or something similar that i could use there. I don't know exactly how to use this API with my code, i will try that as well. Thanks & Regards! Rajat.
  2. Rajat Sharma

    Question String Manipulation Problem - Urgent

    Tom, I checked the URL in doc print and there URL comes with underline for line 1 but i didn't check by printing that doc. In our local development shop, we can't test via printing the document. How we could remove underline of first URL string and is it possible that, When the hole thing...
  3. Rajat Sharma

    Question String Manipulation Problem - Urgent

    Thanks for replying Larry! I don't know about the exact type of the document, But we usually do Doc print before printing the content, its a kind of print preview. Could you please suggest something that how could we create hyperlink for a char string. Thanks & Regards! Rajat.
  4. Rajat Sharma

    Question String Manipulation Problem - Urgent

    Thanks for replying Tom! 1. We are doing a doc print here, and maximum char that we could take in a line is 80. 2. Because all the lines are part of the URL message so ideally all the lines should be underlined. If we are not able to achieve this then at least all the lines should be in plain...
  5. Rajat Sharma

    Question String Manipulation Problem - Urgent

    Thanks for replying! I know that everything after HTTP is a URL and comes with underlining by default, but as per my scenario i have to break the URL into lines (Because of length issue) and underline them as well because they all are part of it. but i don't know how could i achieve that...
  6. Rajat Sharma

    Question String Manipulation Problem - Urgent

    I searched in my docs and conclude towards UNDERLINE keyword or FILL method. i will try these and update if this could fix the issue. If you have any other suggestion then please share.
  7. Rajat Sharma

    Question String Manipulation Problem - Urgent

    Hello Everyone, hope you all are doing well. :) I am stuck in a problem of long URL string. What I did: I wanted to display complete URL message and the size of URL string is 260 chars. I wanted to display that in doc print and we could display maximum 80 chars in a single line, for that I...
  8. Rajat Sharma

    Reference vs Availability

    What is the difference between the reference of a table and availability of a table? For ex: FOR EACH customer: END. IF customer.name = “something” THEN MESSAGE “something”. Compiler will allow me to compile this code without any error or I could reference the table customer outside the...
  9. Rajat Sharma

    Transactions

    Hello Everyone, hope you all are well. :) While working with transactions, I always keep in mind that my transaction scope should be as small as possible. But I am unable to envision the practical impact due to that. For example: if record scope is available outside the block then record is...
  10. Rajat Sharma

    Dynamic Temp-table

    Hi Cringer, Thanks a lot for your suggestion. Thanks & Regards! Rajat.
  11. Rajat Sharma

    Dynamic Temp-table

    Thanks for replying Greg! Sorry to say, but Last time I faced difficulties in creating dynamic temp-table and asked question regarding the same. Now I could make that for any of database table but curious to know its advantages. What I understand from first point is, when we pass handle (foo)...
  12. Rajat Sharma

    Dynamic Temp-table

    Hello Everyone, hope you all are well. As of Now, I could understand how to use dynamic temp-table but I am unable to understand: Why to manage pointers, dynamic buffers, methods, properties of dynamic objects and lot more stuff like we have to take responsibility of deleting them as well. If...
  13. Rajat Sharma

    Move/rename

    Hello Everyone, I forgot to mention that i found the solution of my problem with new progress version because in older version OS-RENAME cause some issues with different file systems. Thanks & Regards! Rajat.
  14. Rajat Sharma

    Buffer

    Yes definitely, i will go through that. I have Prohand book for progress, is there anything specific that you can suggest or should i go ahead with the same. Thanks a lot for your mentorship. Thanks & Regards! Rajat.
  15. Rajat Sharma

    Buffer

    Hi Greg, DBA, Initially i thought the same, that crating buffer with same table name doesn't make sense. Because i saw this kind of stuff used in my local shop so i searched around and found some related stuff:- This link specify the usage but i didn't understand this either...
  16. Rajat Sharma

    Buffer

    Hi Everyone, I am still unable to understand the concept of taking buffer name same as table name. because if i do something like that: DEF BUFFER customer for customer. 1. Then how AVM will get to know that, we are creating the new buffer or its the default one.? 2. If AVM treats both the...
  17. Rajat Sharma

    Buffer

    Hi DBA, 1. I am still stuck with my first point, Let me elaborate it . For ex: DEF BUFFER b-cust1 for customer. FOR EACH b-cust1: /**/ END. FOR EACH customer: /**/ END. 1. For first FOR EACH block : An alias(b-cust1) of customer table is crated and bring into memory? 2. For second FOR...
  18. Rajat Sharma

    Buffer

    Hello Everyone, hope you all are well. :) I have few queries related to buffer: 1. As per my understanding each DB table has its default buffer with the same name, then why to create buffer with the same name as table name, apparently it works the same as default buffer. please suggest. 2. We...
  19. Rajat Sharma

    Handle

    Hello Everyone, hope you all are Well. :) As per above description i started working with handles and have further concerns regarding handles: 1. We can use Static object without using handles but we have to use handles if we use dynamic objects, then why to associate handle with dynamic...
  20. Rajat Sharma

    Move/rename

    Hello Everyone, Thanks Cecil, your code works fine but slight different from my requirement and my curiosity as well. I am still confuse with OS-RENAME, i found that OS-RENAME doesn't work on different file system but here i am unable to understand the meaning of file system(is it bin sort of...
Back
Top