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

  1. dstema

    can a web service access a network drive?

    You confirmed my thoughts. The web service is runnning under IWAM_<comp.name>. Can I do anything about it? Where I can ask this?
  2. dstema

    can a web service access a network drive?

    Thanks for your reply. 1. I can access the g: drive from the computer (XP) I'm running the Web server (G: is mapped to a Novell Server ) 2.I can open the file using VFP Is there anything else I'm missing? This is my first attempt to use a fox web service.
  3. dstema

    can a web service access a network drive?

    Here is the the full error message I got: Error: 1429 - OLE IDispatch exception code 0 from mywserv1.SBTData mywserv1.SBTData: .getdatacard c:\work\foxwebservice\mywserv1.prg Error in line 37 File 'g:\sbtpro\ardata\arlcrd05.dbf' does not exist. 1.. <detail><mserror:errorInfo...
  4. dstema

    can a web service access a network drive?

    I created a very simple web service which gives me an error if the dbf I'm using is on a network drive (g: is a mapped drive). The web service is working fine if the dbf is on c: drive (local). Is there anything I can do to have it work with a mapped drive? Thanks, DS
  5. dstema

    Decrease in perfomance on Novell

    I remed the replace command and it went fast. I remed the rlock() and unlock comands and nothig happended (running on a copy where I was the only user of the file). Replace command is the one slowing me down. I made a copy of the file in any of the volumes of that server (Novell 5.1). It is...
  6. dstema

    Decrease in perfomance on Novell

    I took out that loop from the application and ran it on a sigle prg. The speed was normal. Can be anything in the application environment that slows me down? One more thing: If the files are copied local the speed is normal.
  7. dstema

    Decrease in perfomance on Novell

    Nothig that I can think of has been changed. Interesting enough, now it is working well (right speed) on 98SE but slow on some of the XPs. On one that worked slow yesterday is working fine today. I'm willing to try anything.
  8. dstema

    Decrease in perfomance on Novell

    I run this VFP6 app for couple of years w/o a real performance issue. Server Novell 5.1, workstation XP Pro, 98SE. Now I exeprience an on and off performance issue and I need to rule out any foxpro fault. The following code takes seconds to move to the next record. sele a_armord set orde to io...
  9. dstema

    need to convert foxpro reports into word documents

    I print out my reports from a foxpro for DOS application using PCL codes. This way the printed document looks better. Now I have a client who needs to have the document in MSWord format (doc). I have a dos based tool to convert that pcl file to pdf but I couldn't find one for Word. dstema
  10. dstema

    I need to select a group of files

    Hi everybody, I need a way (like getfile()) to select multiple files. The user is supposed to be able to easily pick up one or more files (txt in my case). Files are not necessary in the same director/drive. Any word is welcome. Thanks.
  11. dstema

    Can't remove variables from memory

    Pay attention to this: rele all like ar_* and rele like ar_* Be sure you're using the first one.
  12. dstema

    FoxPro 2.5 and Windows XP

    I'm using an old DOS based SBT application on fox 2.5 with Windows ME and I want to upgrade to Windows XP. Does anyone know if they are compatible. If they are, what do I have to set up on the new XP system in order to be able to run my DOS based fox application? Thanks
  13. dstema

    General Protection Fault

    I got it! If I'm running the program using FoxPro 2.5a EXE Support Library (X) there is no error: FOXR <myprog> On the other side if I'm trying to lunch it using the &quot;regular&quot; foxpro I get a big &quot;abnormal program termination&quot;: FOX <myprog> Thanks
  14. dstema

    General Protection Fault

    I deleted and recreated the idexes from scratch, but no luck. Finaly I was able to narrow the search for that piece of code and tables that couse the error. I was looking also for whatever &quot;wrong&quot; characters in the table fiels, but nothing yet. The same code with the same tables work...
  15. dstema

    General Protection Fault

    I'm using SBT system for DOS with FoxPro 2.5a. Operating system: Windows 98 SE. After making some changes in one of the SBT programs I was kicked out along with this message: Abnormal Program Termination:Memory Protection Fault CS:EIP = 000Fh:00153256h While executing a scan loop I'm kicked...
  16. dstema

    File() function returns different value on the Network

    I got it! I was using 3.1.0.0 novell client. I just updated my client software to the current 3.30 version and the foxpro FILE() and DELETE command work fine.
  17. dstema

    File() function returns different value on the Network

    Getting the same result using the above gotfile() function. In that specific environment every single call to OS interprets '.ext' as '*.ext'.
  18. dstema

    File() function returns different value on the Network

    Now it seems to me to be a Novell client problem. The abnormal behavior of file() and delete command disappears when using a combination of Fox 2.5+Novell 5+Win Me instead of Fox 2.5+Novell5+Win 98. Win Me has its own Novell client and maybe this is the reason not to get a wrong return value...
  19. dstema

    File() function returns different value on the Network

    Thanks Dave, It works. I still not uderstand why if the current directory is on my local machine file() funcion and delete file command behave as the documntation says and if current directory is on the network they return another result. Is this how it's supposed to be?
  20. dstema

    File() function returns different value on the Network

    Hi everybody, I'm using FoxPro 2.5 under Novell NetWare 5.0. The following piece of code gives me a different result based on current directory. On my computer (local) it gives me .F. while on the network it gives me .T. lcwfile='' .... if file(lcwfile+'.dbf') More than that, if there is a...

Part and Inventory Search

Back
Top