Search results

  1. W

    Question Question of combo box in a browse

    This could very well be what I need to build the function. There up to 38,000 items in the browse, but only really about 15 to 20 different types of case-packing. I'll have to try that later this week as I've got a few other items that need correcting first. Thanks for the info.
  2. W

    Question Question of combo box in a browse

    For years most of my work was with the back end in progress, with some GUI. So I am building a completely new GUI interface and have a question regarding the use of a combo box. I understand how to populate it, done it many times on screens, but never within a browse. So lets say there 4 values...
  3. W

    Question Query: how to change using a trigger (GUI)

    So far, working good. For sorting, the drop down will pass the field name to a trigger with the following type of code: on select of the sub-menu do routine for that, i.e. ASSIGN cSort = 'xxxxx' then Run IP-BRSort (input cSort). Or that's the plan.
  4. W

    Question Query: how to change using a trigger (GUI)

    So true, but what I did find is that I can add on the c-win ribbon a drop down that will work just fine. I have plenty of space there. Actually, two right now, one for filter selection, the other for sort. And there's always the popup option which I used with another company years ago. Thanks...
  5. W

    Question Query: how to change using a trigger (GUI)

    Thanks for all the info, and it just got worst! (LOL), I'll give those a try, and I like that I may be able to build from a radio-set or whatever. I hope that I can place the values on the default-frame as space is an issue.
  6. W

    Question Query: how to change using a trigger (GUI)

    Needing some help in understanding what I need to do if I want to change a QUERY that is used in a browse. But first here is the layout. I have a C-Win that has the default-frame, a Frame-A and a Frame-B, Both are the same size and are not connected thru any handles. Frame-B contains the...
  7. W

    Question Help with Free Form Query. My query is based on a temp table, but I can't seem how to set some of the columns to where I can change the value.

    Funny thing, I tried that last night, and I won't go over the hours spent trying to track it down, but this morning for kicks I put enable all, and it worked. So then I tried a single field and again it worked. Getting back to last night, it might have been I did not have a CRLF after each...
  8. W

    Question Help with Free Form Query. My query is based on a temp table, but I can't seem how to set some of the columns to where I can change the value.

    So the query works fine in pulling the data, all 32 columns. (And 13K+ rows.) But I need to be able to edit several of the columns and can't find out an easy way to do this. The query was built using the AppBuilder, and there is no real reference on just how to make the change. Ideally these...
  9. W

    Question Crystal Report Export and Db connexion

    As a matter of fact, you can. CR will allow you to re-map from one DB to another. If the fields are the same it is very easy to. You would need connections to both db's, and connect to them. I just this past summer did that very same thing for a company that two completely different DB, If I...
  10. W

    Question Outlook and signatures. Can they be added

    I am using the com-handles to open an instance of OutLook and set the variables there. I pulled the code straight from the ProgressKB. olMail = olApp:CreateItem( 0 ). olMail:TO = cEmailTo. olMail:Subject = " Starting The June; Statements Emailed.". olMail:HTMLBody = cHtmlBody...
  11. W

    Question Outlook and signatures. Can they be added

    Hi all. I was wondering if anyone has had any luck using the Outlook Signature option when creating an outlook email from 4gl? The base code is straight from Progress KB, but I just now wondered if I need to 'sign in' like I normally do? Not required in the sample code, but I'll give that a try...
  12. W

    Run program as a service

    Well, here is what we have found out. Between our windows system and UNIX system a security problem shows up. We don't want to map the UNIX drive so we created a work around. Assuming you already have access to the unix box you can set up a batch file to make the connection, run the program, and...
  13. W

    Run program as a service

    Thanks for the information. I will have to look at that later. We are running SX enterprise and it has a report manager that runs in the backgound on the UNIX side. We are also running the GUI version with terminal services running. I need to have a progress program run in windows every 15...
  14. W

    Run program as a service

    Has any one had experience with createing a progress program to be run as a service on a windows server box? We have need to have a program run in the background that can only run in a windows setting, and needs to run 24-7. Dennis
Back
Top