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 SkipVought 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. wolfert

    DTS Truncating when transforming data from Access to SQL

    Have you solved this already? I'm having the same problem now. Patrick.
  2. wolfert

    Date lost when importing from Access

    Hi, I have got a serious problem (don't we all). When I import a Access2k table to SQL2k (only 57 records) some data is lost. All records are imported but one field is left empty ocassionately. The table is as followes: Table [Opmerkingen] Fields: [ISO NR] = text [Opmerking] = memo Some...
  3. wolfert

    Image List

    Incredible. So much programming for just a simple icon. I would just download the resource hacker util (see my above post) and save as. This saves a lot of API stuff. Patrick.
  4. wolfert

    Image List

    Phew. I don't know if you can rip icons of exe files with the imagelist. I do know that you can use the program resource hacker to rip icons from executibles, dll's etc. http://www.users.on.net/johnson/resourcehacker/ You can save the icon as ... and load the .ico file in the imagelist. Patrick.
  5. wolfert

    Sum of time values

    Thanks. I already figured it out. I used the Datediff function to get a difference between the values and multiplied with 24 or 60 to get days / secs.
  6. wolfert

    Sum of time values

    Hello, I am creating a query in Access 97 and I would like to summarize a time field. E.g. [Duration] = 00:04:03 I I sum this field in the query, I get all mixed up values like 0,67 in stead of 1:65:03 Any suggestions? Thanks in advance, Patrick Wolfert
  7. wolfert

    Mem. usage

    Thanks both for your help. It isn't really a problem because SQL is the only thing running on that server. So memory is available for SQL. I discovered I could not install a new virusscanner on the server because the setup ran out of mem. I looked at the task manager and discovered that sql is...
  8. wolfert

    Mem. usage

    Hello, I have a SQL server (2k) up and running (win 2k adv. server as OS). The problem is that the sqlsvr.exe's memory usage is increasing by the hour. In two weeks time, the program is using 1,6 GB of internal memory. Once I reboot the server (or restart the service), the mem. usage is just a...
  9. wolfert

    Importing dBase IV and Excel files in Access through VB

    Try this: DoCmd.TransferDatabase acImport, "dBbase IV", "D:\V Care\Project\", acTable, cmbhav, "D:\V Care\Project\bhav1.mdb", False, False Patrick. PATHTOFILE is just the path, not the file itself. Patrick.
  10. wolfert

    Importing dBase IV and Excel files in Access through VB

    Try this: DoCmd.TransferDatabase acImport, "dBbase IV", PATHTOFILE, acTable, DBFFILENAME, "D:\V Care\bhav.mdb", False, False patrick
  11. wolfert

    Importing dBase IV and Excel files in Access through VB

    What parameters have you given TransferDatabase. Please post the code. Also: Have you looked at the VBA help file. It contains an excellent example of both commands. Patrick.
  12. wolfert

    Flash and VB

    You're welcome. Patrick.
  13. wolfert

    Find duplicates

    Thanks. Works like a charm. I will set the primary key it's just that I just finished importing the table from access. patrick
  14. wolfert

    Find duplicates

    Hello, I have imported an access dbase into SQL 2k. Afterwards I have done some querying / updating etc. The problem is that somehow there are a lot of duplicate records in the table. I most have made a mistake with updating the table before. I have tried linking the table in an access dbase...
  15. wolfert

    Copy database wizard

    I did check them and both are running under their NT-account (Administrator on the server and my own username on the notebook). Patrick.
  16. wolfert

    Importing dBase IV and Excel files in Access through VB

    - TransferSpreadsheet for Excel - TransferDatabase for Dbf (Dbase) Look in the help file for some easy to use examples. Patrick.
  17. wolfert

    Copy database wizard

    Thanks again. btw: I think you've linked to the wrong FAQ. Patrick.,
  18. wolfert

    Copy database wizard

    Thanks. It worked (the stored proc). Are all security issues (user rights) also copied using this routine? Patrick.
  19. wolfert

    Winsock email question

    The remote host server must be the SMTP server. In your case, in which you don't have a LAN, you need to point it to the SMTP server of your ISP (mail server). Patrick.
  20. wolfert

    Copy database wizard

    Hello, This is the situation: I have got an SQL-2k-server running several dbases, which has to be online. I've got an notebook which I use for development and it's running MSDE 2k. The problem: I have developed a new database on my notebook which I want to transfer / copy to the sql-server. If...

Part and Inventory Search

Back
Top