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 Mike Lewis 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. tonebone

    DTPicker for True DBGrid column

    You need to use one of the TDB controls named TDBDate which is very similar to the DTPicker control from Microsoft.
  2. tonebone

    IIS Application in Visual Basic

    This creates something called a web class. Which is a combination of an ASP web page and a dll file. It works well if there are not many updates. However you must re-register the dll every time you make a change. In order to do this you must stop IIS. You basically create a template .asp...
  3. tonebone

    PDF File export capability

    If you read the help files under Seagate Software/Developer/Help/Runtime.hlp you will find this info If your application will give users the ability to export reports, you must include files from the following list appropriate to the export formats provided: FILE LOCATION DESCRIPTION U2FCR.DLL...
  4. tonebone

    How to get chart from mschart control as image?

    You can use the MSChart method EditCopy to copy the image to the clipboard. Example MSChart1.EditCopy If you paste in Excel it will paste the data. If you paste special and select picture it will paste the picture. Good luck. PS The format of the picture is a windows metafile. This can be...
  5. tonebone

    DataGrid: How To Filter Records?

    What you want to do is use something called a Shaped Recordset. This subroutine will open a connection to your database using the MSDataShape provider. Public Sub OpenDatabaseConnection() 'This routines opens a global connection to the database Set db = New Connection db.CursorLocation =...
  6. tonebone

    "Auto Complete" on a combo box...

    Try this code it is not mine but I cannot remember where I got it from. It uses and API call to find the text in the window. If you set the limit to list to True the user will only be able to select entrys from the combo box. Put this in the declares section of your code: Public Const...

Part and Inventory Search

Back
Top