On a citrix server sometimes this message appears on startup:
"The resource file is not valid. Overwrite it with an empty one?"
The prolem is still there after removing all occurences of foxuser.dbf and as far as I can tell every client uses the same runtimes. Any ideas?
With VFP7 I'm trying to create a new .rtf document that inserts data from a foxpro database into an existing rtf document. That works fine but the font changes in one part of the document from Verdana to Times New Roman. I've looked in the .rtf document with notepad but can't explain why this...
I have a piece of Javascript in my asp page that checks a checkbox on my screen. The problem is the checkedChanged method of that checkbox doesn't fire. So I wondered if I could call the checkedChanged method of that checkbox (C# function) from within my piece of Javascript code?
This code works fine in Excel when I put it in a macro. When I put the same code in a Word macro I get an error while executing.
Excel:
Sub testnummer()
Range("A2").Select
Selection.End(xlDown).Select
End Sub
Word (the code crashes at the last line):
Private Sub cmdOpslaan_Click()
Dim...
I've build a com server (VFP7 SP1) and want the server to registrer automatically when the user starts up another foxpro .exe that uses that com server.
I've included the following lines:
lcpad = CURDIR()
lcCommand = "run /N2 "+lcpad+"controle.exe" " /regserver"
&lcCommand
That works fine as...
I've re-checked the dbf() and it was the correct one...
The lenth of both lcclientnr and lcindicnr are correct
I've been reading on the internet about problems with windows 2003 and foxpro databases / .NET. Could this be related?
I'm sure I'm using the same indiavfu every time.
No buffering either of table indiavfu, nowhere in the application.
What's even stranger: I removed one of the records in indiavfu and use the same select statement and it gave back the row I had just deleted. (That happened just once, I can't...
Here's the code:
IF USED('indiavfu')
SELECT indiavfu
ELSE
USE indiavfu
ENDIF
Select *;
from indiavfu;
where Upper(indiavfu.Clientnr+indiavfu.Indicnr) == Upper(lcClientnr+lcIndicnr);
into Cursor aanvrfunc
I've checked the values of lcClientnr and lcIndicnr and they are correct.
I have a client that has the following configuration:
Citrix server
Windows 2003
VFP 7 SP1 application
When I issued a select statement the resultset is empty. That surprised me because I knew there had to be records that matched the select statement. When I issue the same select statement a...
I hava a report in VFP7 that contains a .bmp file that has the property 'scale picture, retain shape'.
With most users the picture displays as intended, but with one user the picture dispays too small.
Why the difference?
What I've done so far is:
I have created a form that has been saved as class and made OLE public. After that I placed the form in an empty project and build it as exe/comserver.
In the code of my other VFP exe:
PUBLIC lo as controle
lo = createobject('controle.controle')
lo.visible = .t.
In...
So far I've created an instance of a com server I've build in foxpro. This object is designed to show the results of several queries in a form within the com server.
When I issue a read events in the com server the exe that creates the com server object isn't available anymore. When I don't...
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.