Search results

  1. J

    creation of excel sheet with logo/pic

    http://www.progresstalk.com/showthread.php?t=111202 You may check the above link.
  2. J

    IDE for Progress

    The below link asks for serial no and sales order no for OE purchase details. I have requested the concerned department of my company to provide the same. http://www.progress.com/cgi-bin/custprofile.cgi/esd/index_reg.w Meanwhile, it will be very helpful if you can send me the link to the...
  3. J

    IDE for Progress

    Thanks Tamhas, Trying to get hold of OpenEdge Architect.
  4. J

    Can you pass temp-tables?

    This feature is available only in OpenEdge I guess.
  5. J

    Progress as a system Service

    If you want to start your application on start up you can run the procedure file from a batch file and the add the batch file in the start up schedule.
  6. J

    A background session not silent enough

    Hi All, I have chanced upon a solution. I installed Service Pack 2 on Windows 2003 server and available Windows updates and the nagging black screens of svchost.exe are gone! :)
  7. J

    IDE for Progress

    Hi friends, I had an idea that Eclispe can be used as an IDE for OpenEdge. Prorefactor seems to be the required plug-in. I have no idea where to get Prorefactor as the link from where I was to supposed to download the plug-in is not working. http://prorefactor.oehive.org/update/ Any...
  8. J

    A background session not silent enough

    Hi All, OS: Windows 2003 Server Progress Version: OE10.0B While strating a background OE session using a batch file, a black screen of svchost.exe appears on screen. Need to get rid of this. Can anybody help? Thanks in advance.
  9. J

    set a user time zone...

    CONNECT VALUE(chrDBName) -H VALUE(chrDBHost) -S VALUE(chrDBService) -N TCP NO-ERROR. ASSIGN SESSION:TIME-SOURCE = "db-name". The above code will ensure that only database server time is used. This is independent of the physical location of the client machine. Therefore, UK people will get...
  10. J

    set a user time zone...

    If the US Customer connects to the UK Server, you can use the following code to use the server time as follows: ASSIGN SESSION:TIME-SOURCE = "db-name".
  11. J

    Access is denied when use put method in ftp

    Getting interested. But can't simulate the problem with my setup. Still think that the probelm lies in the FTP server end. If the issue was in the client machine, the message should have been something like. 150 Opening ASCII mode data connection for test.txt. > test.txt:Permission...
  12. J

    Access is denied when use put method in ftp

    Appears that the username you are using to log in the ftp server where you are uploading the file, does not have write permission.
  13. J

    Tapi

    That's fine. We'll wait!!
  14. J

    Tapi

    Seems interesting Patrick! Can we see your code? :)
  15. J

    O O A B L

    Thanks Tamhas. What I understand after going through them and other resources is Full implementation of OO features are still not available in OE . I hope they will be available soon.
  16. J

    O O A B L

    Hi, I was just wondering, is there any way in OOABL to create user defined classes and harness OO features as available in langulages say C++? Can anybody give me some clue regarding this...?
  17. J

    Procedure for Report Generation

    Thanks Dev. I made the required chages and it worked.
  18. J

    Procedure for Report Generation

    Hi, I am new with table handles and I am trying to write a procedure which will generate a dump of a temp table as a csv file, passed into it as a parameter. Define Temp-table TT_1 Fields f1 As Char Fields f2 As Char . Define Variable i As Integer No-undo. Do i = 1 To 2...
  19. J

    Displaying Credit Card format

    Still it seems easy. But in case of different formats there should be some signal to the function which format to choose. Let us suppose there are five different formats for five different credit card types then you can store the formatting info in the database based on the card type and run a...
  20. J

    Splash Window

    Thanks doreynie, That is exactly what I wanted. Thanks again! :)
Back
Top