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: handlebars
  • Content: Threads
  • Order by date
  1. handlebars

    Creating mail item in Outlook - need to specify from field

    I have created a little app to fire off an email to update staff details. One issue I have found when trying to implement is that the helpdesk have two accounts each running on Exchange. I have tried playing with the mailitem object, but cannot find the propery to set (the only likely ones...
  2. handlebars

    Can a stored procedure mark/lookup if a record has been updated?

    I am trying to work out what is the best way for staff to update HR with new and updated records from an SQL based Helpdesk system. I have created a basic app for manually searching for new/updated staff and automatically creating an email to relevent department. What I am now thinking is for...
  3. handlebars

    Getting VBA to hook into an open Word Application instead of instance

    Hi there Does anyone have a code snippett to hook into an open word application rather than create a new instance - cannot find in google or advanced search on this site! Thanks Andrew
  4. handlebars

    Simple one - make Access Switchboard invisable

    I cant find how within code how to make the access switchboard (that contains objects such as tables and forms, etc) invisable. Can anyone enlighten me? Andrew
  5. handlebars

    SQL Server running Extremely Slow

    We are running SQL server with a web front end product. The system is a helpdesk management system and recently, it has slowed to a crawl when querying the database from either the web or the back end tables. In terms of data, we have around 10,000 end users, 50 analysts and currently...
  6. handlebars

    Update query will only allow me to use one table

    I am trying to perform an update query on a table from a field in a related table. However, when I go to design this query, it will only allow me to use one table. Is there any other way around this? Im sure its possible like using MS Access, but cannot work out how! Any help would be...
  7. handlebars

    Cannot get report to open with WHERE clause that references combo box

    I have used the following code: On Error GoTo Err_Command2_Click Dim stDocName As String stDocName = "OutstandingCalls" If IsNull(Me.Combo0) Then DoCmd.OpenReport stDocName, acPreview Else DoCmd.OpenReport "OutstandingCalls", View:=acViewPreview, _...
  8. handlebars

    Access 2003 adp will not show functions in Access 2000

    Is there any way to get access 2000 (sp1) to see functions, or will i have to rewrite as stored procedures? The adp opens fine, but functions are not even visible. Thanks Andrew
  9. handlebars

    Calculate Query

    I have a query that I cannot get to work that adds up line totals, then adds additional percentage charge, and subtracts a percentage discount from that total. Should my solution be a query of a query of a query (seems messy) or can anyone suggest an appropriate way of doing this. I have tried...
  10. handlebars

    Converting a number to a percentage (using convert(decimal,......

    I have the following line in sql: CAST(CONVERT(int, dbo.ResolvedInTargetCount.[Resolved In Target]) / CONVERT(int, dbo.CallsResolvedCount.[Calls Resolved Count]) AS decimal(3, 3)) AS [% Resoved in Target] but when i go to run it, i get the error message: "arithmetic overflow error converting...
  11. handlebars

    Report Grouping Sum

    I have an access report where i have a grouping that i need to have summed. How do i sum just a group (i have tried using Sum([Line Total]) but this does not just sum the group, but the whole list. Any advice would be appreciated. Andrew
  12. handlebars

    Report is not displayed, but still exists?

    I have tried exporting a report to a database and I have ended up without a visable report, although it does seem to exist (ie I cannot rename another report to that name)!. Does anyone know a workaround to this? Andrew
  13. handlebars

    Access 2002 database users cannot access db edited with 2003

    I have got an Access 2002 db and made one change earlier with A2003 and now when A2002 users try to open, db opens initial db manager, waits for a few seconds and then up comes error message along the lines of: Access has encountered an error and has to close, do you want to create backup and...
  14. handlebars

    Excel VBA tip for incrementing strings (ie A-->B-->C)

    hi there, Trying to write a basic vba procedure to loop through a spreadsheet looking for duplicates (by first name and initials). Need to increment the row number, but have defined row as an integer. Does anyone know the best way to do this (is it using chr(20), chr(21)?? Thanks in...
  15. handlebars

    Passing date parameters from Access form to underlying views

    I have a view made up of 6 underlying views that all need to accept the same date parameters from an Access Form. What I was thinking was to have one table that holds date values and is updated each time the form is closed (before running the report). These two values would then make up the...
  16. handlebars

    Macs cannot see Windows 2000 PC acting as a print server

    I have a small network with 3 macs running osx This PC runs a software RIP called Best Colorproof, which drives an Epson Pro 4000 printer. The RIP produces virtual Postscript printers which are available over the network. Presently, the Macs all see each other OK. However, the PC does not...
  17. handlebars

    Macs cannot see Windows 2000 PC acting as a print server

    I have a small network with 3 macs running osx This PC runs a software RIP called Best Colorproof, which drives an Epson Pro 4000 printer. The RIP produces virtual Postscript printers which are available over the network. Presently, the Macs all see each other OK. However, the PC does not...
  18. handlebars

    How to input parameters into views that a another view is based on?

    I am having problems working out how to write a stored procedure to take the parameters for three underlying views that make up another view. It is for a report that has calculated views that are based on date parameters. Can anyone point me in the right direction??? Any help would be...
  19. handlebars

    SQL Server and Access

    I have a fair amount of experience programming access (VBA, DAO and SQL), but have recently been given a project working with SQL server and cannot even work out how to put parameters into queries (or views). Does anyone know of any good sites with practical examples? I have found that the...
  20. handlebars

    Can anyone recommend a good book to for Access and SQL Server?

    I have a fair amount of experience programming access (VBA, DAO and SQL), but have recently been given a project working with SQL server and cannot even work out how to put parameters into queries (or views). Does anyone know of any good sites with practical examples? I have found that the...

Part and Inventory Search

Back
Top