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

  1. jasonphillipstx

    vba to outlook appointment with hyperlink in body

    I use access to add appointments to outlook. I have constructed a working hyperlink to google maps for the location of the appointment. I have added Body = "<a href=" & stGoogMap & "> Google Map</a>" when I display the appointment, it just gives me text, not a hyperlink. However if I use the...
  2. jasonphillipstx

    Crosstab Question

    I have data in a table like the following fldClass fldPerson fldJob Class1 John Lights Class1 Sue Camera Class1 Jack Sound Class2 Fred Lights Class2 Amy Camera Class2 Arnold Sound Class3 Henry Lights Class3 Todd Camera Class3 Sally Sound What I wnat is something of...
  3. jasonphillipstx

    Change Position of Reading pane in Outlook 2007

    I know I can hide and show the preview (Reading Pane) pane with the following code application.ActiveExplorer.ShowPane olPreview, true but I cannot figure out how to move it to the right or bottom. anyone know?
  4. jasonphillipstx

    OpenRecordset Question

    The following line works Set rst = db.OpenRecordset("visitorreportrecipients", , dbSeeChanges) the following line gives me an error stating that I need to use the dbSeeChanges option for a table on SQL server that has an identity. Set rst = db.OpenRecordset("select * from...
  5. jasonphillipstx

    Category on Email Replies

    When I assign a category to a new email send and to someone, their reply does not have the category. Is this by design? Do user-defined fields stay or get stripped? If they stay, could I make a workaround with a VBA macro that copies the categories over to a user defined field before send...
  6. jasonphillipstx

    Outlook OnAction question

    I get an error when running the following code in outlook 2003. When I comment out the .OnAction line all works as intended. With it in, I get runtime error 438. object doesn;t support this property or method. Can someone help me with this one? Public Sub EnumButtons() Dim i As Integer Dim...
  7. jasonphillipstx

    Really basic help or direction needed

    I have a batch file that is scheduled to run each day. it opens and Access database and print out some reports. I really want to learn how to do this in a vbs file. Everything I find in searching seems much more complex than what I need. Can someone point in the write direction? Maybe a little...
  8. jasonphillipstx

    GDB, RDB database format?

    I have a database file, database.gdb, that when I look at it with a text editor has lines like the following. RDB$RELATIONS? RDB$VIEW_BLR? Ç RDB$FIELDS? RDB$DIMENSIONS I need to identify the format and hope to get an ODBC driver or some way to get it into microsoft access or excel. can...
  9. jasonphillipstx

    Resize Access Application Window, not form

    I have searched andjust cannot find the info I need. I want click a button and have access move/resize to a certian part of the screen. I tried the movesize command, but that only works for forms. Does anyone know how to do this? thanks in advance.
  10. jasonphillipstx

    Help with a TOP query

    I have 2 tables FAMILIES FamilyID, Mom, Dad CHILDREN FamilyID, FirstName, Birthday I have a query on the children table that selects children under age 11 qry_Kids_Under_11 returns the following columns FamilyID, FirstName, Birthday I want to list the families that have kids under age 11 so...
  11. jasonphillipstx

    Email rtf file as Body rather than attachment

    I have an rtf file created by using the docmd.output method and I want to send it as the body and not as an attachement. Is there a way to do this?
  12. jasonphillipstx

    Sales Query

    I have a table called tbl_sales with fields saledate, department, amount, etc I want a query that will show me results something like the following Department Sales_YTD Sales_LastYearTD Sales_MTD Sales_LastYearMTD Sales_ThisWeek Sales_Today Dept1 $100 $100...
  13. jasonphillipstx

    DNS question

    my win2k3 domain is company.local and I installed live communications server which had my add a forward dns zone company.com now, my internal machines cannot reach www.company.com nor mail.company.com, both of which are isp hosted. Is there a dns entry or route that will fix my problem?
  14. jasonphillipstx

    Windows Server 2003 and Ghost

    I am setting up an offline backup server with identical hardware as the primary. I want be able to mirror the disk to removable disk weekly and use it the offline server in case of catastrophic failure. I prefer not to spend the $800 on Symantec LiveState Server and Ghost 9.0 will not install...
  15. jasonphillipstx

    ASR Question

    Can I install a fresh copy of xp, then browse the network for my asr.bkf file and double click on it and restore it? Will this give me a complete restore hte same as using the boot floppy and setup cd?
  16. jasonphillipstx

    Map Drive, Copy and Rename Files, delete source files

    I need to write a batch or script to do something like the following. I can do it in Access, but I need a .bat or .vbs file that I can just copy over to a vpn client machine. Thanks in advance for your help. dim i dim strCustomer, strSourcePath, strDestDrive, strDestPath strCustomer = Input...
  17. jasonphillipstx

    Exit Database?

    I call a macro from and access mdb file form a batch file. The macro runs various code that emails reports to my people. I want the program to automatically exit when done and close access. However, every method I have tried from the macro and vba returns an error. Can I do this successfully? I...
  18. jasonphillipstx

    Track calendar changes?

    Is there a way to track when a users edits/moves an appointment on his calendar in ex2k?
  19. jasonphillipstx

    Limit User's access to his own calendar

    I have a few users who I want have only read/create access for their calendars and not allow editing of appointments put on by scheduling agents. I know I can do this if I make them use a public folder calendar, but can I do it with their personal mailbox calendar on ex2k?
  20. jasonphillipstx

    Give a few users permission to restart spooler service

    How can I give a few users permission to restart the spooler service. I have it restart at night and sometimes it does not start back up and I have to manually do it but I am often away.

Part and Inventory Search

Back
Top