Recent content by JUDO

  1. J

    Output to file.

    Thanks for your help, I will give it a go.
  2. J

    Output to file.

    :eek: Please can somebody help me I need the output from this code to be output to file on the C:, what addtional code is requried to do this as part of the program. Thanks for your help. Const RIGHT_DS_DELETE = &H10000 Const RIGHT_DS_READ = &H20000 Const RIGHT_DS_CHANGE = &H40000 Const...
  3. J

    Function query

    Please help, the attached code works fine in Windows XP but twhen run on a Windows 2000 pc it fails on the create object, any ideas? Function GetXmlFilename() Dim objDialog GetXmlFilename = "" Set objDialog = CreateObject("UserAccounts.CommonDialog") objDialog.Filter = "XML Files|*.xml|All...
  4. J

    Create Object problem

    Please help, the attached code works fine in Windows XP but twhen run on a Windows 2000 pc it fails on the create object, any ideas? Function GetXmlFilename() Dim objDialog GetXmlFilename = "" Set objDialog = CreateObject("UserAccounts.CommonDialog") objDialog.Filter = "XML...
  5. J

    Simple Button

    I am trying to add a button into a word document that will increase a specific text box counter by 1 each time it is clicked. Anybody got simple code or an example document please? Thanks
  6. J

    Serialise a word doument

    Please can someone help me, I am trying to create a button in an exisiting word ducument that will increase the document number by 1 each time. Nice easy one for the New Year!
  7. J

    Delete Field Code

    HELP me please. I have a field named <> as part of an output from a crosstab query. The field needs to be there in order for the report to output correctly but once the data is written to a new table I would like to then delete that field in its entirety form the new table. Can anybody help...
  8. J

    Rounding Up

    Rounding up Thanks everyone for you help I'll test it out.;) ;)
  9. J

    Rounding Up

    I have the following expression in a query. This gets the order due date takes away todays date then goes through a series of calculations to work out the period in terms of a number of months (Assuming they are all 4 weeks, wrong I know) ((((([Blanket_One]![Due Date]-Date())/7))*5)/20) My...
  10. J

    Help For Hiding Password Typing Entry Xxxxx

    Help for hiding password in input box To GHUDSON. I think you answer is very good if Iwanted to hide the shift key but how do Iuse this to hide the key strokes in a input box??????:rolleyes:
  11. J

    Help For Hiding Password Typing Entry Xxxxx

    Can anyone help to tell me what needs to be entered in this code to enable xxxxx to appear into the enter password box so people cannot view what there typing in. Private Sub New_Order_Click() Dim strInput As String Dim strMsg As String Beep strMsg = "Please enter your...
  12. J

    Disappearing Records

    Thanks for your help I will give it a go.
  13. J

    Disappearing Records

    The combo box is built of a select query which in turn references a table with no null fields. (Except the additional record add at the bottom of all tables)
  14. J

    Disappearing Records

    I have a combo box on a form, this combo box by the use of a select query shows all the relevant values in the drop down box from a table:mad. My major problem appears to be that records that are selected in the combo box by way of the slect query seem to be disappearing from the table or part...
  15. J

    Send Object Question (EASY)

    Bob. I said it was easy if you know how, excellent works a treat thanks for the help. Judo:) :)
Back
Top Bottom