Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JudyBarer

    resource files

    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...
  2. JudyBarer

    resource files

    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...
  3. JudyBarer

    resource files

    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...
  4. JudyBarer

    gridview and subobjects

    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...
  5. JudyBarer

    initialize business object

    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...
  6. JudyBarer

    Initializing object properties based on a foreign key

    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...
  7. JudyBarer

    Initializing object properties based on a foreign key

    >>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...
  8. JudyBarer

    Initializing object properties based on a foreign key

    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...
  9. JudyBarer

    xmltocursor with flags 8912

    Thanks so much. I kept looking at it over and over and reading the help file over and over and I did not notice!!
  10. JudyBarer

    xmltocursor with flags 8912

    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...
  11. JudyBarer

    help with cursortoxml

    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...
  12. JudyBarer

    help with cursortoxml

    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...
  13. JudyBarer

    help with cursortoxml

    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...
  14. JudyBarer

    help with cursortoxml

    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...
  15. JudyBarer

    RTF control

    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...
  16. JudyBarer

    test application

    I have a VFP 8.0 app which generates PDF files. I would like to keep all of these files in a certain directory on our server. When I am running my test app I would like to save the files in a different directory. What would be the best way to tell if I am running the test app or not. Is...
  17. JudyBarer

    outlook object

    Thanks for responding. Where can I find documentation listing all the exposed properties in the outlook object? Thanks Judy
  18. JudyBarer

    outlook object

    When the user sends a message in Outlook 2003 there is an option not to send the message before a certain time. Can this time be set programatically from within VFP? Thanks Judith
  19. JudyBarer

    printWindow API Call

    Thank You for responding. I tried the code in FAQ184-4912 and it seems to work really well. Is anyone else using that code and have you seen any problems? Thanks Judy
  20. JudyBarer

    printWindow API Call

    I saw in advisor magazine a suggestion to use printwindow() from the windows api to print the current screen. It also says that you have to download Palfade.exe which contains the DIBAPI32.DLL . If I wanted to use this in my apps how would I install the Dll on my user's machines? Can it be...

Part and Inventory Search

Back
Top