Search results

  1. Smart

    monitor server performance ?

    Probably me being thick but what is WMI API and where do i find it
  2. Smart

    Is there a way to find if a word is in several Word.docs

    if you go to windows explorer and select search from the menu then select documents (word processing,spreadsheet etc) then select use advanced search options then enter yourd word in the box 'a word or phrase in the document' then select where to search in 'lookin' you will see a list of...
  3. Smart

    monitor server performance ?

    If you go to control panel then administrative tools then performance you see a graph of the server / PC's performance. How can I extract this data using code so that i can run a package every 15 mins and extract and store the data in a table. Any help would be greatly appreciated
  4. Smart

    Programmaticaly Add user to secured dbase

    Can anyone help please How do you add a user to asecured database using vb Thanks
  5. Smart

    Date and Time difference

    I have four fields Date Sent (date) Time Sent (Time) Date Recvd (date) Time Rcvd (time) I want to know how many hours have elapsed between date and time sent and date and time rcvd Any Ideas please as I am having a blonde moment
  6. Smart

    Syntax

    syntax Thanks gemma the huskey I dont have a problem with the date picker but pdx man gave me the answer to removing the apostrophe as follows & Replace(Me!Person_Responsible, "'", "''") & works like a dream thanks again for your advice
  7. Smart

    Syntax

    syntax Thanks PDX man it worked like a dream
  8. Smart

    Syntax

    Re Syntax Con.Execute ("Exec sp_Update_People_Root_Cause '" & Me!TxtbehaviourDriver & "','" _ & Me!txtRootID & "','" & Me!Person_Responsible & "','" & Me!DTPicker9 & "','" & Me!cmbLevel_1_ID & "','" _ & Me!CmbLevel_2_ID & "','" & Me!CmbCustContacts & "','" & Me!TxtResponsibletxtBox & "','" &...
  9. Smart

    Syntax

    Not sure if this question should be her but I am using a stored procedure to update a table Con.Execute ("Exec sp_Update_People_Root_Cause '" & Me!TxtbehaviourDriver & "','" _ & Me!txtRootID & "','" & Me!Person_Responsible & "','" & Me!DTPicker9 & "','" & Me!cmbLevel_1_ID & "','" _ &...
  10. Smart

    Syntax

    I am using a stored procedure to update a table Con.Execute ("Exec sp_Update_People_Root_Cause '" & Me!TxtbehaviourDriver & "','" _ & Me!txtRootID & "','" & Me!Person_Responsible & "','" & Me!DTPicker9 & "','" & Me!cmbLevel_1_ID & "','" _ & Me!CmbLevel_2_ID & "','" &...
  11. Smart

    report footer location problem

    If you create an unbound text box in the page footer (to replace the current box) Select the box and then format, conditional format Select Expression is (from the condition 1 drop down list in the field next to it type [page]=[pages] then select the paint can and selct a light colour then...
  12. Smart

    Exporting data from Access

    Yep you can import data only using the DTS wizard You can import tabvles buy creating and deleting them from the server before copying them over or you can append the data overor you can copy and replace data (the method i Prefer) see attachement
  13. Smart

    ID and Name box question

    Create a query that selects the Id and name in the criteria section under name type forms![yourform]![yourcomboboxname] In the after after update of the Id field on your form Type Dim IDname as string IDname = nz(dlookup("ID","Queryname"),"") Yournamefieldon the form = IDname
  14. Smart

    Memo 255 character limit - not printing on report

    Set the can grow option of The field on the report that is to hold the memo information to Yes (properties,format,cangrow)
  15. Smart

    report footer location problem

    in the page footer make sure you have the page number set Create a text box with the following as its data source ="Page " & [Page] & " of " & [Pages] Create another text box and set its data source to =IIf([Page]=[Pages],"Regards - Joe Blogs ","") if the page is number 2 and number of pages...
  16. Smart

    Change the Colour of a TextBox / Field depending on it's value?

    I would try the on load event of the form maybe even the on open event
  17. Smart

    Is this possible within Access 2003

    I have attached some instructions on how to create a menu Once created go to tools startup and choose your new menu from the menu bar drop down list and deselect the boxes below
  18. Smart

    Is this possible within Access 2003

    REIs this possible within Access 2003 You can do it by creating your own menu / Tool Bar have a look in the help to get you started and then post back if you have any problems
  19. Smart

    Change the Colour of a TextBox / Field depending on it's value?

    Try this in your code bit long winded but it works If YourField = ZoneNumber Then YourField.BackColor = vbRed ElseIf YourField = ZoneNumber Then YourField.BackColor = vbBlue ElseIf YourField = ZoneNumber Then YourField.BackColor = vbYellow ElseIf etc Else YourField.BackColor =...
  20. Smart

    Trapping "The DoMenuItem action was cancelled" on No to Delete Record

    Do you have error trapping in your code like this. The MsgBox Err.Number & vbCrLf & Err.Description part will give you the error number and then you can check for this error number (where the ???? are and then either resume and exit or display a msg box etc On Error GoTo Err_Record_Click...
Top Bottom