Search results

  1. A

    Number Format Windows XP????

    I expect your using SESSION:NUMERIC-FORMAT = "AMERICAN" Hi, I expect your using SESSION:NUMERIC-FORMAT = "AMERICAN" or SESSION:NUMERIC-FORMAT = "EUROPEAN" remove this line or make sure you reset the NUMERIC-FORMAT after running the required procedure
  2. A

    browser

    I am using a browse to display rows of products which need to be printed. When I click a row twice I open a window which lets me change the amount of print copies for each individual product. After closing the input window I update the browse and the new quantity is displayed. My problem is...
  3. A

    ODBC needed for Progress 8.3

    http://www.openlink.co.uk/ Try this website - http://www.openlink.co.uk/
  4. A

    Use input/output parameter with a browser !

    The theroy The theory looks something like this. Define a variable as an integer then you can trigger opening your browse by putting this in your button: {&OPEN-QUERY-yourbrowse} Take a look at the browse triggers: Browse trigger - open Query OPEN QUERY {&SELF-NAME} FOR EACH...
  5. A

    Control characters appearing in report

    Special Characters. Do these "special characters" exist on the other screen? May be you could be a bit more specific. If you are running progress in different languages or perhaps using different character sets then this may cause characters to be displayed differently between versions.
  6. A

    OLE under XP

    Has anyone had any success using OLE under windows XP. I am trying to open and insert data into microsoft word but get a component handle error. My program runs fine under other windows systems though. Are there new OLE commands? are they documented anywhere? Thanks
  7. A

    PCase

    Comment I looked into Pcase once. It seems to work well as long as the progress database is well defined. I decided not to use it though as it did not produce any useful results from one specific ERP (which I won't name) with two databases called PAVAR and PAFIX. If you are thinking...
  8. A

    sending mail via outlook ole - re-post

    Hi Emma, I don't have time to debug your code at the minute so here is a sample code block which works with outlook. Perhaps you can modify it to fit your code... make sure that outlook is the standard email client though! def var chSession as com-handle. def var chMessage as...
  9. A

    ms agent not working

    Save Time Don't worry about downloading the agents. Your bound to have an agent on your computer already. Search for files ending in .acs. Most computers will have Clippit.acs installed. Simpley replace the peedy.acs word with clippit.acs and make sure you change the line: DEF VAR v-loc AS...
  10. A

    Messages in foreign languages...

    Does progresstalk run a policy of kicking foreign language questions out of the forum. There is a message from a user called Morfin in spanish which I can't access. This is not the first message which I have not been able to get hold of which is why I am writing. I can understand that some...
  11. A

    new line in editor

    Thanks Nick Thanks Nick I used the following solution: ASSIGN cBeschreibung = REPLACE (cBeschreibung, "delimiter", "~n" ). This worked great. Andrew
  12. A

    new line in editor

    Thanks for the responses so far Thanks for the responses so far. I have tried these solutions but unfortunately no joy. I will try and explain what I am trying to do more clearly. I take a file called liste. and insert th contents of this file into a table called. P_Info with the fields...
  13. A

    new line in editor

    I am filling in an editor field from an external file and would like to know how to (if it is possible) tell the editor when to start a new line. eg: At the moment the editor field is filled out as one line like this: hello my name is Andrew I would like the following result...
  14. A

    Windows XP problem...

    I have a problem which I think is associated with windows XP. I have a program called Angebot.w with a trigger event that runs an external procedure as follows: c-win:sensitive = false. run Druck.w. c-win:senstive = true. On a windows 95/08 machine this works fine. The druck.w procedure...
  15. A

    Dialup Connection

    Yep Super! Great! Thanks, that was it... Andrew
  16. A

    web enabling progress program

    Web Check out www.dotr.com in the downloads section. There is an example of a web browser written in progress which acesses internet explorer components.
  17. A

    Dialup Connection

    I am searching for a program which I once had but can't remember where I downloaded it. The program was a .w file which allowed the user to select and dial up an internet connection over a graphical interface. Does anyone know where I can find it? Thanks Andrew Price
  18. A

    Sql Statements

    SQL an example of a simple sql statement is: select FIELD1 FIELD2 from TABLE1 WHERE FIELD1 = FIELD2 The above statement displays 2 fields in a table called FIELD1 and FIELD2 only if the information in FIELD1 is the same as in FIELD2. You always start your query with the word...
  19. A

    how to hide the url

    You could call the html page into a frame. Only the top frame is displayed. To see what I mean have a look at www.mcleodrussel.de. This site will not show the name of any page selected from the menu on the right hand side. The path line always remains something like...
  20. A

    HTML / Java Script

    I dont know webspeed but you can change a value to blank using a javascript on event such as onclick or onchange something like: <input type="checkbox" name="clear" OnClick="Field.value= ;"> )
Top