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 strongm 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. Russ1005

    Check for existence of cursor.

    Thanks!
  2. Russ1005

    Check for existence of cursor.

    In VFP 7, I how do I check for the existence of a cursor called curEditlist and then reinitialize it? Thanks.
  3. Russ1005

    Spinner control will not let user enter 2 digit numbers.

    The problem was there was a val() function in the interactivechange event of the spinner control which was padding the number incorrectly. Thanks.
  4. Russ1005

    Spinner control will not let user enter 2 digit numbers.

    No, that was worth a shot but it didn't work.
  5. Russ1005

    Spinner control will not let user enter 2 digit numbers.

    In VFP 7, I have a spinner control that will only let the user enter a 1 digit number but not a 2 digit number as it should. Using the spinner buttons works fine. There is only a problem when keying 2 digits manually. Format: RK Input Mask: 99 Increment: 1.00 keyboardhighvalue = 31...
  6. Russ1005

    Controlling manual input of spinner control.

    In VFP 7, a user reports that on a spinner control when he tries to manually key in a 2 digit number, the spinner displays a decimal. I can not reproduce the problem as when I try to manually key in 2 digits it will only accept 1 number(but should allow 2 digit entry). The KeyboardLowValue...
  7. Russ1005

    How do you add a property to an existing object?

    In VFP7, how do I add a property to an existing object called oFormData?
  8. Russ1005

    Default value for combo box

    I put the following code in the form's init event and it's working now. DODEFAULT() thisform.cboPayeeType.Value = 'D'
  9. Russ1005

    Default value for combo box

    This code is in the init event of the parent class. This.Rowsource = LoadMemo(This.Rowsource)
  10. Russ1005

    Default value for combo box

    Actually that displays a 6 which is the rowsource value that is the primary key to a record that contains a memo field that holds the following: Dealer,D,Manufacturer,M,Distributor,R
  11. Russ1005

    Default value for combo box

    In VFP 7, I have a combo box where: boundcolumn = 2 columnlines = .F. DisplayValue = Dealer name = cboPayeeType rowsource = Dealer,D,Manufacturer,M,Distributor,R rowsourcetype = 1 - Value I want Dealer/ D to be the default value but it is currently blank on the screen even though displayvalue...
  12. Russ1005

    Combo box text property not recognized.

    In VFP 7, I have a combo box called cboAcPayeeType. In the valid event I have the following code. When it tries to execute the first CASE statement, it bombs and says: Property TEXT is not found. There is a value in display in the combo box on the screen. Any ideas why it does not recognize...
  13. Russ1005

    How do you set the default value for a control to a record field?

    I have VFP 7 with an Oracle database. In the following scenario, how can I set Mytable1.field1 as the default value for MySpinnerControl? Mytable1.field1 MySpinnerControl
  14. Russ1005

    Unexpected control value

    No the save button is not in the toolbar. The code in the interactivechange event did the trick.
  15. Russ1005

    VFP doesn't allow calling of setfocus() from VALID event.

    In VFP 7, I have a program spec that says if the spinner control on the form doesn't contain valid data to reset the control's value to it's previous value and setfocus to the control. VFP does not allow you to call setfocus() from the VALID event. Any idea how I can set the focus? Thanks.

Part and Inventory Search

Back
Top