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 SkipVought 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. andyrice

    How do I get a Combo Box to show column data?

    To add to what you added to what I added... You can set the ColumnCount = 1 even when the RowSource contains multiple columns. By doing that, you don't need to specify any ColumnWidth for the other columns. Andy Rice San Diego, CA
  2. andyrice

    How do I get a Combo Box to show column data?

    Set these in the Property Sheet: RowSourceType = 6 RowSource = dbf.col2, col1, col3 A unopened FoxPro combobox only displays its first column. Andy Rice San Diego, CA
  3. andyrice

    wait window not displayed

    This is from the Universal Thread I think it still applies to VFP 8: "If you've upgraded to VFP 6.0, you may have noticed that calls to WAIT WINDOW don't display the window with an SDI form. This will occur if the form's ShowWindow property is set to 2 (As Top-Level Form) and the Desktop...
  4. andyrice

    How to retrieve a PK from table using cursoradapter

    Mike: I have only used Autoinc fields with a CursorAdapter. I was deferring to YOUR superior knowledge of how they worked on a regular table! Thanks, Andy Rice San Diego, CA
  5. andyrice

    Time Delay with VBA

    It looks like this may work. "Use the built-in Wait method." Application.Wait( Now + TimeValue("0:00:10") ) Andy Rice San Diego, CA
  6. andyrice

    How to retrieve a PK from table using cursoradapter

    I am using CursorAdapters against FoxPro tables. It seems if you edit the table directly, the autoinc value is available after an append blank. But if you create a CursorAdapter to the table, and edit the cursorAdapter, the autoinc value is not available until you do a TABLEUPDATE(). I...
  7. andyrice

    The strangest thing made with VFP?

    To keep this thread going. I made a form for displaying Tif files. It uses the Kodak Imaging ActiveX. Andy Rice San Diego, CA
  8. andyrice

    Printing TIFF w/ Kodak ActiveX Control

    You're welcome. Andy Rice San Diego, CA
  9. andyrice

    Multiuser problems...can't find on board

    I take a different approach, and try to get rid of the resource file! This is documented for VFP 6 or higher, and may works in version 5: Make a Config.fpw containing this line: RESOURCE = OFF Include that file in the project. VFP will look for a Config.fpw from the project...
  10. andyrice

    Variable Scope Across A Form

    In the Property Sheet, set the Form Variable value for: Character: ="StringEnclosedInQuotes". Note the equal sign and quotes. Number : Just the number. Date : { / / }. The last two do not have quotes. Andy Rice San Diego, CA
  11. andyrice

    Printing TIFF w/ Kodak ActiveX Control

    I use the Kodak Image Admin control to print. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/3rdparty/html/hidh_admin_contents.asp I created a form with: 1. oleImageAdmin = Kodak Image Admin control. 2. oleImageEdit = Kodak Image Edit control Here is my code to print...
  12. andyrice

    Microsoft Internet Controls & Createobject()

    At the Command Window: m.loIE = NEWOBJECT( "InternetExplorer.Application" ) will get you the Internet Explorer object. Andy Rice San Diego, CA
  13. andyrice

    ALTER TABLE ADD field

    The ALTER TABLE command has a RENAME COLUMN clause. That works for free tables. Andy Rice San Diego, CA
  14. andyrice

    A way to collect your KB articles from internet.

    Thank you very much for contributing this. I may use this in the future. Andy Rice San Diego, CA
  15. andyrice

    Save with webbrowser control?

    A very fast way: ************************************************************ * Parameter: Name of URL which points to a file to download. * Parameter: Local file to which to download. * Return : .T./.F. ************************************************************ FUNCTION lURLGetFile( tcURL...
  16. andyrice

    Congratulations slighthaze -Tipmaster of the Week!

    Congratulations. Thank you for the time you put in! Andy Rice San Diego, CA
  17. andyrice

    ListView Example

    There is also a FoxPro sample you can download: http://support.microsoft.com/default.aspx?scid=kb;en-us;253457 Andy Rice San Diego, CA
  18. andyrice

    Paradox ODBC and VFP 7

    "PARADOX.NET" was used by Paradox 3.5 and earlier. That changed to "PDOXUSRS.NET" in version 4. The key thing was that each user needed to map THE SAME DRIVE LETTER to where that file was. So map the same drive letter on your PC. Do this even if you copied the .db files...
  19. andyrice

    Run VBScript within VFP

    Thank you for this code. I kept it for later use. Andy Rice San Diego, CA
  20. andyrice

    remote View -- Can you pass a variable from the screen that calls the

    I used to work with a DB2/400. That message meant the data type did not match. So "vprhrec" would have to be in DB2/400 format. Sorry, don't know what that format is. Andy Rice San Diego, CA

Part and Inventory Search

Back
Top