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 Chriss Miller 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 MarciaAkins

  1. MarciaAkins

    How to add combox in a grid row VFP 9.2

    You can download the white paper and sample code from my conference session entitled "How to put a combo in a grid". You will find it on the Tools and utilities page of my web site. Marcia G. Akins www.TightlineComputers.com
  2. MarciaAkins

    Selecting a Specific Excel Worksheet from VFP

    If you have named your worksheets, you can reference them by name. You can also reference them by index. oXl.ActiveWorkBook.WorkSheets( "Mar" ).Activate() or oXl.ActiveWorkBook.WorkSheets( 3 ).Activate() Marcia G. Akins www.TightlineComputers.com
  3. MarciaAkins

    How to copy and paste a PDF file as attachment?

    You should create a subfolder under the application's home directory especially for your PDFs and save your PDFs there. Then you can use a character field in your table to point to the DBF. Marcia G. Akins www.TightlineComputers.com
  4. MarciaAkins

    Grid Double Click

    You did not say which version of VFP you are using. In version 8 and later, you can use BindEvent() to handle it like this: FOR lnCol = 1 TO This.ColumnCount loColumn = This.Columns[ lnCol ] FOR EACH loControl IN loColumn.Controls IF LOWER( loControl.BaseClass ) = 'header'...
  5. MarciaAkins

    Resize Common Dialog

    *-- Class: acxcommondialog (e:\marciapresents\activex\libs\activex.vcx) *-- ParentClass: olecontrol *-- OLEObject = C:\WINDOWS\system32\comdlg32.ocx * Define Class acxcommondialog As OleControl Height = 37 Width = 36 *-- The folder from which the file(s) were selected cpath =...
  6. MarciaAkins

    Resize Common Dialog

    AFAIK, the common dialog is resizeable by default. This is one of the values for the flags property of the control. The flags property controls the appearance and the behavior of the dialog. This is similar to the DialogBoxType parameter in the native VFP MESSAGEBOX() function: the values of...
  7. MarciaAkins

    List Box

    This.ListIndex Marcia G. Akins www.TightlineComputers.com
  8. MarciaAkins

    Hide Grid Row

    One word of caution - filters in grids are not Rushore optimizeable. Marcia G. Akins www.TightlineComputers.com
  9. MarciaAkins

    Hide Grid Row

    Thew short answer is no. Instead, create a view that excludes the records you do not want to display and use the view as the grid's RecordSource instead. Marcia G. Akins www.TightlineComputers.com
  10. MarciaAkins

    Select statement : COMMA DELIMITED

    Because copy to is a VFP command and SQL Server doesn't understand VFP. What you need to do is to connect to SQL Server from VFP and use SQLEXEC to run your query. This will give you a local VFP cuors and you can use the COPY TO command on that, See SQLCONNECT(), SQLSTRINGCONNECT(), and...
  11. MarciaAkins

    VFP 9: Line Graph DataLabels

    It is a property of the point interface in the MS Graph object model. Marcia G. Akins www.TightlineComputers.com
  12. MarciaAkins

    Vanishing Combo VFP9

    I am so sorry for not being more specific. If you had wanted to turn off Themes support for the entire app, all you needed to do was to set _Screen.Themes = .F. at the beginning of your main startup program. Marcia G. Akins www.TightlineComputers.com
  13. MarciaAkins

    Error 43 : Not enough memory to complete operation

    It's known that VFP has sometimes that problem on PC's with 1Gb memory or more and limiting the buffer size fixes it. You can try to limit the size of VFP buffers. SYS(3050, 1, 512*1024*1024) SYS(3050, 2, 512*1024*1024) Also try to call SYS(1104) after command that process large tables. It...
  14. MarciaAkins

    Vanishing Combo VFP9

    What happens if you set Themes to .F. ? Marcia G. Akins www.TightlineComputers.com
  15. MarciaAkins

    Graph in Report

    If you want to display a graph iun a Visual Foxpro report, go to the tools and utilities page of my web site and download the white papaer and code samples from my conference session entitled "Creating Graphs With VFP". There are code samples that print the generated graph in a report. Marcia...

Part and Inventory Search

Back
Top