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

    Microsoft Access 2007 .adp file Update and Ribbon

    Can you "customize" the new access ribbon using a .adp file? I have an existing 2000 .apd file we are using and want to update it with the 2007 version. It contains custom commandbars and shortcut menus. Is this possible? Thanks much
  2. ind

    Data Link Properties Window from Code

    how can i call the Data Link Properties Window from Code to select different SQL server databases?? Please help
  3. ind

    Who is logged into my database

    Help can I see who is logged into my database. I want to return the computer name of each person logged into the database. Thanks
  4. ind

    displaying .pdf files in a microsoft access 2000 image control

    Can this be done and if so, how??????
  5. ind

    Passing Tag From MenuBar Button

    I have created a custom menubar for an application that I will be using in the near future. I need to pass the Tag Property of the commandbar button to a form I created to print various reports. How can I accomplish this?????
  6. ind

    Print report automatically

    How can print report automatically on the last date of the month???
  7. ind

    Treeview Control

    If have created the following code the populate a treeview control: Private Sub Form_Load() Dim db As Database Dim rst As Recordset Dim rstchild As Recordset Dim objnode As Object Dim strKey As String Dim strparent As String Set db = CurrentDb Set rst = db.OpenRecordset("tblDept")...
  8. ind

    Using "&" in the caption

    how can i use ampersand in the caption without it creating a hotkey
  9. ind

    Bolding label when control has focus!

    I have the following funtion: Function Color() On Error Resume Next Dim ctl As Control Set ctl = Me.ActiveControl If ctl.BackColor = 16777215 Then ctl.BackColor = 14211021 Else ctl.BackColor = 16777215 End If End Function The event is fired on the GotFocus and...
  10. ind

    Adding records from subform to another table

    I am using an .adp... I have a two forms #1 RFQ with a subform to add RFQ details #2 Purchase Order with a subform to add PO Details I have a command button on the RFQ form to create a PO from the RFQ. I got the RFQ information to the PO, but I am have trouble with adding the RFQ details to...
  11. ind

    Convert a BeforUpdate() to .adp

    If have a procedure that searches for duplicate records... Private Sub_BeforeUpdate(Cancel as Integer) Dim rst As Recordset Set rst = CurrentDb.OpenRecordset("PurchaseOrders", dbOpenTable) rst.index = "PrimaryKey" rst.Seek "=", Me!PurchaseOrderNumber If Not...
  12. ind

    SQL server trigger question....????????

    I am very new to SQL Server and I need to create a trigger that update the (Company nvarchar) record in the WorkOrders table when the (Company nvarchar) record in the Clients table is change Please help
  13. ind

    New Guy......Simple update trigger question??????

    I am very new to SQL Server and I need to create a trigger that update the (Company nvarchar) record in the WorkOrders table when the (Company nvarchar) record in the Clients table is change Please help
  14. ind

    Which is better .mdb or .adp?

    I'm having trouble deciding whick file type to use .mdb or .adp. (.mdb is easier to work with but .adp gets better performance and processing speed.) Anyone have any suggestions? God Bless America!
  15. ind

    incrementing dates values using "-" or "+"

    How can I incrementing dates values using "-" or "+"?
  16. ind

    Equivalent to Last Func. in .adp file

    What is the equivalent function to the last function in a .mdb file for .adp
  17. ind

    Print report every 2 weeks

    Is there a way to automatically print a report to follow up on leads every (2) weeks???????
  18. ind

    Hiding the print dialog after a print command

    Is there a way to hide/disable the printing prompt after click a button command for a print action???????? I want to create my own printing prompt screen, instead of the windows default one. Thanks
  19. ind

    Implementing FAQ faq181-76 by JimConrad

    How can I implement the technique described int faq181-76. Ex. I have two textboxes one with the numeric form and the other with written form. How can I have the written form change as the numeric form does.
  20. ind

    Reconnect to ODBC database

    I am using MSDE for the connectivity of my database. I had to re-install it on the server for our network. I made backup copies of the database and installed MSDE. The .mdf and .ldf files are in the same folder location, but I can not connect to them. Please help!!!!!!!!!!!!!!!!!! 1-1/2 years...

Part and Inventory Search

Back
Top