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 bkrike 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: *

  • Users: ArchonSoft
  • Content: Threads
  • Order by date
  1. ArchonSoft

    using recordset

    I used them before but it was a longtime ago.. in my code I import outlook data that i'd like to put in my table "mail" using recordset to navigate from one record to another. here is the code: Private Sub btnImportMail_Click() 'variables Dim strFrom As String Dim strTo As String...
  2. ArchonSoft

    vba in outlook xp

    I'd like to generate some report using excel, this report should include the from, to, and cc fields, it should also include any attachment name. In brief, i want to know who send what to whom.
  3. ArchonSoft

    Access XP

    Every time I tried to create form using either design or wizard I've got: "Active X component can't create object". How to solve that, I have the latest service pack and updates possible.
  4. ArchonSoft

    internet logon

    Is it possible to allow users to log on to the server using the internet?
  5. ArchonSoft

    write access to floppy and cd writer

    How to disable write access to floppy and cd writer?
  6. ArchonSoft

    average battery life

    what is the average battery life of UPS?
  7. ArchonSoft

    web server

    How to setup a web server? does someone know a valuable link about that? Should I wait until windows 2003 server?
  8. ArchonSoft

    external logon

    How to allow people to log on the server from outside, and what those people need to do to log. The server is nt server 4.0. Thank'S
  9. ArchonSoft

    active X component can't create object

    Here is my code: Private Sub btnFermer_Click() On Error GoTo Err_btnFermer_Click 'variables Dim rstWrite As DAO.Recordset Dim msg As Integer Dim dbsInOut As Database 'show confirmation message msg = MsgBox("Votre statut a été mis à jour...
  10. ArchonSoft

    windows xp pro server?

    Does windows xp pro can be use as a server?
  11. ArchonSoft

    accessing my server

    How to access windows nt4.0 server from outside or over the internet?
  12. ArchonSoft

    read only attribute

    I am trying to save a ms word file and it always tell me that the file is read only. But I have look at the read only attribute and the box is unchecked, so what's going on? How to solve that?
  13. ArchonSoft

    recycle bin

    when we delete files on server they are not going to recycle bin (unless they are deleted directly on the server machine) is it possible to change this or to remedy in some other way to prevent data loss. Thank's
  14. ArchonSoft

    xcopy

    I use xcopy command to copy a data disk to another one: here is the script I use: xcopy g: h: /c /q /s /e /k /r /h if errorlevel 0 goto success :success echo Files were backup successfully! goto exit :exit For some reasons the backup does'nt execute completely, some files are missing...
  15. ArchonSoft

    writing to a table using VBA

    I tried to write into a table using the VBA code. Here is the way I tried (where "historique" is the table I try to write to): 'variables declare Dim rstWrite As Recordset Dim dbsInOut As Database 'References to current database >>>>Set rstWrite =...

Part and Inventory Search

Back
Top