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 Mike Lewis 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. 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

    tnx guys!
  3. 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!!
  4. 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...
  5. ellehcsim

    Error Handling

    yes, does that PROCEDURE can be placed inside an EVENT? let say for example, can i include that PROCEDURE inside the BUTTON CLICK EVENT? THANKS AGAIN!
  6. 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...
  7. ellehcsim

    How to format textbox

    thanks!!! it works!
  8. 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!
  9. ellehcsim

    Grid1.setall() ????

    hi.! the code didn't actually work, but it gave me an idea. i got it working with this one.. ThisForm.grd1.Column4.DynamicForeColor = IIF(itemdetails_pr.qty_apprvd=0,&quot;255&quot;,&quot;0&quot;) Thanks KONUK! you did great!
  10. 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...
  11. ellehcsim

    Inserting into an array

    Thanks! works perfectly fine!!
  12. ellehcsim

    Inserting into an array

    first of all, thanks.! But it didn't worked, sorry. it got all the data messed up in the combo box. :( 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...
  13. 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!
  14. ellehcsim

    is it possible to sort a native table without index.

    done.! thank you very much guys!
  15. ellehcsim

    is it possible to sort a native table without index.

    Hi, You can use create a view against free tables. The only thing that has to be in a DBC is the view definition. You can create the DBC and the view definition on-the-fly, and delete them when you're done. - ok, thanks for the info. but i guess this is my last option cause it might cause a...
  16. 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