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 Chris Miller 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: imox
  • Order by date
  1. imox

    Simple progress bar

    Hello, How can I make a simple progress bar? Cheers! Imox
  2. imox

    Delete rows and Drop FREE table

    Hello CREATE TABLE temp FREE (idpr i(10)) INSERT INTO temp (idpr) VALUES (232323) INSERT INTO temp (idpr) VALUES (78979) INSERT INTO temp (idpr) VALUES (3865678) DELETE FROM temp WHERE idpr = 78979 SELECT * FROM temp INTO CURSOR cur SCAN MESSAGEBOX(idpr) ENDSCAN In this example the row...
  3. imox

    write file with UTF-8 encoding

    Thanks for your description. I've done this like you.
  4. imox

    write file with UTF-8 encoding

    Thanks
  5. imox

    write file with UTF-8 encoding

    Hello, I write my txt files with FCREATE, FWRITE .... how can I write the file with UTF-8 encoding? Thanks
  6. imox

    Var in SQL

    It works! Thanks a lot
  7. imox

    Var in SQL

    Hello, SELECT * FROM table; WHERE table.column = "value" how can I set the operator '=' in a variable?
  8. imox

    ListBox with "key value"

    Thanks it works°
  9. imox

    ListBox with "key value"

    Hi Mike, thanks it works perfect ;) But how can I get the second column from the list?
  10. imox

    Variables not found in compile version

    Ok it was my Problem. I had some errors in my code. Sorry
  11. imox

    Variables not found in compile version

    Hello, then I open the form in the developer view it works fine but when I make a build and run this my stuff not works ;( What I have todo for the build that all works?
  12. imox

    ListBox with "key value"

    thisform.list1.RowSource = "src.column", "src.column2" that does not work too ;(
  13. imox

    ListBox with "key value"

    ahhh ok thanks ;) but this does not work thisform.list1.RowSource = "src.column, src.column2"
  14. imox

    ListBox with "key value"

    Ok thanks but this does not work. SELECT * FROM table INTO CURSOR src thisform.list1.RowSourceType = 6 thisform.list1.RowSource = src.column and yes the key is another column from the cursor. thanks imox
  15. imox

    Copy internal files

    lcPath = JUSTPATH(FULLPATH(lcFile)) Sorry but what is lcFile? The local file in the directory in which is placed the program? I tried this and this doesnt work
  16. imox

    ListBox with "key value"

    I need a key for each item. e.g. Item 1 (10) Item 2 (11) Item 3 (12) When I get "Item 2" I want get "11" But in the list should only appears the Items. It is not normal to use a key value pair in foxpro?
  17. imox

    ListBox with "key value"

    SELECT * FROM table INTO CURSOR src thisform.list1.RowSourceType = 6 thisform.list1.RowSource = src.column did not work ;( and still I need a key ;)
  18. imox

    ListBox with "key value"

    0 = none Ok but how it could help me to get a key?
  19. imox

    ListBox with "key value"

    So I add the one item to the listbox and this works well ;) But I need a key for each value ;( SELECT * FROM table INTO CURSOR src thisform.list1.RowSourceType = 1 SCAN thisform.list1.AddItem(src.column) ENDSCAN
  20. imox

    Copy internal files

    I want get the current path programmatically

Part and Inventory Search

Back
Top