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

  1. Custer

    How can I return a Parameter to the Calling Form

    You really should read the fine manual. Extract form the said manual: Returning a Value From a Form You can use forms throughout your application to allow users to specify a value. To return a value from a form Set the WindowType property of the form to 1 to make the form modal. In the...
  2. Custer

    Adding months or years to a DATE variable

    ? Gomonth(date_variable,numbwer_of_months) * Example: to add 1 month to today's date ? gomonth(date(),1) * Example: to add 1 year to today's date ? gomonth(date(),1*12) * Example: to add 5 years to today's date ? gomonth(date(),5*12) Etc...
  3. Custer

    encrypted data in a table

    If you want to just hide passwords, I wrote an interface to the MD5, SHA-1 and ripemd-160 one-way hash functions as Windows DLLs: http://www.geocities.com/custerstoe.geo/md5.zip http://www.geocities.com/custerstoe.geo/rmdsha.zip and how to use use them...
  4. Custer

    .exe and Windows XP

    I intend to install an application (using the install wizard that comes with vfp 6) on a computer running the new XP. Should I expect compatibility problems? The .exe was compiled under win 98. Thank you.
  5. Custer

    Bit manipulation on the string data

    If you want it to be really fast, then write the routine in C and compile it as a DLL or FLL, and include it in your project.
  6. Custer

    Intristic Grid Control

    Err, there are supposed to be brackets in some lines in my previous message, I'll change them to parentheses instead:<br><br>lnCount=thisform.mygrid.columncount<br>PRIVATE acColumnWidth(lnCount)<br>FOR i=1 to...
  7. Custer

    Intristic Grid Control

    Save the column properties in arrays, one array for each property you want to save, before you change the recordsource.&nbsp;&nbsp;Then after you change, reset the grid column properties from these arrays like this:<br><br>lnCount=thisform.mygrid.columncount<br>PRIVATE...
  8. Custer

    Not a problem

    Hello, this is not to report a problem, just something strange.<br>Maybe it's already known, maybe not.<br>Ok, I had to create a form to update 3 tables in one-to-many relationships like this: TABLE1 --&gt;(one-to-many rel 1:N)--&gt; TABLE2--&gt;(one-to-many rel 1:N)--&gt; TABLE3.<br>Each record...

Part and Inventory Search

Back
Top