Search results

  1. G

    Getting trouble with uploading binary file using webspeed.

    Please Ignore this post: Moved to Webspeed section please ignore.. wrong post
  2. G

    Display Question

    Hi , I got this from knowledge base ID: P117058 Title: "4GL: How to use FORMAT dynamically in 4GL" Created: 06/28/2006Last Modified: 10/16/2008Status: Unverified Goals: 4GL/ABL: How to use FORMAT dynamically in 4GL How to specify FORMAT in runtime Example of FORMAT value being...
  3. G

    Need to display date and time in "MM/DD/YYYY hh:mm:ss" format

    I would prefer the first option. I think it is much more safe, reliable and easy.
  4. G

    Need to display date and time in "MM/DD/YYYY hh:mm:ss" format

    I would prefer the first option. I think it is much more safe and reliable.
  5. G

    proper method to configure webspeed error redirect

    Hi, i havent use this but I found this part in the (httpd.conf)config file of my apache web server.. # Customizable error responses come in three flavors: # 1) plain text 2) local redirects 3) external redirects # # Some examples: #ErrorDocument 500 "The server made a boo boo."...
  6. G

    Need to display date and time in "MM/DD/YYYY hh:mm:ss" format

    You may also be interested with 24 hour format: display string(timeField,'HH:MM:SS AM'). cool.
  7. G

    Error 6107 and 6061

    I'm thinking about that too. I'm currently working on a proposal of upgrading all apps to higher version. But I am thinking that if the upgrade takes place it should be in GUI not in CHUI which will take some time. Regards
  8. G

    Error 6107 and 6061

    Hi Sir Tom, The Issue was resolved when i change the system variable named "PATH", from C:\orant\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\Program Files\ATI Technologies\ATI.ACE\;C:\Program Files\MySQL\MySQL...
  9. G

    Error 6107 and 6061

    Hi, Do you have any advice where or what settings should I check? I'm really wondering because I installed them in completely different paths. And if I remove my new Version(OpenEdge10.1B), My CHUI application works fine again.
  10. G

    Error 6107 and 6061

    Hi Masters, I'm wondering if someone has encountered error 6107 and 6061. I have my progress version 9.0B installed in c:\program files\progress9.0B having folder name Progress9.0B and can run my application. The next thing is when I installed Openedge 10.1B in c:\progress\openedge10.1B...
  11. G

    result pages

    Hi, I'm also working on it. I have found several methods on how to implement the results paging. In other forums, it is strongly adviced that it is better to use Server-side Scripting rather than using Client-side Scripting such as Javascript, which i consider true, I have tested this one...
  12. G

    Result Paging in Webspeed

    Hi, I want to start with HTML Paging Server-Side but I don't have any idea how to do this. I am thinking of temp-table which will hold the page number and result starting key and ending key. So far this is what I'm thinking. Anyone who worked on this? I really need your help. Thanx
  13. G

    Import csv into Excel - FieldInfo

    Woow.. If this s the case, I might think that you have to check each cell in a column if it has trailing minus sign and manipulate the value of the cell by 4gl. This will remove the trailing minus sign in column B and format the column to Decimal. Please let me know what you think. Def var...
  14. G

    Import csv into Excel - FieldInfo

    If the source file does not have trailing negative signs, then the problem might be during the import. Have you already tried using Excel function Open() instead of OpenText()? I have done this before and should work. Much better if you can attach the file so anybody can help you figure it...
  15. G

    Import csv into Excel - FieldInfo

    assuming your 2nd column is column B of the sheet, you might want to do something like this: Def var ExAppl as com-handle. CREATE "Excel.Application" ExAppl. ExAppl:Visible=true. ExAppl:Workbooks:OpenText ( "D:\McData\Cust92\arprsagt.dat",,,1,,,,True,,,, ,). ExApp:range("B:B"):NumberFormat =...
  16. G

    Weird Problem with set-cookie & get cookie. Please help

    Hi Blue, I was really waiting for a reply like this, thanks. It's just my first project for a web application and also my first experience in web programming, so I'm still adjusting and researching for ways of implementing something. Actually, I haven't figured it out yet until now but I have...
  17. G

    Questions about formatting Progress data.

    I suggest you have to concatenate variables with your pipes sign to remove trailing spaces or with combination of trim() function if your not really that confident with your data. If the progress doesnot display the entire string to an output file, you can format the string: (see code)...
  18. G

    Weird Problem with set-cookie & get cookie. Please help

    I have this code under the head tag of a login page. I wonder why can't the set-cookie function do not recognize the variable? <see in the red font> I also tried to replace it with the "tablename.fieldname" the table seems to be not available while it is available outside the Procedure...
  19. G

    Please help with Javascript and SpeedScript

    Hi Webguy, Thanx for the help, It worx now..
  20. G

    Please help with Javascript and SpeedScript

    Hi everyone, I'm new to this network and hoping many here are active about webspeed development. I am fairly new to webspeed same with javascript and I have this situation. My goal is to pass a parameter to another page(html) so in my first page You'll find something in the code like this...
Back
Top