Recent content by tacieslik

  1. tacieslik

    Sales Quotation form

    No, but thanks, I'll have a look
  2. tacieslik

    Sales Quotation form

    I want to create a form that will firstly display my client details (selected from one form and then automatically entered into my main form. This will create a new record. In the main form there will also be a subform. This will be related with the main forms data (one - many respectively)...
  3. tacieslik

    Problem with SetFocus code

    Thanks for your replies. So Rich, is this correct: Private Sub btnSortByMonthAZ_Click() Forms!frmSales!sfrmSales.SetFocus fldMonth.SetFocus DoCmd.RunCommand acCmdSortAscending End Sub I'm sure I've used this code in the past, but I can't find a project with it being used. Is it...
  4. tacieslik

    Problem with SetFocus code

    Sorry 'fldMonth' is a bad name for my control, but it is the control, if you see what I mean Thanks for the reply
  5. tacieslik

    Problem with SetFocus code

    Keep getting a runtime error 2465 - Can't find the field . . . This is my code: Private Sub btnSortByMonthAZ_Click() Forms![frmSales]![sfrmSales].Form!fldMonth.SetFocus DoCmd.RunCommand acCmdSortAscending End Sub I'm trying to set the focus of a field within a sub form so that...
  6. tacieslik

    Currency Format

    Thanks Rich, works a treat
  7. tacieslik

    Currency Format

    Actually, I've got it putting a £ sign in simply by doing this: ="Total Unpaid for" & [fldMonth] & " " & "£" & Sum([fldProfit]) The problem is the decimal places?
  8. tacieslik

    Currency Format

    Thanks for your reply but the first thing I tried was to adjust the property for the data format and the decimal places in the Properties dialog?
  9. tacieslik

    Currency Format

    How can i make the following result display the a pound (£) symbol and to 2 decimal places: ="Total Unpaid for" & [fldMonth] & " " & Sum([fldProfit]) This textbox currently displays in my report as " Total Unpaid for July 191.123 " (without quotes!)
  10. tacieslik

    Create a Package using Developer VB Add-In

    I'll explain myself a little better. I understand how to create an MDE because that's what I always use for the end application. What I'm trying to do however is use the 'Pacakge & Deploy' Add-In that comes with the developer edition of office 2000. To create a package, you have to open the...
  11. tacieslik

    Create a Package using Developer VB Add-In

    How do you package an MDE database?
  12. tacieslik

    References are greyed out?

    I've designed an Access 2000 application which works fine on my system but on another system running windows 2000 and Access 2002, I get reference errors. When looking in the VB window at Tools, References - they are greyed out? Could this be a user login problem or an incompatibility between...
  13. tacieslik

    What if table does not exist?

    Is there a better way?
  14. tacieslik

    What if table does not exist?

    I have the following code for taking periodic backups: Function ImportInventory() Dim strHost1Path As String strHost1Path = DLookup("fldConfigValue", "tblConfig", "[fldConfigName]='Host1Path'") DoCmd.TransferDatabase acImport, "Microsoft Access", _ strHost1Path, acTable...
  15. tacieslik

    Display a tables 'Date Modified' value

    Thanks GHudson, Thats just what I need and I'm aware of when the date will change. Kind Regards, TAC
Top Bottom