Search results

  1. S

    DisplayAlert in access???

    DoCmd.SetWarnings False
  2. S

    Link tbl keys...which way to go?

    Hi Forum, I'm building a db to track computer and user problems for work, where I double as a Client Support Administrator (IT Guy). I have these tables: (simplified list) tblComputers tblPeople tblCompAssignment tblProblems I'm at a loss as to how to link the 'Problems' table. This is...
  3. S

    Query result to listBox

    It's not for me, unless I use the wizard to create the listbox. Did you check the column count?
  4. S

    Query result to listBox

    Look at the format tab for your listbox and see what your column count is...change accordingly.
  5. S

    Slow moving Forms

    In the front end, try turning OFF 'name auto correct'. Go to Tools/Options and on the General tab, on the right-middle, de-select 'Track Name auto correct' and 'Perform Name auto correct'. That should help quite a bit.
  6. S

    Insert Into Table

    What are the data types for these things? ... Me.HistAutoNo & ", " & Me.Text58 & ", " & Me.HistEntBy
  7. S

    CurrentUser - Reverse The Name...

    Are you using the domain username to automatically log their name for the trouble ticket?
  8. S

    dynamically linking to images

    Why do you need an image path loaded in the image control? For dynamic images, I add an image control, select a picture, and then remove the picture...leaving an empty image control.
  9. S

    Word Template Q (Automation)

    Excellent, glad to help.
  10. S

    Word Template Q (Automation)

    You probably want to use WrdApp.Documents.Add() From the Word Help files: Add method as it applies to the Documents object. Returns a Document object that represents a new, empty document added to the collection of open documents. expression.Add(Template, NewTemplate, DocumentType, Visible)...
  11. S

    error message - 'number of query values and destination fields are not the same?'

    For starters, you've declared two destination fields (candid,skillid)...but you're only trying to put a value into 'candid'. It is looking to fill every declared destination field.
  12. S

    Map Drives

    I finally found a copy of the app I described. I laughed when I finally realized how I went about this task 2 yrs ago...it is so juvenile! It uses a 'tables' table and a 'LinkPath' table. Basically, the startup form has OnLoad code that checks to see if all the linked tables are OK (using a...
  13. S

    Map Drives

    I have handled a case just like yours. Here's what I did: I made a 'tables' table...with fields that would identify what site each entry was for, the table name, and the table path. I shipped the front end with no linked tables, and using some logic at startup, the "Where are you" form would...
  14. S

    Exporting Specific Record in a table

    You can export a query as well. Make a query that will filter the record you need.
  15. S

    Multiple queries in one report

    Get *real* creative and put it all in one query... or use subreports. If you elaborate a bit further, someone here may be able to point out a better way.
  16. S

    HTML <table>

    Just to add to that... It is better practice to resize your picture using a graphics program. Smaller file size=faster loading. Every Kb counts.
  17. S

    web page instead of form

    Is the webpage stored locally on a *web server*? I don't know of a way to have a data-enabled web page without a web server. If you do have access to a local web server, it's not rocket science to display and update records in the database.
  18. S

    Listbox dropdown

    Cool. Yes, True = -1 in Access. You did marvelously...don't tell anyone that you 'know' Access...it will never end!
  19. S

    Listbox dropdown

    What I would do with the tax is this: -Forget about the 'Taxable' yes/no field. -Store the TaxRate in the transaction table (wherever the ItemCost lives). -You can enter 0 or whatever the tax rate is in the TaxRate field. -Wherever you are pulling the sale data, just use ItemCost * TaxRate...
  20. S

    Listbox dropdown

    1. Make a query for your report. 2. Under the 'AuctionID' field in the query, in the criteria block...right click and select 'build'...in the list on the left side of the dialog, navigate to your form and select the AuctionID field from the middle. 3. In your report, select the query as your...
Back
Top Bottom