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: *

  • Users: Mandy_crw
  • Content: Threads
  • Order by date
  1. Mandy_crw

    sorting

    Hi everyone... i have grade as field as character which are 0,1,2,3,4,5,6,7,8,9,10,11,12.... but everytime i sort using set order , order by and index... it display 0,1,10,11,12,2,3,4,5,6,7,8,9.... may i ask how to sort from 0-12? thanks and advanced....
  2. Mandy_crw

    property showwindow is readonly error

    hi everyone... I have these codes... intention is to have showwindow = 2 but it always say property showwindow is read only... Please help... Thanks in advance.... oRepForm = CREATEOBJECT("FORM") WITH oRepForm .Caption = "Balances"...
  3. Mandy_crw

    What's the difference between scan for and scan while...?

    Hi everyone...i have been using these two... scan for and scan while... and it works perfectly may you help me explain further how these two works so that i could use the most appropriate scan basing on my needs... Thanks in advance....
  4. Mandy_crw

    The new look....

    Hi everyone.... Just dropping by to say loving the new look of the forum...
  5. Mandy_crw

    Can i put code in Unload or Destroy?

    Hi everyone... I have a code written in destroy as follows.. SELECT Log SET ORDER TO IDNUM && IDNUM SEEK(ALLTRIM(idnam)) IF FOUND() IF FLOCK() replace CntLog.log WITH .F. ELSE MESSAGEBOX("table Not locked",0+64,"Lock") ENDIF ENDIF But everytime i close my form... it says "table Not...
  6. Mandy_crw

    Setting the foreground app

    thread184-1819600 Good afternoon everyone... I have these codes in my main program (Init) WITH thisform .windowstate = 1 ENDWITH a = 10 DO FORM ATTMON WITH a and these one in the form ATTMON init.. LPARAMETERS a WITH thisform .windowstate = 0 ENDWITH DECLARE...
  7. Mandy_crw

    Turnstile

    Hi experts, just wondering, Is it possible to program using vfp turnstile gate?
  8. Mandy_crw

    How to get contents of notepad file?

    Hi everyone… i have 1,12,F,U as contents of my notepad, does filetostr() function can get the content in separate value (as separated by coma) not as “1,12,F,U” Thanks and Godbless…
  9. Mandy_crw

    how to pass value to first form?

    I have first form that has text1, text11 and text12, as textboxes. In text1 i have keypress(F3) that calls another form(form2) which has computations. My question is how would i pass a computed value from form2 back to text11 and text12 to form1? I hope i have explain it well.... thanks....
  10. Mandy_crw

    How many “and”?

    Hi everyone… just wondering… i have a SELE and SCAN… in my code, just wanna ask how many AND can i use with these two? SCAN FOR condition1 and condition2 and condition 3 ENDSCAN SELE * from Prelod where condition1 and condition2 and condition3 Although it gave me the intended output, just...
  11. Mandy_crw

    Grid not filling up window completely...

    Hi everyone... i dont know if i can consider this as a problem... but my grid is not filling up the window, only 8 items is shown, after that if i add another item, it shows the scroll bar already eventhough i still have 4 blank rows... May i ask for a solution please... thanks....
  12. Mandy_crw

    Why is it everything in the table is shown?

    Hi everyone... please help me filter the cursor.... REPORT FORM LoadWallet FOR Details.transcode = "LOD" OR transcode = "CSH" AND BETWEEN(ttod((details.deyt)),start,ind) PREVIEW WINDOW (oRepForm.Name) ; TO PRINTER PROMPT Why is it everything in the table is shown even if I specify...
  13. Mandy_crw

    How to set focus to two text box only?

    Hi everyone... i have ten texboxes in a form, but i want text1 and text2 only to be on focused everytime a user presses Tab key from the keyaboard. When the cursor is in text1 and when tab is pressed the cursor goes to text2, and when tab is pressed again, the cursor should goes back to text1...
  14. Mandy_crw

    Happy holidays!

    Happy holidays everyone… so miss chatting and asking answers to all my queries to everyone… God bless and enjoy the holidays…
  15. Mandy_crw

    Windows 12

    Hi everyone… i miss all the lessons being taught in this forum… my application is working fine, im just keep on enhancing… thank you everyone for all your help… I have seen in youtube that windows 12 is already out, will vfp9 or my application be still work or installed in the said operating...
  16. Mandy_crw

    How to sort field including the newly added record?

    Hi everyone.... ive noticed that everytime i sort my table, only those old record are sorted... then another sort for the newly added records.... how can i sort everthing including those recently added? Thanks and God bless....
  17. Mandy_crw

    How to filter data in the dropdown list?

    Hi everyone... i have a form the has pageframe, in page 1 i have a dropdown list named CboIdnum which has a source of cursor that is already defined in the load event of the form. My question is i need to filter the dropdown list, I know that is easy to filter using SELECT, i tried creating a...
  18. Mandy_crw

    how to put timer that does not affect the textbox valid event?

    Hi everyone... i have put a timer in my main form that has an interval of one second, (i have put a digital clock in my main form) that a pageframe is present, and in the page one there is a text.valid event. My problem is... the input in my valid event is affected everytime a clock resets and...
  19. Mandy_crw

    Why is record in combobox not alphabetically arranged?

    Hi everyone... i have these code in Load procedure.... SELECT PADR(ALLTRIM(UPPER(sname)) + ", " + ALLTRIM(fname),25), idnum FROM tsulat ORDER BY sname, fname INTO CURSOR PgBseCbo my question is, why is it not showing alpabetically in the dropdown list, not all but some of the record are not in...
  20. Mandy_crw

    Is there a proper way deleting record if application is used in network?

    Hi everyone… my application i accessed through a network, all client client computers may delete or add a record… i dont know if this is a glitch, but every time a record is deleted, and added again with the same idnum, when chosen in dropdown list, it says “idnumber not found” or record not...

Part and Inventory Search

Back
Top