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. badukist

    VFP compiler for .NET IL

    http://www.etecnologia.net/
  2. badukist

    Combobox like Google's?

    You can use my Combobox class from UniversalThread. It has support for asyncronous client server fetching, search in any column, search only after _incseek time elapsed (after fast type a sequence of chars ) Look for other useful downloads there...
  3. badukist

    XFRX reporting speeds..

    The trouble is that DoStatus() method of UpdateListener is called very often for an alias with many records. The result is that the thermometer window is updated many times per session and this causes the slowness. You can subclass the UpdateListener and modifiy DoStatus() method to update the...
  4. badukist

    Taskbar class written in VFP

    Hi Craig. Thanks for your feedback. There is no need for oTb.Show(), because it watch forms activation (WM_CREATE windows messages) and activates itself. Also it hides itself if there are no active forms. A NODEFAULT command for the case if there are no buttons can be useful, though, point...
  5. badukist

    Taskbar class written in VFP

    Hi all I've designed a class which mimics windows taskbar behavior, but for VFP active forms It needs VFP 9 Link: http://193.231.249.174/Download/taskbarcontrol.zip Usage: SET CLASSLIB TO taskbar.vcx oTb = CREATEOBJECT('taskbar') Screenshot: http://193.231.249.174/Download/taskbar.jpg Any...
  6. badukist

    Converting Foxpro Tables to MySQL

    This is a modified code used to transfer tables to Firebird PROCEDURE dbf2MySQL PARAMETERS tcTable, tnConnHnd, tlAddData *parameters: tcTable table name or full path * tnConnHnd valid connection handle to MySQL database returned by SQLConnect() * tlAddData transfer table data...
  7. badukist

    Sorting in a Grid and stay at current recno()

    store recno() to act_rec set order to xxx thisform.lockscreen = .t. this.Parent.Parent.Visible = .f. &&hide grid GOTO act_rec this.Parent.Parent.Visible = .t. this.Parent.Parent.SetFocus() thisform.lockscreen = .f.
  8. badukist

    Report preview with search

    Hi, thank you for your feeback There is a timer on form that watch lHighlightText property of the form. If this is set to .T. by a successfull search, it draw a rectangle 5 times in .5 second and then deactivates itself. The count can be increased. For page rendering, I'm sure that there is a...
  9. badukist

    Report preview with search

    OK, I believe is my English that makes me hard to be understood. The new report preview application will have search enabled only if a new report output application is used, with cursorlistener as the default class which is instantiated. To achieve this, you must: - unpack ReportOutputEx folder...
  10. badukist

    Report preview with search

    The new preview class looks at the reportlistener reference passed if it has lOutputToCursor = .T. and if the alias is set and used. If is not OK, disable search button. If you use the standard ReportOutput, updatelistener class is used, without new properties. You need to add cursorlistener...
  11. badukist

    Report preview with search

    I've designed a report preview container with text search forward/backward ability. You can download the package from here More info in Readme.txt http://193.231.249.174/Download/SearchReportPreview.zip
  12. badukist

    Saving to a CD

    You can try CreateCD command line utility http://isorecorder.alexfeinman.com/CreateCD.htm
  13. badukist

    Scrollbars in a PRG-based form

    Hi Sems that I need some vitamins :) I remember now. It is on my list too, bu I didn't had time for it. I think about using VFP9 bindings to windows events and common controls native windows scroll bar in place of a container.
  14. badukist

    Scrollbars in a PRG-based form

    I've already done something like this. Check Outlook style listbar on UniversalThread download section
  15. badukist

    Useable icons...

    If you have VFP9, check PNGs image libraries from Linux world. You can find a lot which are free, specially themes (KDE,Gnome). PNG graphics are nice on buttons, because built in transparency.
  16. badukist

    API for scroll bars

    It's old code. Now, I would use collections, native themed buttons and the anchor property :)
  17. badukist

    API for scroll bars

    Ok, if I will have some time in the near future, I'll check that windows API stuff. If not, I will try with the Flat scroll bar ActiveX. PS: I've designed a control that looks like Outlook list bar Maybe is something you can use too It has download id 9888 on UT. I plan to update it to work...
  18. badukist

    API for scroll bars

    Hi It is the left bar with common tasks in Windows Explorer with expandable/colapsable groups of options
  19. badukist

    API for scroll bars

    Hi Mike My intention is a class that behave in a similar way as the explorer bar from XP. I've seen one in Visual Extend framework, but is form based. This is easy :). I want one based on container, that can be on the form or toolbars as well. But I want to look nice, with themed scroll bar if...
  20. badukist

    API for scroll bars

    I don't agree on this, at least after seeing Common Controls library from Alex R. Grigorjev. Seems that is possible to create native windows controls on any form/toolbar, without the need for ActiveX. And now, we can bind native windows events to VFP, so we can intercept when and how user...

Part and Inventory Search

Back
Top