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 TouchToneTommy 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: *

  1. 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...
  2. jefftoaster

    Do ActiveX controls receive "KEYBOARD" 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...
  3. 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 "application/pdf", and the content-disposition to "inline; filename=test.pdf", then I set the content-length to the...
  4. 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("PRINTER",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...
  5. 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 "Print When" expression, and "Remove Line if Blank" is checked. I've double and triple checked these to make sure they're all correct. They are fine - and NOT the problem. I...
  6. jefftoaster

    Report Group Header "Continued..." field

    I have searched the FAQ and messages on this forum because I assumed this was an easy thing to accomplish, but maybe not? I have a simple report with 1 group. The data for this group can span multiple pages, so I checked "Reprint group header on each page". I want the words...
  7. jefftoaster

    Screen font for native printer font

    I'm using VFP 6 to create reports. I've used the standard Windows TrueType fonts many times - HOWEVER - in this application I'm using a native printer font (in the font list, I'm choosing a font with a little printer next to it). For this application, I'm printing on an Okidata ML 321, and...

Part and Inventory Search

Back
Top