the document wizard creates the .act file so you can easily see start and end of if endif, etc. Report writer won't do it - not a matter of putting in the lines, just of printing what the wizard created
I have tried SET PRINTER FONT "Foxfont", 9 STYLE "B" to print action diagrams - but with no success - get ascii characters instead of lines. Is there easy solution?
I am using VFP9 and have set reportbehavior 90. I then scan a file and want to cancel the report (option) I put following code in:
LOCAL llDone
ON KEY LABEL del llDone = .T.
SCAN
IF llDone
ON KEY LABEL del
EXIT
ENDIF
** then code to print report
This doesn't work in with 90 but if set...
I seem to remember a posting re modifying the report toolbar but cannot locate it. Was there or was I dreaming? If not, is it possible to modify the report toolbar - I want to add another exit option - we run a series of reports based on different frxs for different customers and want option...
I have a program where I create a cursor readwrite then put into a combo as follows:
WITH THISFORM.esipageframe1.draft
.combomajorclfilter.STYLE=2
.combolawyerfilter.ROWSOURCETYPE=6
.combolawyerfilter.ROWSOURCE="sellawf.id,initials"
.combolawyerfilter.LISTINDEX=.combolawyerfilter.LISTCOUNT...
I want to compare properties on a few forms so I can add methods from one form to another without having to worry about missing properties on the second form
I just got it working by doing this in the dropdown
SET FILTER TO TYPE = 'X' AND ALLTRIM(tasklaw)=ALLTRIM(client.tasklaw)
SET ORDER TO TAG taskcode IN DESCR
*this.Requery
WITH THIS
.COLUMNCOUNT = 2
.COLUMNWIDTHS = "30, 180" .ROWSOURCE = "Descr.TASKCODE, Descr"
.REQUERY()
.DISPLAYVALUE...
I have two combo boxes side by side (boxa and boxb)-
both select data from same table but with different filters
rowsource is 6,fields xx.id,xx.descr
If I select data from boxa then from boxb using the keypress (where I have written code to set filters, requery etc.) - works ok
If I do above...
i modified the code so that after the first text endtext
text
<<lctext>>
endtext
* bunch of calculations
SET CONSOLE off
SET TEXTMERGE on TO (lcfilename) additive
text
<<newdata>>
endtext
Now works - but without the second set console off and set textmerge on, didn't work.
I have program in vfp8 where I create a text file using fcreate then have multiple text endtext routines putting data into that file then fclose the file - this works fine.
In vfp9 I only get data from the first text endtext routine. I see other data going to console (even tho set console to...
Is there a windows api that will let me activate a program that is already loaded if the operator tries to load second copy. We have code in our application that chks to see if form is already loaded (uses findwindow getwindow getwindowtext win 32 apis to chk) and if already loaded we display...
Hi Guys - I find autocomplete is not really complete (no pun intended). In word, if you have an autotext entry (i.e. "This is a test") and type "this" - the text appears and pressing enter or tab accepts it. In VFP9 autocomplete, you have to click on the entry then press enter (or double...
That is what is so great about Tek-tips - your questions are available for others. We just started working with adding stuff to Outlook and while searching for ideas I came across your post. Hope it helps.
below works - just set up a button on toolbar and create macro:
Sub TimeEntry()
Dim retval
retval = Shell("c:\yourpath\yourexe.EXE", 1)
'MyAppID = Shell("c:\yourpath\yourexe.EXE", 1) ' Run
'AppActivate MyAppID '
End Sub
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.