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 Chriss Miller 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: stanlyn
  • Content: Threads
  • Order by date
  1. stanlyn

    Uncoupled Disk Encryption

    Hi, I am looking for an disk encryption solution that is uncoupled from any specific vendor or OS. If a TPM module is used, it must not be at the motherboard layer. It can exist on the disk or at the pcie card layer. The kays are not to be saved at the motherboard or card layer. The keys...
  2. stanlyn

    How do I Resize Controls at Runtime

    Hi, For example, how do I resize a grid or move a line at runtime? Not the form or a window, but only the control. Then from the control's resize event, I can adjust the neighboring controls. Thanks, Stanley
  3. stanlyn

    HowTo Set Custom Form Property's Default Value

    Hi, How do I change a custom form property's default value? Currently, I delete and re-create it. I've looked. You can change its name and comment, but not defaults. VFPA Thanks, Stanley
  4. stanlyn

    Grid Disapears with Form Resize

    Hi, Using VFPA on Win11Pro I have a form with a grid that is pushed off into the corner (out of the way) with it's visible property set to .F. I have a button that toggles its show/hide. It's show sets the grids top=10, left=10 and visible = .T. properties and it shows where needed. Its...
  5. stanlyn

    Order By not working as Expected

    Hi, I am expecting 'All Clerks' to be at the top of the list, instead of at the bottom. It appears that records added after the select query is not under of the control of the "order by" clause. Select ClerkName, SystemID ; FROM 'rv_Clerk' ; ORDER By ClerkName ; INTO Cursor 'curClerk' ...
  6. stanlyn

    Anyone Using Thinfinity VirtualUI

    Hi, Wondering if anyone here is using or has used it in any environment (production or dev)? If so, would you recommend or not recommend it and why? Thanks, Stanley
  7. stanlyn

    String is Too Long To Fit

    Hi, How do I trim the field value for "description"? The data is coming from a RV using VFPA with MSSQL as backend. The field length of description is 512 chars as nvarchar(512). The actual error is "String is too long to fit" This code works. Open Database "EFIR.DBC" Select Pk, Type...
  8. stanlyn

    Trimming the Dollar Sign in Transform

    Hi, How would I remove all the spaces between the $ and number after being transformed? One or two spaces is preferred. I need to reclaim the space as this field is taking up too much space on a report and other places. And, it's not an issue when using large numbers as the spaces gets...
  9. stanlyn

    Multiple Combobox Behaviors

    Hi, Using a combobox control with a rowsourcetype = 3 and a sql statement into cursor holds the list values to be selected. With the controlsource representing the destination table.field, I need for it to: 1. accept a new value from the user and if value is in the list, position it to the...
  10. stanlyn

    Duplicated Controls & Off-Form, Why

    Hi, In a page of a pageframe, something has created controls based on the grid there, and then duplicates them and adds a "2" their names. The page should only have a grid control. The grid control is there along with two sets of controls outside the grid. They are also positioned off-screen...
  11. stanlyn

    Calculating a Grid Cell for All Rows

    Hi, I need to calculate the value of a cell (textbox control) on a grid for all rows shown in the grid. The grid is tied to an underlying table and a tableupdate() saves the rows. Buffering is 5, VFPA. I do not want to commit the data, then read the underlying table. Instead, I need to get...
  12. stanlyn

    NoDefault Tracing and Unexpected Behavior

    Hi, Some more nodefault and dodefault questions that has not been answered well enough for my understanding in the several other threads found here. 1. How can I get the debugger to traverse the code contained within my subclassed object as well as the base class so the actual firing order can...
  13. stanlyn

    What does \ and \\ Mean in VFP Code?

    Hi, While looking at some sample code I see the use of \ and \\ as leading characters. Also, there are commas on some of the lines which I have also never seen before. IF m.lnUseProgressBar = 1 THEN \m.loProgress = CREATEOBJECT("progress") ENDIF && tcOutputName \m.lnRetVal =...
  14. stanlyn

    Using XFRX to Extract PDF's Text

    Hi, Does anyone know if the XFRX sdk can create a searchable pdf from an image when outputting to pdf? Is there a function that will return the text output from the OCR process available so it can be inserted into a table for searching? Why is OCR mentioned here? Because if I load a...
  15. stanlyn

    Cut, Copy, Paste to a Top Level Form & No Menu

    Hi, How do I add cut, copy, and paste functionality to a single page VFP9 app that only uses a top level form. I do have a main.prg that starts it up. No menu of any kind. Thanks, Stanley
  16. stanlyn

    Apps Standardized on Remote Views or SPT or CursorAdapters or Any

    Hi, Is it customary to standardize on one technology like remote views, spt, or cursoradapters and try to stay with it? Does your apps use a specific technology 100% of the time? If not, do you try to make it 100%, or do you not care and use whatever is the easiest? The answers to this is...
  17. stanlyn

    Best Practice on Implementing a Multi-Tenant App

    Hi again, I'm building a multi-tenant app and need suggestions on making sure tenant999's data stays with them and nowhere else using cursoradapters. At startup I can figure out what tenant/systemID to use and then set it in a global var that lives the life of the session. Would best practice...
  18. stanlyn

    CursorAdapter Custom Code

    Hi again, The init of my cursoradapter contains... *** Setup code: DO NOT REMOVE local llReturn do case case not pemstatus(This, '__VFPSetup', 5) This.AddProperty('__VFPSetup', 0) case This.__VFPSetup = 1 This.__VFPSetup = 2 case This.__VFPSetup = 2 This.__VFPSetup = 0 return endcase...
  19. stanlyn

    CursorAdapters, Standalone vs Inside DataEnv

    Hi, I'm restarting my journey with cursor adapters that I have not yet mastered after 7 months being pulled away to deal with the cleanup of the 1000-year flood that hit us here in eastern KY on July 28 of last year. We were at ground zero. My last post on Tek-Tips was just a few days before...
  20. stanlyn

    Master/Detail Remote View Form Sample Needed

    Hi, I have looked and so far have not been able to find a Master/Detail form that uses a remote view for both the parent and child tables. All samples I've seen suggests the parent not be a remote view due to the needed indexes required for the relation. I'm trying to learn remote view...

Part and Inventory Search

Back
Top