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 gkittelson 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. mJindrova

    strange report behavior

    foxup: Do you use VFP 9 or VFP Advanced? Second is driver type You can verify if you have the correct driver by running printmanagement.msc and navigating to Custom Filters -> All Printers. - Column "Driver Name" contains driver which printer use. - Custom Filters -> All Drivers: Show column...
  2. mJindrova

    Windows 11 - any problems noted?

    A member dmDeviceName is a buffer of 32 BYTE or 32 WCHAR
  3. mJindrova

    Windows 11 - any problems noted?

    Note... DEVMODE struct has a member dmDriverExtraData - This field can contain implementation-specific printer driver data. Its size in bytes is specified by the dmDriverExtra field. This binary data not possible share between printer drivers.
  4. mJindrova

    VFP to doesn't launch Ms Word's mailmerge

    Are you sure, so ODBC drivers on both PC are same? Please, compare version and file size.
  5. mJindrova

    Automatic date completion

    Why?!? * textbox keypress event IF NOT PEMSTATUS(_Screen, "oDT", 5) *SET PROCEDURE TO (m.lcPath+"..\src\DTCLASS.prg") _Screen.AddProperty( "oDT", CREATEOBJECT("_DATE")) _Screen.oDT.AutoFillDate=1 ENDIF This.Value=_Screen.oDT.ToDate(This, This.Text)
  6. mJindrova

    Automatic date completion

    Here is class what you need: https://github.com/MJindrova/dtclass
  7. mJindrova

    LISTAGG code like

    https://www.foxite.com/archives/merging-rows-into-one-0000488434.htm
  8. mJindrova

    Help with setting up the report (error message band 1 is too large to fit

    Hi, Detail band, in your report, has height 50.8cm. This is very long band. You must split detail band to more detail bands or detail band with more temporary groups. How you want print band with height 50.8cm to A4 paper?!?
  9. mJindrova

    Export Foxpro 9 DBF to Dbase 5 File

    dBASE V file it's a Paradox DB file and it's incompatible with FP/VFP DBF.
  10. mJindrova

    C# DLL Declare Function

    It's a class in c# in .NET DLL, not it classic DLL with flat fuctions. Use https://github.com/RickStrahl/wwDotnetBridge
  11. mJindrova

    Dynamic Color in Grid Issue

    Scott24x7, if you close rowsource for grid, it's good way, how to prevent problems, set all column's properties again.
  12. mJindrova

    Dynamic Color in Grid Issue

    Dynamic* properties are string expression: grid.column.dynamicbackcolor="IIF(.t. , RGB(0, 0, 128), RGB(255, 255, 255))"
  13. mJindrova

    form still continues even if one object.INIT fails

    From help... To prevent a control from being created, return false (.F.) from the Init event. The Destroy event will not be triggered. For example, the following code returns false (.F.) if the Invoice table is not available: PROCEDURE INIT IF NOT FILE("INVOICE.DBF") ERROR 'Initialization...
  14. mJindrova

    Detail 1 band is to large to fit

    Exists one trick only - split very long band to more bands within fake groups.
  15. mJindrova

    REPORT FORM ... TO PRINTER

    http://hexcentral.blogspot.com/2012/04/vfp-reports-not-showing-same-data-as.html
  16. mJindrova

    Detail 1 band is to large to fit

    If band's height is greater than 22", you get error 1298 "Detail 1 band is too large to fit on page". This is not VFP limit, but Windows limit. That's all.
  17. mJindrova

    The conversion of the varchar value '1111224080294' overflowed an int column

    https://learn.microsoft.com/en-us/sql/t-sql/data-types/int-bigint-smallint-and-tinyint-transact-sql?view=sql-server- Data type Range Range expression Storage bigint -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 -2^63 to 2^63-1 8 bytes int -2,147,483,648 to 2,147,483,647 -2^31 to...
  18. mJindrova

    The new look....

    User CSS and User JS is your best friend ;-)
  19. mJindrova

    Site Migration Problems, anyone?

    Message footer has bigger font size than message content. Color contrast it's very poor.
  20. mJindrova

    Site Migration Problems, anyone?

    test, test from old Opera.... Not good for me. Sans Serif font not is readable font for me.

Part and Inventory Search

Back
Top