I played with FoxWord when the links were still warm (*s*) a couple years back - looked OK but not as good as I wanted at the time... it was quite a while ago. That's probably why the idea kind of died though - reports didn't translate cleanly between output and .RTF formats.<br><br>Crystal...
This is just a shot in the dark, but I believe when you do a REPORT ... TO FILE it saves it in whatever format the default FoxPro printer is set to - David's is set to a PostScript printer, so it saves as PostScript and is therefore readable by Word - yours saves as PCL (Laserjet default?) so it...
There is a windows emulator for Linux, called WINE. You can read about it in, among other places, <A HREF="http://www.winehq.com" TARGET="_new">www.winehq.com</A>, but note that work on it is ongoing. From what I understand, people have had varying degrees of success with it... I've never tried...
Well, there are a couple of ways. One way is you could create a global variable - this is the easiest way, but it's an Object-Oriented no-no. A better way is to store custom properties on the form(s). The only thing there is that you have to know - or find out - that the other form is really...
No, actually it is "FoxPro Window Font", if chr(179) is supposed to be a pipe character - "FoxFont" is the old DOS FoxPro font that was meant to mimic DOS for Windows, but using this shows a different character than a pipe for chr(179). Take a look at both and use whichever...
Following the same thought as above, you could also do:<br><br>select field1, left(field2, len(field2)), field3 from table1<br>copy to mytextfile <br><br>or<br><br>select field1, left(field2, len(alltrim(field2))), field3 from table1<br>copy to mytextfile<br><br>-SK
I'm sure I've done this before, but I'll be damned if I can remember how... I need to have a scrollable but read-only text field. If I use an edit box and disable it you can't scroll - but otherwise, how do I prevent editing? I've tried putting a RETURN .F. and RETURN 0 in the keypress and...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.