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 strongm 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
  • 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

    A few personal touches and it works great!! THANKS!
  5. ind

    displaying .pdf files in a microsoft access 2000 image control

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

    Passing Tag From MenuBar Button

    This line of code is throwing me for a loop.... frm.OnClick( Tag ) 'Add the function OnClick into your form What does this mean?????? Thanks
  7. 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?????
  8. ind

    Print report automatically

    How can print report automatically on the last date of the month???
  9. 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")...
  10. ind

    Using "&" in the caption

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

    Bolding label when control has focus!

    Tried it and it didn't work... Confused, because it makes sense. Any more suggestions????
  12. 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...
  13. 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...
  14. 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...
  15. ind

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

    Now I get: Invalid column naem 'WorkOrders'.
  16. ind

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

    This is syntax: Alter Trigger Customers_UTrigger On dbo.Customers FOR UPDATE AS IF UPDATE(Company) BEGIN UPDATE(WorkOrders) SET WorkOrders.Company=inserted.Company FROM WorkOrders, deleted, inserted WHERE deleted.WorkOrders=WorkOrders.Company END I keep geeting this error...
  17. 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
  18. 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
  19. 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!
  20. ind

    incrementing dates values using "-" or "+"

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

Part and Inventory Search

Back
Top