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 strongm 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. Gweniviere

    Not all records are displaying

    Thanks to both of you! I started to do what Laurie recommended, but Charliy's solution was easier and faster! Gwen
  2. Gweniviere

    Not all records are displaying

    Hi experts, I'm using Crystal Reports 2013. I have two tables in a one to many relationship. Table one contains all types of errors that can be reported. Table two contains all errors reported. Grouping by table one displays all possible errors as expected. Inner group with summary of...
  3. Gweniviere

    Calling a 32bit DLL from FPW

    Thanks Dave! It's good of you to preserve these types of things. :) -Gwen
  4. Gweniviere

    Calling a 32bit DLL from FPW

    Is it possible to call a 3rd party 32 bit dll from Foxpro for Windows 2.6? I searched the forums and was led to the WestWind site, but alas, the file (Call32.zip) is not available for download anymore. -Gwen
  5. Gweniviere

    Need help with XMLToCursor()

    Thank you Olaf. Not the answer I was hoping for, but your response was helpful. Enjoy the weekend. :)
  6. Gweniviere

    Need help with XMLToCursor()

    Hello everyone, I am consuming an XML response from a web service. Everything is working great with the exception that when I convert the XML to a cursor fields that contain _numbers_ starting with 0 the field that XMLToCursor() creates is numeric and the the leading '0' is dropped. (think of a...
  7. Gweniviere

    Help with Mismatched CLSIDs

    Never mind. I created a Setup Project and installed the site on the host and that resolved the issue. Thanks Gwen
  8. Gweniviere

    Help with Mismatched CLSIDs

    Hello all, I have an old COM DLL (written in VFP 9.0) that I would like to use in a new ASP.NET application. On both my development machine and the host machine I have the DLL as well as the VFP runtime libraries installed. The app works fine on the development machine. However, when I...
  9. Gweniviere

    Help with DLL Instancing

    Thanks Olaf. I figured out what I needed was an EXE server. Compiling that way and using CREATEOBJECT() and GETOBJECT() allowed me to get done what I needed. Gwen
  10. Gweniviere

    Help with DLL Instancing

    Hi peeps, I have a DLL I created in VFP 9.0 SP2. I added some public properties that I would like to be able to monitor/adjust from a VFP form that resides in the Systray. My question is how do I insure that they app in the systray is accessing the same instance of the DLL that may be called by...
  11. Gweniviere

    Issuing a CLEAR EVENTS from an error routine?

    Tamar and Mike, Thank you both the help. I think I have a better understanding of what is going on now. I still have not figured out a way to do what I want to do, but at least now I know I was headed down the wrong path. :) Thanks again.
  12. Gweniviere

    Issuing a CLEAR EVENTS from an error routine?

    Thank you for replying Mike. :) I have three forms...Splash, Main and ErrorScreen. All are modal and Show as Top-Level forms. On the Unload methods I have CLEAR EVENTS. If I do not issue a READ EVENTS after calling my splash form the main form will try to load before I have completed the work...
  13. Gweniviere

    Issuing a CLEAR EVENTS from an error routine?

    Hello peeps... I am trying to issue a CLEAR EVENTS from an error routine called from ON ERROR. The error routine is contained in my main.prg which called the original form that has thrown the error. In the error routine I issue a CLEAR EVENTS (for the original form) then call my error form and...
  14. Gweniviere

    Mounting a specified USB drive to a specific folder

    I don't know about CentOS but on my Ubuntu and Gentoo machines I simply used fdisk to label my USB drives and then reference them in the /etc/fstab like this.... LABEL=/Data /local/Data ext2 defaults 0 0 LABEL=/Data-2 /local/Data-2 ext2 defaults...
  15. Gweniviere

    SQL - INSERT INTO question.

    Rick, thanks for the quick reply. I guess I will have to get the company to spring for VFP 8.0. :-) Gwen
  16. Gweniviere

    SQL - INSERT INTO question.

    Does VFP support this syntax of INSERT INTO? INSERT INTO MyTable (field_1,field_2,...) SELECT field_1,field_2,... FROM MyOtherTable I get a syntax error every time I try this command, whether it is performed on local VFP tables or on SQL/MySQL server tables (via SQLEXEC()) After doing a...
  17. Gweniviere

    Passing Arrays from VB to VFP

    Rick, that is what I thought as well. That is until I did this in my DLL... FUNCTION Geo(caddr as string, cSity as string, cState as string, cZip as string, nRC as Long, nMC as Long, aFlds as Array, aBestMatches as Array) as Array some code here some more code here even yet some more code...
  18. Gweniviere

    Passing Arrays from VB to VFP

    Thanks for responding. I don't think that I am being too clear here though. This DLL has 5 methods in it that the calling program can access. Some methods have no parameter. They simply return some value. For instance, to return the version number of the dll to the VB front end you do this...
  19. Gweniviere

    Replace command

    Mike You're right. There is a closing paren missing and the FOR ALL is incorrect as well. Thank you for pointing that out. Gwen
  20. Gweniviere

    Passing an array from VB to VFP DLL

    Hi. I have written a small program in VFP 7.0 and compiled it into a DLL. The main method in this DLL requires several parameters... Some as type string (search criteria) Some as long (number of records to return) and Some as array (results from table searches) This DLL works wonderfully from...

Part and Inventory Search

Back
Top