This is really kind of two questions.
I've been programming VB6 to access our LAN version of FoxPro 2.0 and even
gotten help already from this newsgroup.
I've gotten the code to work well but the view is in a minimized dos style
box. I'd like to be in a maximized state. Part of my code uses the
following VB6/FoxPro commands:
Open CustDirPath & "do_me.prg" For Output As #newfile
Print #newfile, "FILENAME = '" & Path_to_File & "'"
Print #newfile, "RESTORE MACRO FROM P:\SOFT\ABSSHELL\FOXMACR.FKY"
Print #newfile, "USE &FILENAME"
Print #newfile, "COUNT"
Print #newfile, "BROW NOWAIT"
Close newfile
RunShell "foxprol -T " & CustDirPath & "do_me.prg"
I've been researching in what documentation for FoxPro 2.0 just what the
"-T" indicates in the last line. I assume it is a switch of some sort but
can't find out what it means/accomplishes.
I'm hoping that finding the right switch may help me cure the screen size
issue.
So, to ask a specific question(s)
1. What does the -T indicate?
2. Is there place I can find out all switches besides the @#$$%^&*(
documentation?
3. Given the code I've got so far, can someone recommend a way to influence
the screen/display size of the view area.