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

    basic grid issue...

    i have a grid with the recordsource/columnsource set to an alias. however i want to change the table for this grid so i have the user select which table using an optiongroup which has a click event that closes the current table and opens a different table with the same alias. i can't get this...
  2. tristero

    CONTENTEDITABLE problem with <p> tags

    I've written a javascript html editor but i'm having problems... I'm using a <div> tag with contenteditable="true" as the main editor window. the only problem is when i type in it it uses <P> tags for each new line. this is causing a bouble-spacing effect. how do i keep this from happening...
  3. tristero

    Precision problem with PHP/MySql...

    i have a table with a field (float) with the value "1.80" in it. when i pull that value into a php page, the "0" is lopped off, and i just get "1.80" how do I get the entire "1.80" to show (without changing the field to varchar)? thanks Dan Trenz Ann Arbor, MI
  4. tristero

    UGH! trying to make a rollover submit button w/o images...

    i can't get this to work, and i cant see why... please help. <head> <style> .mybutton {background-color: white} </style> </head> <body> <INPUT type=button class=mybutton value="Click Me" OnMouseOver="this.style.background-color='red'" onMouseOut="this.style.background-color='white'">...
  5. tristero

    FoxPro app compiled as .exe freezing up! help!

    i have a project built as an *.exe this project is essentially 1 main form. every once in a while i try pressing one of the buttons to make it do something and it freezes (goes to an hourglass, when it shouldn't). it says it is running in the task manager but it never stops. at first i...
  6. tristero

    another easy form question re:labels

    can you have multi-lined labels? i can't get a label to "word wrap" text Dan Trenz Ann Arbor, MI
  7. tristero

    simple form question: which property for resizable?

    Which property determines whether or not the user can resize the form? like grid.resizable = .F. but for the entire form window. Dan Trenz Ann Arbor, MI
  8. tristero

    what is the EASIEST way to programmatically send a simple email?

    i need my foxpro program to send me an e-mail after it is automatically run each morning on another computer, to tell me that it has run successfully. nothing fancy... just the essentials. i'd like to avoid messing with outlook as much as possible. Dan Trenz Ann Arbor, MI
  9. tristero

    how do you get the ASCII value of a character?

    also, is there a function that translates a character into bits? (110101) Dan Trenz Ann Arbor, MI
  10. tristero

    how do i call a form from a prg?

    i wrote a prg and in the prg i say "DO FORM myform" myform is a form i built in the form editor to handle output from the prg. but when i say: myform.label1.caption = "hello" i get an error saying that it cannot find object myform. what am i missing? Dan Trenz Ann Arbor, MI
  11. tristero

    Confused by AFIELDS()....

    According to the documentation i have, AFIELDS() is supposed fill an array with a list of all the fields in a given table, as well as the structural info about each field. but how could i accesss JUST the field names? EXAMPLE: if i had a table with 3 columns... would i get the names by using...
  12. tristero

    How can i tell if a table is currently open and being used?

    by someone on the network? i want to check if a table is being used before i try to USE DBF() EXCLUSIVE Dan Trenz Ann Arbor, MI
  13. tristero

    Please Help:&quot;FOXUSER resource file is unavailable, Diary disabled&quot;

    ACTIVATE WINDOW calendar is giving me this error... please help Dan Trenz Ann Arbor, MI
  14. tristero

    Is there a Click() event for a Calendar window in a form?

    how would i catch it? calendar.click(): thisform.showdate.caption = DTOC(_DIARYDATE) Dan Trenz Ann Arbor, MI
  15. tristero

    What values does a Y/N messagebox return?

    Yes = ? No = ? Dan Trenz Ann Arbor, MI
  16. tristero

    can you make a grid read-only to the user but...

    not read-ony to the form/app? i want to be able to have my form change values in a table/grid programatically (on Command.Click() events) , without the user being able to actually edit the values in the grid manually. is this possible? thanks.
  17. tristero

    grrrr.... having trouble writing a file...

    what is the function to simply write a file? say i want to create an empty file named &quot;file.dat&quot; what would be the correct function? most of the file functions i can find simply write to pre-existing files... without creating a file from scratch. grrr.. please help this newbie...
  18. tristero

    Is there a function to read the contents of a directory?

    Is there a function to read the contents of a directory into a string or array? thanks.
  19. tristero

    How do i get the computer name of a user?

    i want to be able to log users of my app? i know there is a function which gets the users comp name... right? i can't remember it though...
  20. tristero

    Grid Click Events... virtually useless?

    is there a work around for click events in a grid? is it possible to trigger a click event by clicking on a record? or is this a weakness in vfp?

Part and Inventory Search

Back
Top