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!

Recent content by spysab

  1. spysab

    IMPORTING FROM EXCEL - DATE FORMAT

    atlopes - im using csv format, but any format comes out the same result tho. APPEND FROM ? TYPE CSV i've tried APPEND FROM ? TYPE CSV APPEND FROM ? TYPE XL5 ** another problem here is this didnt upload all rows. i have 71,000 rows. only csv covers all Mike Gagnon - date setting, how...
  2. spysab

    IMPORTING FROM EXCEL - DATE FORMAT

    Hi guyz! What do i missed? i import data to table from excel but date column appears "/ /" in mytable. how do i fix this? should i format the excel date column as text first?
  3. spysab

    MULTI CRITERIA FILTERING

    Hi Guyz! I have this code as my filter LPARAMETERS tcFieldName, tcSearchText tcSearchText = ALLTRIM(UPPER(tcSearchText)) && use macro expansion to implement search filter SET FILTER TO "&tcSearchText" $ UPPER(&tcFieldName) GO TOP thisform.Refresh() and have this in my textbox search...
  4. spysab

    INTEGER (AUTO INC) - SERIES SKIP

    so meaning i cannot use an auto-increment field as memo series or invoice series for it will really skip. how can i put a sequence +1 every new entry to become a transaction reference? that if i cancel the attempt to create new, sequence will remain +1 to last entry.. to be specific, it is...
  5. spysab

    INTEGER (AUTO INC) - SERIES SKIP

    Hi! i have a field which is integer(auto inc). so upon making new entry, new index will be assign. but why when i cancel my attempt to create new entry, table is being revert but the index series skip its sequence? how can i maintain its sequence when i cancel my attempt to create new entry...
  6. spysab

    CODE ERROR - TROUBLE SHOOT

    Mike! Thank you! Problems is fixed! Thank you Thank you
  7. spysab

    CODE ERROR - TROUBLE SHOOT

    Hi guyz! What is the possible reason why this code is having an error in 1 FORM but perfectly working in another? this code is the one which is working perfectly. (deleting entries) #define CMSG "Are you sure you want to delete customer ("+ALLTRIM(customers.company)+")?" #define MB_YESNO 4...
  8. spysab

    COLUMN 1 TABLE VALUE IS A MERGE OF COLUMN 2 AND 3

    Hi! How can i combine table column "name and surname" into one column "full name" stafflist.dbf column 1 = name column 2 = surname column 3 = the value of column 1 and 2 combine to become a full name Thanks
  9. spysab

    ERROR BUILDING .EXE

    Hi Olaf Doschke, where should i place my code here? ON ERROR MESSSAGEBOX(Textmerge("<<ERROR()>> <<MESSAGE()>> <<LINENO()>>")) should this comes after or before my codes?
  10. spysab

    ERROR BUILDING .EXE

    I just follow the code from youtube tutorial. He doesnt proceed upto building exe but i follow exacly what he puts. https://m.youtube.com/watch?v=4qi9WetSic4 But i try to remove HIDE WINDOW STANDARD and SHOW WINDOW STANDARD then my exe works perfectly :) Thanks pal.. i learned a lot.
  11. spysab

    ERROR BUILDING .EXE

    Do you maybe have two menus named the same in different folders? FOUND IT!!!! my bad!!! though its not in different folder, i put that shortcut.mpr under PROGRAM and the other one is under MENUS Though not exactly, you give me the idea how to the error works and found it!! last i need to...
  12. spysab

    ERROR BUILDING .EXE

    If it's not because it's running, then perhaps you made it readonly somehow (file attributes)? Or the MPX? - i will try to figure this out. If removing an MPR helps, then that's at least a temporary solution. Is the MPR existing again after the build? - i can't answer coz even though the...
  13. spysab

    ERROR BUILDING .EXE

    Hi Olaf Doschke, Already did that several times (unless im doing it wrong). Even my computer has been restarted. Then have done the following freshly open foxpro in command window, set the path SET DEFAULT TO c:\tutorial\lesson5 SET PATH TO data;forms;reports;prgs;menus then open the...
  14. spysab

    ERROR BUILDING .EXE

    Hi! Im encountering error building .exe. "cust_shortcut.mpr is already used by another program in the project" how do i fix this? "HELP" says select another filename. Thanks!https://files.engineering.com/getfile.aspx?folder=6a6e06ba-3321-408b-8c05-bc51f4377b8a&file=Capture.JPG
  15. spysab

    FIND WITHIN TEXT STRING &quot;LIKE&quot;

    Olaf Doschke! thanks again. a very simple solution to a very simple problem that seems hard for a beginner like me. Having this, i would be able to create multiple types of forms and data extract applying same principle. 2 thumbs up!

Part and Inventory Search

Back
Top