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 Wanet Telecoms Ltd 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: rkolva
  • Content: Threads
  • Order by date
  1. rkolva

    File.delete not working on Win7 64

    I have a directory of csv files I'm converting to xml, once the file is converting making a copy of csv to an archive dir and want to remove the original csv from the input dir (ftp). Outside of using File.exists I've been unable to get the File class to do any file operations in the file...
  2. rkolva

    calling local PHP script

    Looking for alternative methods to calling a local PHP script. I assume I could make an HttpRequuest call to LocalHost but was wondering if there is another method of calling a local script? Thanks, Ralph Kolva
  3. rkolva

    visible behavior in dockable forms

    I've managed to work around this unusual behavior but was wondering if it is normal or did I do something to make this happen in my form? I have dockable form that can be toggled on and off via a toolbar (visibility). Testing it I noticed that the form resized a little every time I toggled the...
  4. rkolva

    tab docking 2 forms?

    Hopefully somebody can enlighten me as to what I'm not getting with this. I have two custom forms that are defined as dockable and run in _Screen. I can dock either one to _Screen by iterating the _Screen.Forms collection and then using DOCK NAME oForm POSITION 1 I seem to not have too...
  5. rkolva

    Dynamic Header color in Grid?

    I've been at a loss at how to do something that seems so simple from looking at the property sheet of the grid control. I have a grid that my user can re-order by clicking on any column header and would like to give some visual clue as to which column has the current sort order. At the moment...
  6. rkolva

    FTPS?

    The institution I'm working for is going to FTPS in the near future so I have to find a way to support it in VFP. I know that WinInet can do FTP but I don't see anything with the FTP APIs that supports SSL. It don't see that WinHttp supports FTP so it seems like that approach is out also...
  7. rkolva

    Strange box after issueing ShowWindow API

    I finally got around to doing something about not allowing the user to run more than one instance of the app at a time. My approach is to iterate processes until I find my exe. Then retrieve the window handle for that ProcessId. Once I have that I use a version of Craig Boyds faq184-4262...
  8. rkolva

    Looking for Advice

    Trying to decide on the best way to change a stand alone, single user app to a multi user app and thought I would ask the experts. I've inherited the app and while it has worked well over the past 6 year and has some nice features a lot of the code is sloppy, difficult to read, and the original...
  9. rkolva

    _XMLCalvinh?

    I've got a routine that calls a parameterized query and recieves the data as XML data and makes a call to XMLtoCursor(). I have a user that keeps getting the error: "Invalid subscript reference" My error handler records the line of code that generated the error as the following: "create...
  10. rkolva

    SHORT dates don't work with CTOD()?

    My app connects to a server on a daily basis to retrieve data updates and fill any requests for missing data. I'm using config.fpw as an ini file and storing the last date it connected as a string. Everything was working fine until they asked to switch to the following date format: 'DD-MON-YY'...
  11. rkolva

    Modaless Word in form

    I need to create a VFP form by where the user can manipulate the text of a Word doc. They also need to be able to drag and drop field names from a list box onto the doc. Essentially my form becomes a wrapper around Word that provides some control over manipulating a mail merge template. I've...
  12. rkolva

    VFP generating incorrect product

    I'm working with a collegue on an algorithm that determines the number of record discrepancies between mirrored databases. The algorithm requires generating some fairly large numbers and we're finding that the VFP end is giving us some weird results. eg: VFP is giving me: 9980587959 * 10000998...
  13. rkolva

    Properties for SCATTER rec object?

    Greetings, Just wondering if anyone has encountered a way to step through the properties of a SCATTER NAME record object. SCATTER NAME loRecObject1 MEMO I would like to be able to reference the field properties without having to know in advance what they are or by referencing the work...
  14. rkolva

    Wrong Data type with SHORT date

    I am having the VFP error dialog poping up stating that "Data/datetime evaluated to an invalid date" instead of the little wait window whenever I enter an incorrect date with a three digit year. This behaviour didn't occur when I had the SET DATE MDY or DMY. The application issues a set date...
  15. rkolva

    XMLToCursor but no cursor

    Hi All, I have a distributed app that retrieves data via http in xml and creates a cursor via XMLToCursor(). On one machine I have verified that it did indeed receive data but it's failing to create the cursor. I have verified that it is not the data that is causing the problem. I have had...
  16. rkolva

    Running an asynchronous process within VFP

    Hello all, I've got a data entry system that transmits data as xml over http ssl with a client certificate. The handshake takes about a second on average and while the data is being sent I display a graphic that lets the user know something is happening. The communication is currently in a...
  17. rkolva

    menu focus problem?

    I'm getting un 'unknown member' error dialog when attempting to access a disabled menu. The specific situation is this: I have two forms visible. Form1 is modal and 'As Top-Level Form'. Form2 is also modal but 'In Top-Level Form'. The custom menu is loaded in form1.init() and in my main prg...

Part and Inventory Search

Back
Top