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 SkipVought 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: *

  • Users: baseballgem
  • Order by date
  1. baseballgem

    Error when installing a DLL using Install SHield.

    There is resident anti-virus software installed on all the office computers equally. Could the existence of some anti-virus software trigger this error?
  2. baseballgem

    Error when installing a DLL using Install SHield.

    I created an install program for a VFP8.0 single threaded DLL using install shield. Now the Install tests fine. It even installs fine on my computer and 2 others we have in house. But on this one particular computer it begins the install and the progress bar gets about 80% thru when a window...
  3. baseballgem

    Can one design easily an interface that has panes?

    I would like to know if VFP is capable of creating a form or forms that visually look like one screen but in fact contains has 3 (or 4) each would be a pane. (Borrowing the term from Web Design.) I created a simple one using 2 forms with no borders, but it seems tricky. I would think VFP would...
  4. baseballgem

    A list box with check boxes in it. Anyone?

    I need a list box with check boxes in it. Does anyone know how to do this. A grid won't help really. I'm not scrolling a table I'm displaying logical status'. I already have the 2 column list The left side currently is description, the right side is Y or N. It would be much nicer if the right...
  5. baseballgem

    Question about Not enough memory for file map

    When running a VFP8.0 (visual) executable I often get this message. In the old days I used to get "Not Enough Memory" when executing some SQL commands. But, this is a powerful Dell computer which has 2.0 Gig of Ram , 80 Gig hard drive space, 3.06 GHz Processor. So I'm at a loss to understand...
  6. baseballgem

    What is oField.Type for Date Type?

    What is oField.Type for Date Type when creating a table programatically from outside Access? Externally I've done a createobject("Access.Application") and I've made a table in a database. Evidently my date column is of type character - I have to make it a date. It was created as Character...
  7. baseballgem

    What is oField.Type for Date Type when converting VFP to Access?

    After successful createobject("Access.Application") ...plus a few more object initializations. I have statements like oField = oTable.CreateField("LNAME") oField.TYPE = 10 && Character Field oField = oTable.CreateField("DATE") oField.TYPE = ?? && Date Field I Don't know what that...
  8. baseballgem

    How do you set screen attributes in a config file?

    Craigsboyd asked "Is there use for this or are you just curious why it won't allow multiple commands? " The answer: I was just given an assignment that would employ the old fashion quik and dirty solution. Just allow someone to click an Icon; the program would upload data to an SQL database and...
  9. baseballgem

    How do you set screen attributes in a config file?

    I Just discovered something folks. Apparently you can't enter a set of commands. COMMAND=_SCREEN.fontsize=12 COMMAND=_SCREEN.fontbold=.t. COMMAND=_SCREEN.backcolor = 16773849 If you do this, the only one that will take effect is the last one. I was hoping one could set a group of screen...
  10. baseballgem

    How do you set screen attributes in a config file?

    I am using VFP8. also..Is it madatory that you put quotes in certain places or leave no spaces after or before equal signs? I have a lot of lines in my config.fpw file. Is there a special place this should be placed, like always before or after the SET sets? I'll have to try again at work. For...
  11. baseballgem

    How do you set screen attributes in a config file?

    The help says you can say this: COMMAND =_SCREEN.Caption="Visual FoxPro " + VERS(4) in the config file as an example of how to employ the COMMAND= statement. But, IT DONT WORK ! The TITLE = <expression> (without quotes around the expression)... Now that works. Are their other ways to set...
  12. baseballgem

    Can you programatically open a dbf in a passwrd protected netwk drive?

    My assignment is to cerate a VFP8 executable that will "use" a file (which will get queried and reported on) that resides on the network drive \\indium\private\ etc. The normal procedure is to map a drive letter to it or simply issue a use \\indium\private\history.dbf. But, this always prompts...
  13. baseballgem

    Createobject does not work

    My response to .. "are the VFP runtime libraries installed properly on the machines in question?" To that I would say I am using the Install Shield that came with VFP8. It tells you to include the C++ runtimes, VB libraries and the VFP8 runtimes and a couple of other things. I have built other...
  14. baseballgem

    Createobject does not work

    Yes I can instantiate it in VFP. There is 1 machine where it works but that computer had 3 VFP (vers8) exe's installed on it. Perhaps other compontents got registered behind the scenes; thereby it succeeds there. I wanted to try it out on a computer that had Access but no VFP whatsoever. On...
  15. baseballgem

    Createobject does not work

    I wrote DLL (Single Thread COM server) in VFP Ver 8. I used install shield to cut the CD. I brought in all the necessary compnents - I assume. In the past I have done this to quit considerable success in other areas, VB ASP Excel, Stand Alone VFP. The objective in this case is different. I have...
  16. baseballgem

    Not Enough Memory For File Map

    Occasionally I get the message &quot;Not Enough Memory For File Map&quot;. It happens only when I do a lot of processing involving backend SQL. Massive data (but under 1 gig) gets imported, then I alter table... then there is a delete where, then a &quot;pack&quot; is issued. Today when the...
  17. baseballgem

    Question about an Active X Control

    Even if I have success giving Windows 98 users MSCOMCTL.OCX, and use REGSVR32 to install - I was wondering if there was a way to include that OCX when I build my Install Shield Setup. And make it somehow self-registering - Do you think that will work? Remembering that I don't have the full...
  18. baseballgem

    Question about an Active X Control

    I am using VFP8 I build a distributable app on a CD Rom using Install Shield. The application installs fine on a Windows NT or 2000 OS. But, when installed on the few Windows 98 machines in the office it runs into trouble. I traced it back to an active X &quot;Slider&quot; control. If one hits...
  19. baseballgem

    Problem with XMLtoCursor

    Does that mean that even though the 2 files msxml4.dll and msxml3.dll are certainly there in C:\WINNT\SYSTEM32 ...that, in addition, one must &quot;register&quot; each of them in the registry: Even though I have a full professional version of VFP 8 installed. I know how to do that; just seems odd.
  20. baseballgem

    Problem with XMLtoCursor

    I'm still having a problem converting an XLM file to a cursor. I have VFP 8 which (I thought) was suppose to have the correct dlls. an msm*3 and msm4 - I loaded in all the SOAP stuff that was reccommended. But I still get this. System cannot locate the file msxml3.dll...

Part and Inventory Search

Back
Top