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 TouchToneTommy 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: ellehcsim
  • Content: Threads
  • Order by date
  1. ellehcsim

    MSFlexGrid Problem

    i have a MSFLEXGRID and a TEXTBOX on a form. on DESIGN TIME, i put the textbox on top of the flexgrid. but everytime i RUN the form, the flexgrid is always on top of the textbox making the textbox impossible to see. is there some activex issues on VFP8 that i should know? thank you very much!
  2. ellehcsim

    Check the date if Valid in VFP6

    hi guys! is there a special function in VFP6 that checks if the user inputs a valid date. >>> function that works something like this. if IFDATE(thisform.text1.value) = .t. ... do something ... else messagebox("Invalid date.") endif thank you!!
  3. ellehcsim

    How to get ON ERROR working on SQLEXEC command

    hi guys! this is my code... ON ERROR do errorHandler lSqlString = &quot;update a_item_masters set a_field_her 'a'&quot; && This code should produce an ODBC Error SQLEXEC(g_connHandle,lSqlString,&quot;item_query&quot;) < 0 MESSAGEBOX(&quot;if this messagebox appears...
  4. ellehcsim

    Error Handling

    hi guys!! is there such a thing like this in VFP...? (start of code) ... ... ... (do something here) ... ... if (condition) GOTO LABEL sample_label else ... ... ... (do something again) ... ... endif...
  5. ellehcsim

    How to format textbox

    i want the textbox to have a DATETIME format. is there a way to do this. or is there a way to put an empty DATETIME value in a textbox. coz if i do... &quot;thisform.textbox1.value = {}&quot; i only limit the textbox to DATE only for input. thanks you guys!
  6. ellehcsim

    Grid1.setall() ????

    hi experts, is it possible to change the font color of a specific column (not the whole row, just a record in one of the columns) depending on a certain condition. ive already tried this command but it didn't work...
  7. ellehcsim

    Inserting into an array

    i have this code... select * from cur_hold_code into array ar_holdcode thisform.cbohold_code.clear thisform.cbohold_code.rowsourcetype = 5 thisform.cbohold_code.rowsource = &quot;ar_holdcode&quot; is there a way to insert another item into the combo box? Please help. Tnx!
  8. ellehcsim

    is it possible to sort a native table without index.

    im having a problem on showing my datas in a grid control. the scenario is this: i have a grid control on a form, in which the recordsourcetype is 'alias' and buffermodeoverride = 5. I set it to alias because i want the editing of datas done on some of the columns. so i used a native table to...

Part and Inventory Search

Back
Top