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!

Search results for query: *

  • Users: week
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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!
  4. 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.
  5. week

    Window.open

    When I do window.open(oXMLReply.xml), it opens windows explorer but it passes the output into the URL bar. How do I pass so it displays as xml within the browser? Thanks.
  6. week

    Window Open in XML format

    I have an ASP page that displays the XML string output that's generated by javascript call. The problem is that it is hard to read what's being displayed. We need it to be displayed as how it displays when one clicks on an .xml file with all same level tags lined up nicely...much easier to...
  7. week

    XPath - Syntax

    I have a stmt below in my code which works fine. Set sel = xmlDoc.selectNodes("//T3/Layer[@ID='AL']") The problem is that 'AL' needs to be some variable like Set sel = xmlDoc.selectNodes("//T3/Layer[@ID=lcState]") Obviously it doesn't like it when I do that. I searched...
  8. week

    Object Pooling

    I am trying to search on how we can use "Object Pooling" to improve performance. As I was reading various articles, I ran into one article says it can only be used in above VB 6.0 which would be like .NET. Is that right? Has anybody used it with VB 6.0? Also, who knows anything...
  9. week

    Reading XML Attribute values...

    How do I get the value for &quot;ID&quot; from this XML? <T3 Version=&quot;5&quot; DateCreated=&quot;2003/04/30&quot;> <Layer ID=&quot;AB&quot;> <LOB>xxxx</LOB> <PolicyIndicator ID=&quot;Standard&quot; Effective=&quot;2003/05/11&quot;> </PolicyIndicator>...
  10. week

    Running Applications as Services

    Hi, I have a Windows Service set up which executes an Exe file, A. This exe file is supposed to execute another exe file,B, at a certain time. The file A has a step where it checks for the current time and executes another executable file B if it is pass certain time. We wanted to move the...
  11. week

    Identity function

    I am not aware of anything like this but anyone knows any existing function that will create identity column with yyyymm at the end as part of the ID? Thanks.
  12. week

    RecordCount is -1...my question in ???? area.

    Private Sub DupIDCheck() On Error GoTo ErrorDupIDCheckGeneric Dim lcSQLString As String ' ADO variables Dim lcnnDupIDCheck As ADODB.Connection Dim lcmdDupIDCheck As ADODB.Command Dim lrsDupIDCheck As ADODB.Recordset ' Other variables Dim lcQueryText As String...
  13. week

    Can I do this with Crystal?

    I have a report that has old address and new address of clients that is generated when there is an address change. The current layout is like this: Report Header: Blank Page Header a: Client Name New Address Line1 Page Header b: New Address Line2 (suppressed if not...
  14. week

    ASPEmail

    I've been using ASPEmail to attach a report through email from VB. It's been working great but ever since the system password is changed, it's not working any more. I thought I changed all the password accordingly for various directories in Internet Service Manager and Component Services, but...
  15. week

    ASPEmail

    Has anybody tried to use ASPEmail product to send report through email and familiar with Logon process in MailSender module? Thanks.
  16. week

    Tool bar display on Crystal report viewer on the web application

    Hi, The crystal reports on our system is viewed through web application. The application simply exports the reports to certain directory, then the reports are grabbed from there and displayed on the web in different formats. If you view the report in PDF format, it has tool bars with Save...
  17. week

    Exporting a report in Text format

    All my reports export fine in Word, Excel, Text, and PDF format. I have one report that fails only in Text format. It still exports header though. What in the world is happening here? Thanks.
  18. week

    Exporting in Text format fails

    All my reports exports fine in Word, Excel, Text, and PDF format. I have one report that fails only in Text format. It still exports with header. What in the world is happening here? Thanks.
  19. week

    contents not displaying on pop up window.

    I have users who have problem seeing comments on pop up window that are previously entered. Comments window has two split section. One to enter new comments. Once new comments entered, the section above supposed to display the previously entered comments. It displays what you just entered...
  20. week

    Weird display problem in IE

    I have users who have problem seeing in a comment windows that are previously entered that should be displayed when they open the window. The comments only display when they save a new comment. Strange thing is that others don't have the same problem. We all use IE. First thought it was...

Part and Inventory Search

Back
Top