Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by week

  1. week

    Save string in a file then display to a pop up window

    If there is something that confuses you, it would've been nice to just simply state your question...omitting some of scarcastic remarks...at least, that's the way it sounded to me. I am wondering if you are there to help or to pick on how I phrase my questions. I am pretty sure you know...
  2. week

    Save string in a file then display to a pop up window

    Well, the ASP already has a form and that's where I get the xml string value I need to display. So, how can I put another form inside of the existing form and pass the value? Also, another problem I see is that it specifies the javascript name it uses for the page at the top of the page. Will...
  3. week

    Save string in a file then display to a pop up window

    But how do I display the xml in a pop up window, if ASP is doing the display? I would think that will have to be done through javascript, wouldn't it?
  4. week

    Save string in a file then display to a pop up window

    I have an asp page that calls and passes efOutput.value to this javascript. I might be able approach that POST option. Can you give me some examples?
  5. week

    Save string in a file then display to a pop up window

    I wasn't sure what you were asking. Instead of going over your question (specially when you said you couldn't make it happen) I thought it would be easier and clearer if I re-instate my question. Sorry, if it seemed to be rude....
  6. week

    Save string in a file then display to a pop up window

    I didn't think I made my question clear at the first time. Do you have the answer?
  7. week

    Save string in a file then display to a pop up window

    I have a string (efOutput.value which is XML data in string format) that I need to save then display the string value to a pop up window in usual XML display format. The following code will pop up a new window and display the tag values all in a row. I need the complete XML displayed in a...
  8. week

    Displaying XML in a pop up window

    I have a script like this: function clickWindowOpen(){ with (frmCallXX){ var res = efOutput.value; var newWindow = window.open("","new"); newWindow.document.open("text/xml"); newWindow.document.write(res); } } efOutput.value is XML data in string. I need to...
  9. week

    Another String Manipulation

    Thanks so much for your inputs.
  10. week

    Another String Manipulation

    My String looks like this: "Pepsi ILMutual 2003/07/01249" I will need to extract Pepsi, IL, Mutual, 2003/07/01249 separately. There are more than one blank spaces where it's blank. I know you guys will come up with something in no time...thanks for the help!
  11. week

    String manipulation

    Suppose terr is integer. Will this work? Unfortunately, I can't test this and hope this is correct before I put it out there. Dim lcTerr As String lcTerr = Format(terr, "0000") Thanks again.
  12. week

    String manipulation

    Well, I need to give you guys few more info. 1. 7 is defined as Integer. c8amsm, would this be problem using your method? 2. 7 could be 17 or 117..meaning it could be one, two, or three digit. But my final output need to be in four digit. It doesn't have to be Integer... Sorry for not...
  13. week

    String manipulation

    I have a variable that is something like "7". If I need it to be "007", how do I do that? I think there is some function to do this, isn't there? I am just not that familiar with the string manipulation in VB....thanks.
  14. week

    Window.open

    Or can this be done in ASP Page? Actually, the current code which is not right looks like this in ASP: <TD COLSPAN=&quot;5&quot; ALIGN=&quot;right&quot; ><INPUT TYPE=&quot;button&quot; CLASS=&quot;clsButton&quot; NAME=&quot;Call&quot; VALUE=&quot;Open With Internet Explorer&quot...
  15. week

    Window.open

    Yes...

Part and Inventory Search

Back
Top