What registry entry should be pointing to vfp8renu.dll ?
Both files have the same version and creation date. These files are located in
C:\program files\common files\microsoft shared\vfp
There is also a file vfp8enu.dll in
c:\program files\microsoft visual foxpro 8
What is the difference...
Thank you so much for your answers. I checked in the registry and VisualFoxpro.Runtime.8 (Shell,Open,Command) is set to VFP8r.dll. I changed it to VFP8renu.dll but this did not work. - then my application did nothing at all but beep and not even give the message that the resource file is...
I am using vfp 8.0. I have created an application that I use installsheild express to install. It works fine on all of my users machines except my own. When I install the app on my machine I get the following error Resource file version mismatch and then the error VFP can not start could not...
am trying to use the gridview with objectdatasource with subobjects
My class is defined as follows
Public Class AbbrPlant
Private _ID As Integer
Private _PlantName As String
Private _site As Site
'Private _City As String
'Private _State As String
'Private _Country As String
Public Property...
If you are using formview or detailsview for inserting records, and you are using business objects, if you have default values for the business object, how would you populate the business object with the default values on a new object? It does seems like on a detailsview or formview new , that...
It could be set up that way.
class agency
{
int id {get;set;}
IList<customer> customers {get;set;}
}
The agency also has many other properties such as name,address, contacts. It also could would have other collections under it.
>> Note that the customer has not knowledge of the...
>>for example the database may have a table named order which has a FK to customer on customer id. the domain model would contain 2 classes. Customer and Order. Order would have a field named Id and Customer would have a field named Id. Customer would have a collection of Orders and Order...
I have a class that has a foreign key as one of the properties of the class. When I create a new object of the class I want to initialize the key to a particular value. Obviously I do not want to hard code the value based on a particular record in the database. Should I create a table in the...
I tried the following code and got the error "file name is too long"
XMLTOCURSOR(test,"testcur")
XMLTOCURSOR(test,"testcur",8912)
test is a fairly simple xml string. The first xmltocursor works fine and the second xmlcursor generates the error. Does anybody have any idea what would cause this...
I guess there is some issue with translating certain characters to unicode because even though the code
below does not generate the error of function argument invalid , when I try to read the xml generated in ie it does not work. However when I replace "FullAddAgency=Star-K"
with...
I also tried using the xmladaptor and here is the code I used
lcDataSetTag = "FullAdd Agency=Star-K"
lcRecordTag = "Products"
loXad = CreateObject("XMLAdapter")
loXad.AddTableSchema('Products', .T., STRCONV(lcRecordTag,12))
lconvtag = STRCONV(lcDataSetTag,12)
loXad.XMLName = lconvtag...
I tried the simple case above of creating the cursor and then doing the strtran and that worked. So I tried a simple case myself with my own data.
The following code worked fine
SELECT mfg.company_name FROM vaad!mfg;
into CURSOR txml
CURSORTOXML("txml", "cXML")
cXML = STRTRAN(cXML...
I am using VFP 8.0 I need to create an xml document. I used cursortoxml which works ok. The only thing I need to do is to change the root node from <VFPData> to
<FullAdd Agency=Star-K>. I tried to write the xml to a memvar and then use strtran to make the character changes but it does not...
I am using the RTF activex control in my vfp 8.0 app. I would like to display in the control text that is formatted based on user input. I have the RFT text strings saved in memo fields of tables and depending on what the user has selected I would like to construct RTF text. just concatenating...
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.