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 bkrike 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 jefftoaster

  1. jefftoaster

    XML doc getting blank (empty) xmlns on every element

    tsuji - your solution was what worked for me. ALL - Thanks for your time and help!! -jeff
  2. jefftoaster

    XML doc getting blank (empty) xmlns on every element

    I do need the namespace of the <requestMessage> element, just not the xmlns="" of the <merchantID xmlns=""> element (and every element after that when I include additional elements). I need: <?xml version="1.0" encoding="us-ascii"?> <requestMessage xmlns="urn:test:test2">...
  3. jefftoaster

    XML doc getting blank (empty) xmlns on every element

    This simple chunk of code: XmlDocument doc = new XmlDocument(); XmlNode node; node = doc.CreateElement("requestMessage","urn:test:test2"); doc.AppendChild(node); node = doc.CreateElement("merchantID"); node.InnerText = "midgoeshere"; doc.DocumentElement.AppendChild(node); XmlTextWriter tw = new...
  4. jefftoaster

    How to invoke the dial up

    If you're willing to spend a couple hundred bucks, you should try Socket Tools Visual Edition from Catalyst. I don't work for them, or even know them, but when we had to do a bunch of RAS stuff, I found their software and tried it and have been extremely happy with it. Anything to do with...
  5. jefftoaster

    Do ActiveX controls receive &quot;KEYBOARD&quot; command keys?

    I'm trying to programatically dropdown (open the calendar window) the DTPICKER activex control with either: keyboard "{ALT+DNARROW}" or keyboard "{F4}" but it seems to be ignoring it. Of course, if I tab to the control and actually press the keys on the keyboard it works fine. Do activex...
  6. jefftoaster

    pdf into browser via servlet

    For anyone interested in (somewhat of) a workaround... I'm currently using a POSTed form, and a submit button, which calls the servlet that returns the pdf. IE doesn't like this - it gives the doofus &quot;secure and nonsecure items&quot; message. What works is changing the html to use a link...
  7. jefftoaster

    pdf into browser via servlet

    Excellent thought! Thanks! So after I read your reply, I went and ran Ethereal and grabbed the packets coming across the wire during the pdf transfer. Odd - but relieving - they were all coming over as SSL3. Looking at the packet data revealed nothing but garbledeegook. Odd (in a good way)...
  8. jefftoaster

    pdf into browser via servlet

    I'm trying to send adobe pdf files to my client's browsers by transferring the pdf file using a servlet. In the servlet, I basically set the content-type to &quot;application/pdf&quot;, and the content-disposition to &quot;inline; filename=test.pdf&quot;, then I set the content-length to the...
  9. jefftoaster

    sys(1037) or other function/procedure

    Thanks Guys! I really do appreciate your efforts and time. Well, here's the basic idea of what I ended up with: sys(1037) if messagebox(Ok? ...) create report tmpxxx from yyy then store the objtype=1 and objcode=53 line out of the tmpxxx.frx table to a separate table later on copy the...
  10. jefftoaster

    sys(1037) or other function/procedure

    Well, GETPRINTER() would work if I didn't need any custom settings, such as Orientation, Paper Size, and Source. This app has about a dozen different reports in VFP Report format. Then I have a table with hundreds of different queries, filters, comments, and report printer settings - which...
  11. jefftoaster

    sys(1037) or other function/procedure

    VFP 6.0 running on Win98. I have setup a custom printer selection using sys(1037). After it returns, I use set(&quot;PRINTER&quot;,3) to get the printer name and PRTINFO to pick out the 2 or 3 printer settings I want. I store all this in a memo field for use later to plug into the expr field...
  12. jefftoaster

    Report - too much blank space at bottom of page

    Crud. I suspected as much. Drat. Ok, thanks! I'm gonna try the memo idea, thats a very good idea! -jeff
  13. jefftoaster

    Report - too much blank space at bottom of page

    Oops - forgot to mention - I also tried setting _PLENGTH. An old throwback from DOS Foxpro days.
  14. jefftoaster

    Report - too much blank space at bottom of page

    Sorry, I should have mentioned that I already tried changing printer drivers, and switching between different printers in the &quot;Page Setup...&quot; for the report, including a dot matrix printer, ink jet printer, and laser printer I have. No difference. I've also tried changing between...
  15. jefftoaster

    Report - too much blank space at bottom of page

    Hello, I'm running VFP 6.0 I've got a report that has 21 lines of detail in it. Each line has a &quot;Print When&quot; expression, and &quot;Remove Line if Blank&quot; is checked. I've double and triple checked these to make sure they're all correct. They are fine - and NOT the problem. I...

Part and Inventory Search

Back
Top