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 strongm 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. Gigatech

    calling a C++ DLL in Delphi

    Hi, I use Delphi 7. I have the following declaration of a C++ DLL Function: UFS_STATUS UFS_API UFS_Extract( HUFScanner hScanner, unsigned char* pTemplate, int* pnTemplateSize, int* pnEnrollQuality ); I declared in Delphi as: function UFS_Extract(hScanner : Longint; var pTemplate :PByteArray...
  2. Gigatech

    import Type Library

    Hi, I use Delphi 7. I have a tlb file with some wrapped dlls. When I import this type library, the xxx_TLB.pas is generated but it doesn´t have any function or procedure declared. The visual component wasn´t generated neither. The autor says I have to use directly the dlls but he doesn´t have...
  3. Gigatech

    WMTimeChange

    I thought that, but I unchecked this option
  4. Gigatech

    WMTimeChange

    Hi, I use the following code to detect if the system date/time changes: ************************************************************ type TForm1 = class(TForm) private procedure WMTimeChange(var Msg: TMessage) ; message WM_TIMECHANGE; end; var Form1: TForm1; implementation...
  5. Gigatech

    Set focus to my application

    Hi, I have my application minimized on the tray bar. When the user presses a combination of keys the application maximizes. I want the window to appear on the top of the desktop, over any other application running (for example Explorer, Word, etc). Before I maximize the application I wrote...
  6. Gigatech

    CREATE TABLE - SQL

    I solved the problem. I use COUNTER type. Thanks
  7. Gigatech

    CREATE TABLE - SQL

    Hi, I´m trying to create a table on runtime. I use Access 2000 with ADO. I use the sql command: create table mytable ( id INTEGER, name VARCHAR(50)) , and it works fine, but how can I define an autoincremental field ? thanks
  8. Gigatech

    how to set hotkey? - delphi

    try this. Hope it helps ! unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TForm1 = class(TForm) procedure FormCreate(Sender: TObject); procedure FormDestroy(Sender: TObject); private { Private...
  9. Gigatech

    Update a MDB file

    Thanks zevw. I have autoincremental fields, does the "Insert into ... select * ..." preserve the original values or when the records are inserted they obtain new values for the autoincremental fields? Best regards.
  10. Gigatech

    Update a MDB file

    Hi, I have a MDB installed on my client computer. I added fields and made other structural changes on my original MDB. What is the best way to apply those changes to my client MDB without loss data?
  11. Gigatech

    Any alternative to TDecisonCube?

    go to www.torry.net (DB-Aware -> Other -> Olap )
  12. Gigatech

    Delphi and a password protected access database

    I use the following connection string and it works fine: procedure TfmData.DataModuleCreate(Sender: TObject); const ConnStr = 'Provider=Microsoft.Jet.OLEDB.4.0;Data Source=%s;Persist Security Info=False;Jet OLEDB:Database Password=MyPassword'; begin ADOConnection1.Close...
  13. Gigatech

    send mail using MAPI

    do you know how to disable this feature in Outlook? Thanks
  14. Gigatech

    send mail using MAPI

    I use D7 and MS-Outlook 2003. I send mails using the MAPIMAIL unit (as described in FAQs). It works fine, but before I send the mail, Outlook ask me for a confirmation (it tells that another program is trying to send an email and it may be a virus ... bla, bla, bla). How can I skip this...
  15. Gigatech

    Add a filter to my report

    Hi, I use D7. I have two tables: customers and departments. I want to make a "customers by department" report, but I want to choose the department before I generate the report. I want to add a ComboBox dialog that shows: All Departaments Department 1 Department 2 ... (Notice the first item...
  16. Gigatech

    Updating my client database

    It´s a good idea, but, what is the best way to copy data from the original to the empty? I´ve thinking to do something like that (using a query): insert into empty_table select * from original_table What happen with AutoIncremental Fields?, does it change or it conserves its original values...
  17. Gigatech

    Updating my client database

    Basically, I want to compare the structure of two Access Databases and "reconcile" them. If I made changes like add fields, rename them or change the type of a field, I want those changes apply to the second database Thanks.
  18. Gigatech

    Updating my client database

    Hi, I use D7 with MS-Access I installed my application and database in my client computer. After that, I made structural changes in my database (add fields, create other indexes, rename fields, etc). I want to update my client application with those changes. What is the best way to apply the...
  19. Gigatech

    OnChangeSystemDate ?

    I use D7. I need to handle the Change System Date or Time event. For example, when the user changes the system date (or time) through the Control Panel or command window (DOS), I need to evaluate if I want the user does that. If I don´t, I need to forbid the user proced with the change. is...
  20. Gigatech

    ApplyUpdates with ADO+Access ?

    Hi, I use D7. I use ADOConnection to connect to my Access 2003 Database. The problem is when I work with other applications that use my database (or the same application in a workstation in my LAN), the main application doesn´t "see" the changes I did until I closet it and open it again. I...

Part and Inventory Search

Back
Top