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: mbru
  • Order by date
  1. mbru

    Combo Box

    This is a bug in Visual Foxpro. Here's the link to the MS KB article: http://support.microsoft.com/default.aspx?scid=kb;en-us;149608
  2. mbru

    Terminating a process with WinAPI functions

    FWIW, here's what I am doing to terminate a process. This code runs in the COM server object: * Identify the process id for the process DECLARE INTEGER GetCurrentProcessId IN kernel32 lnPID = GetCurrentProcessId() The process ID (lnPID) is stored in a table for use by the main...
  3. mbru

    Terminating a process with WinAPI functions

    We are using VFP for both front and back end of our database. We've got about 20 remote locations that each have a server and 6-12+ workstations. Our central office server maintains master tables which are updated from data collected at the remote locations. We pass SQL commands in text files...
  4. mbru

    Error 1494

    I had a similar problem when dealing with a parameterized view. My view was used as a search engine. It had about 6 or 8 parameters feeding the search criteria in the WHERE clause of the view and it worked fine. I decided to add another search criteria, and hence, another parameter. Now I...
  5. mbru

    Add data to a source table using a view

    Don't know if you ever resolved this, but I did a quick read through and noted what I think would be a problem. In the code creating the lvSample view: Create VIEW lvSample AS ; SELECT * ; FROM SAMPLE!Contact ; INNER JOIN SAMPLE!Company ; ON Contact.CompId = Company.CompId ...
  6. mbru

    Floppy Drive Not Found After Adding Sound Card

    I got the floppy drive not found error (40) while putting together a system and would appreciate any ideas to resolve the problem. The mainboard is an Epox MVPC32 with a K6-2 475+ set at 5 x 100. The system BIOS recognized the CPU as a K6-2+ and correctly identified the speed setting (500 @ 5...
  7. mbru

    Trying to use a container class object in a Grid column

    I have a class that consists of a text box and the ole calendar control. The calendar control is set to visible = .F. The keypress method of the text box contains code to mimic the calendar control, ie., page up goes to the previous month, page down to the next month, right arrow to the next...
  8. mbru

    Concatenating fields in a view - resulting field greater than 255

    I am attempting to concatenate 6 fields from a table into a single field in a view. A UDF formats the text from the 6 fields. I expected a memo field to result, but instead get a string too long error message. The SELECT statement is something like this: SELECT ...

Part and Inventory Search

Back
Top